0 votes
in Spring by

Which of the following is the default scope of a Spring Bean?

a) prototype

b) request

c) singleton

d) global

1 Answer

0 votes
by
c) singleton

Explanation:

The default scope of a Spring bean is "singleton", meaning only one instance is created and managed by the Spring container.
...