Home Interview Questions and Answers JSP Interview Questions and Answers For Graduates Part-5

JSP41.What is <jsp:getProperty> action?
The getProperty action is used to retrieve the value of a given property and converts it to a string, and finally inserts it into the output.

42.What is <jsp:forward> Action?
The forward action terminates the action of the current page and forwards the request to another resource such as a static page, another JSP page, or a Java Servlet.

The simple syntax of this action is as follows:

<jsp:forward page=”Relative URL” />

43.What is <jsp:plugin> Action?
The plugin action is used to insert Java components into a JSP page. It determines the type of browser and inserts the <object> or <embed> tags as needed.

If the needed plugin is not present, it downloads the plugin and then executes the Java component. The Java component can be either an Applet or a JavaBean.

44.What are the different scope values for the JSP action?
The scope attribute identifies the lifecycle of the Action element. It has four possible values: (a) page, (b)request, (c)session, and (d) application.

45.What are JSP implicit objects?
JSP Implicit Objects are the Java objects that the JSP Container makes available to developers in each page and developer can call them directly without being explicitly declared. JSP Implicit Objects are also called pre-defined variables.

46.What implicit objects are supported by JSP?
request,response,out,session,application,config,pageContext,page, Exception

47.What is a request object?
The request object is an instance of a javax.servlet.http.HttpServletRequest object. Each time a client requests a page the JSP engine creates a new object to represent that request.

The request object provides methods to get HTTP header information including form data, cookies, HTTP methods etc.

48.How can you read a request header information?
Using getHeaderNames() method of HttpServletRequest to read the HTTP header infromation. This method returns an Enumeration that contains the header information associated with the current HTTP request.

49.What is a response object?
The response object is an instance of a javax.servlet.http.HttpServletRequest object. Just as the server creates the request object, it also creates an object to represent the response to the client.

The response object also defines the interfaces that deal with creating new HTTP headers. Through this object the JSP programmer can add new cookies or date stamps, HTTP status codes etc.

50.What is the out implicit object?
The out implicit object is an instance of a javax.servlet.jsp.JspWriter object and is used to send content in a response.

 

You may also like

Leave a Comment