The following is the sequence of the life cycle of the servlets1. init()2. destroy()3. service()

Skill/Topic: Servlets
A) 1,2,3
B) 1,3,2
C) 2,3,1
D) 1,3,2

Showing Answers 1 - 3 of 3 Answers

sivashankar

  • Feb 11th, 2006
 

1,3,2

in the init()method the servlet is intialized and in the service() it performs the request of the client and responses to the client.destroy() is used to clear the servlet

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions