Which jsp implicit object is synchronized?
-
session
-
page
-
application
-
None of the above
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.