santosh kumar


{ City } banglore
< Country > india
* Profession * software engineer
User No # 117358
Total Questions Posted # 1
Total Answers Posted # 2

Total Answers Posted for My Questions # 1
Total Views for My Questions # 1809

Users Marked my Answers as Correct # 1
Users Marked my Answers as Wrong # 0
Questions / { santosh kumar }
Questions Answers Category Views Company eMail

What are the JSP implicit objects ?

eMids,

1 Advanced Java 1809




Answers / { santosh kumar }

Question { Wipro, 6449 }

servlet life cycle?


Answer

the life cycle of the servlet:

Servlet class is loaded.
Servlet instance is created.
init method is invoked.
service method is invoked.
destroy method is invoked.

Is This Answer Correct ?    0 Yes 0 No

Question { eMids, 1809 }

What are the JSP implicit objects ?


Answer

JSP provides 9 implicit objects by default. They are as follows:


1) out------------ JspWriter
2) request------- HttpServletRequest
3) response----- HttpServletResponse
4) config--------- ServletConfig
5) session------- HttpSession
6) application--- ServletContext
7) pageContext PageContext
8) page---------- Object
9) exception---- Throwable

Is This Answer Correct ?    1 Yes 0 No