-
The response.sendRedirect("……..”); is the response implicit object to redirect the browser to the different resource
Skill/Topic: Programming ConstructsA) TrueB) False
-
The tag %@include file=”.........” % > helps in including the ______ file in the JSP page (Multiple choice)
Skill/Topic: Programming ConstructsA) readOnlyB) dynamicC) staticD) None of the above
-
Which codeline must be set before any of the lines that use the PrintWriter
Skill/Topic: Programming ConstructsA) setContentWriter() B) setWriter()C) setPrintType()D) setContentType()
-
-
what are pass by reference and passby value?
Pass By Reference means the passing the address itself rather than passing the value. Passby Value means passing a copy of the value to be passed.