-
Which of the following statements is true for reducing the number of writes to the client from the Servlet?
Skill/Topic: ServletsA) Use StringBuffer instead of String even for concatenating a group of Strings.B) Avoid writing every small string to clientC) Instead store all the strings into a StringBuffer and after sufficient data is available, send this data to Browser.D) All of the above.
-
An HTTP Servlet handles client requests through its service() method.
Skill/Topic: ServletsA) TrueB) FalseExplanation: The service method supports standard HTTP client requests by dispatching each request to a method designed to handle that request.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
What is the difference between and ?.
Both the tag includes the information from onepage in another. The differences are as follows:: This is like a functioncall from one jsp to another jsp. It is executed ( theincluded page is executed and the generated htmlcontent is included in the content of calling jsp)each time the client page is accessed by the client.This approach is useful to for modularizing the webapplication. If the included...
-
-
-
JSP Interview Questions
Ans