Arrange the lifecycle phases of JSP in correct order1. Page translation: -page is parsed, and a java file which is a Servlet is created. 2. Page compilation: page is compiled into a class file 3. Page loading : This class file is loaded. 4. Create an instance :- Instance of Servlet is created 5. jspInit() method is called 6. _jspService is called to handle service calls 7. _jspDestroy is called to destroy it when the Servlet is not required.
Skill/Topic: JSP Life Cycle
A) 1,2,3,4,5,6,7
B) 1,4,3,2,5,6,7
C) 3,2,1,4,5,6,7
D) 4,5,3,6,2,7,1
-
Interview Candidate
- Dec 10th, 2005
- 1
- 3878
Showing Answers 1 - 1 of 1 Answers
Related Answered Questions
Related Open Questions
Arrange the lifecycle phases of JSP in correct order1. Page translation: -page is parsed, and a java file which is a Servlet is created. 2. Page compilation: page is compiled into a class file 3. Page loading : This class file is loaded. 4. Create an instance :- Instance of Servlet is created 5. jspInit() method is called 6. _jspService is called to handle service calls 7. _jspDestroy is called to destroy it when the Servlet is not required.
A) 1,2,3,4,5,6,7
B) 1,4,3,2,5,6,7
C) 3,2,1,4,5,6,7
D) 4,5,3,6,2,7,1
Related Answered Questions
Related Open Questions