Multiple choice technology architecture

Which of the following object modes does the bean factory support

  1. singleton

  2. Pototype

  3. Both 1 and 2

  4. none of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The Spring Bean Factory supports two main scopes: singleton (default, one shared instance) and prototype (new instance per request). Option C correctly states that both are supported.