Identify which is not a Bean scopes in Spring Framework
-
singleton
-
prototype
-
global session
-
response
D
Correct answer
Explanation
Spring Framework has five standard bean scopes: singleton (default), prototype, request, session, and global session. 'response' is not a valid Spring bean scope. The other three options listed are all valid scopes (singleton and prototype are the most commonly used).