What are the different scope values for the ?
-
Request
-
Session
-
Application
-
Page
-
All
E
Correct answer
Explanation
The jsp:useBean standard action supports four scope values: page, request, session, and application. Page scope is default and lasts only for the current page. Request scope lasts for the duration of the HTTP request. Session scope persists across multiple requests from the same user. Application scope is shared across all users and sessions. Since all four are valid options, 'All' is correct.