0 votes
in Spring by

What is the default scope of a Spring bean if no scope is specified?

a) prototype

b) request

c) session

d) singleton

1 Answer

0 votes
by
d) singleton

Explanation:

If no scope is specified for a Spring bean, its default scope will be 'singleton', meaning only one instance of the bean will be created for the entire Spring container.
...