Which two properly set the title in the scenario?

A web application allows the HTML title banner to be set using a context initialization parameter
called titlestr.
Which two properly set the title in the scenario? (Choose two)

A web application allows the HTML title banner to be set using a context initialization parameter
called titlestr.
Which two properly set the title in the scenario? (Choose two)

A.
<title> $ {titlestr} </title>

B.
<title> $ {initparam.titlestr}</title>

C.
<title> $ {param [0]. titlestr} </title>

D.
<title> $ {paramValues.titleStr} </title>

E.
<title> $ {initParam [‘titleStr’] } </title>

F.
<title> $ {servletParams.titleStr} </title>

G.
<title> $ {request.get (“titleStr”) } </title>



Leave a Reply 3

Your email address will not be published. Required fields are marked *


Hao

Hao

Answer is : B and E

Allan Santos

Allan Santos

B and E, but option B should be written as <title> ${initParam.titlestr}</title>