Multiple choice java

Which of the following statement is true ?

  1. Stateless session beans doesn’t preserve any state across method calls

  2. Stateful session beans can be accesses by multiple users at the same time

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

Stateless session beans do not maintain any conversational state; every method call is independent, and the container can reuse instances for different clients. Stateful session beans, conversely, are dedicated to a single client for the duration of a session and cannot be accessed by multiple users simultaneously.