Multiple choice technology embedded technologies

When to use stateless session bean?

  1. Beans need to hold information

  2. retrieve data

  3. connect the client

  4. No data for a specific client

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

Stateless session beans are used when business operations don't require maintaining client-specific data between method calls. They're more efficient as they can be pooled and shared across clients. Option D correctly describes this scenario. Options A and B suggest scenarios where state might be needed (better for stateful beans). Option C is irrelevant.