Multiple choice technology programming languages

Which jsp implicit object is synchronized?

  1. session

  2. page

  3. application

  4. None of the above

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

The page implicit object is synchronized because it is a reference to the current servlet instance (this). In JSP, the page object represents the servlet itself, and the servlet instance is typically synchronized by the container to handle concurrent requests safely.