Java beans have no types.

Options
- True
- False


CORRECT ANSWER : True

Discussion Board
Beans

The Java beans have no type is false as Java beans is a managed, server-side component architecture for modular construction of enterprise applications.It has three types:

1. Session Beans, which is divide into two forms:
1.1 Stateless Session beans
1.2 Stateful Session Beans

Session Bean is created by a customer and its duration is only for the signal client server session. It performs the function of calculation or database access for the client. They can be transactional as it is not recoverable and the system might crash due to this behavior.
2. Entity Beans
It performs the function on the database to find out the unrelenting data. It is recognized by a main key, it destroyes the remote reference as soon as entity bean crashes.
3. Message Driven Beans or they are also called Message Beans.
Message bean is similar to session bean, except it responds to java message service.

Rohit Sharma 08-9-2014 08:07 PM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement