🎴 Flashcard Mode

architecture Online Quiz - 18

Card1 / 20
Mastered0
Review0
QuestionClick to flip

A servlet instance (object) is created during the execution of JSP.

AnswerClick to flip back
A
True
💡 Explanation:

When a JSP is requested, the web container translates it into a servlet class and compiles it. The servlet is then instantiated, creating a servlet instance (object). This instance is initialized and then used to service requests. The servlet instance exists in memory to handle requests to that JSP.

Change Mode