Multiple choice technology

Web container translates JSP to Servlet for every request of the JSP

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

JSP translation to Servlet happens ONLY ONCE - when the JSP is first accessed. The container generates the Servlet code, compiles it, and loads it. All subsequent requests reuse the same compiled Servlet instance. Translating on every request would destroy performance. This is why JSP changes require redeployment or container restart.