JSP Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 2416 Page Views: 

What are the various implicit objects used in JSP?



Posted By: Avi Date: 14 September 2009 05:29:09 AM
 Answer:

Implicit objects are available for the use in JSP pages without being declared. These objects are parsed by the JSP engine and inserted into the generated servlet.

Various implicit objects are listed below:
1) request
2) response
3) session
4) application
5) page
6) pageContext
7) config
8) out
9) exception


Posted By: eTechPlanet


Date: 14 September 2009 05:29:09 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image nXbCkV
Related Questions
JSP : Can we useĀ  ServletOutputStream object from a JSP page?

Can we useĀ  ServletOutputStream object from a JSP page?

No. 
Category: JSP Date: 11/3/2010 11:31:57 AM
JSP : How to refer the "this" variable within a JSP page?

How to refer the "this" variable within a JSP page?

The page implicit object page is equivalent to "this", and returns a reference to the serv....
Category: JSP Date: 11/3/2010 8:37:57 AM
JSP : How do you pass data from a servlet to a JSP?

How do you pass data from a servlet to a JSP?

By forwarding the request to the servlet ( the data must be there in the request scope) or using a s....
Category: JSP Date: 11/3/2010 5:43:57 AM
JSP : What is the difference between ServletContext and ServletConfig?

What is the difference between ServletContext and ServletConfig?

The ServletContext gives information about the container, provides information to servlets regarding....
Category: JSP Date: 11/3/2010 5:10:57 AM
JSP : What is use of parseQueryString?

What is use of parseQueryString?

It parses a query string and builds a Hashtable of key-value pairs, where the values are arrays of s....
Category: JSP Date: 11/3/2010 3:21:58 AM