RequestDispatcher object is used
How to send data in get method
The difference between Servlets and JSP is the ……………
Which of the scripting of JSP not putting content into service method of the converted servlet
. JSP includes a mechanism for defining …………………………. or custom tags
What is the initial contact point for handling a web request in a Page-Centric architecture
Which http method send by browser that asks the server to get the page only
Which method is used to specify before any lines that uses the PrintWriter? [A] setPageType() [B] setContextType() [C] setContentType() [D] setResponseType()
What is the limit of data to be passed from HTML when doGet() method is used? [A] 4K [B] 8K [C] 2K [D] 1K
The method forward(request,response) will
Dynamic interception of requests and responses to transform the information is done by
Which of the following code encodes the specified URL for use in the sendRedirect method
Which of the following is the correct order of servlet life cycle phase methods
Which of the following code is used to get PrintWriter object in servlet? A - response.getWriter() B - request.getWriter() C - new PrintWriter() D - None of the above