- EJB - Home
- EJB - Overview
- EJB - Environment Setup
- EJB - Create Application
- EJB - Stateless Bean
- EJB - Stateful Bean
- EJB - Persistence
- EJB - Message Driven Beans
- EJB - Annotations
- EJB - Callbacks
- EJB - Timer Service
- EJB - Dependency Injection
- EJB - Interceptors
- EJB - Embeddable Objects
- EJB - Blobs/Clobs
- EJB - Transactions
- EJB - Security
- EJB - JNDI Bindings
- EJB - Entity Relationships
- EJB - Access Database
- EJB - Query Language
- EJB - Exception Handling
- EJB - Web Services
- EJB - Packaging Applications
EJB Online Quiz
Following quiz provides Multiple Choice Questions (MCQs) related to EJB Framework. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.
Q 1 - Which of the following is true about entity bean?
A - User data can be saved to database via entity beans.
B - User data can be retrived from the database in the entity bean.
Answer : D
Explaination
Entity beans represents persistent data storage. User data can be saved to database via entity beans and later on can be retrived from the database in the entity bean.
Q 2 - Which of the following bean is invoked by EJB container when it receives a message from queue or topic?
Answer : C
Explaination
Message driven bean is invoked by EJB container when it receives a message from queue or topic.
Q 3 - Which of the following is correct about Persistence unit in EJB persistence API?
A - It is a persistent object representing the data-store record. It is good to be serializable.
C - It describes the properties of persistence mechanism.
D - It describes the data-store related properties like connection url. user-name,password etc.
Answer : C
Explaination
Persistence unit describes the properties of persistence mechanism.
Q 4 - Which of the following is correct about beanInterface attribute in @javax.ejb.EJB annotation?
A - It is used to specify name which will be used to locate the referenced bean in environment.
B - it is used to specify the interface type of the referenced bean.
C - It is used to provide name of the referenced bean.
D - It is used to specify the JNDI name of the referenced bean.
Answer : B
Explaination
beanInterface attribute in @javax.ejb.EJB annotation is used to specify the interface type of the referenced bean.
Q 5 - Which of the following annotation is used to specify properties required for a message driven bean?
Answer : A
Explaination
@javax.ejb.ActivationConfigProperty annotation is used to specify properties required for a message driven bean.
Q 6 - Which of the following is correct about @PrePersist annotation for a entity bean?
A - Method is invoked when an entity is created in database.
B - Method is invoked after an entity is created in database.
C - Method is invoked when an entity is deleted from the database.
D - Method is invoked after an entity is deleted from the database.
Answer : A
Explaination
@PrePersist - method is invoked when an entity is created in database.
Q 7 - Which of the following is correct about Class level interceptor in EJB?
A - Such interceptor is invoked for every method of the bean.
B - Such interceptor is invoked for every bean within deployment.
C - Such interceptor is invoked for a particular method of the bean.
Answer : A
Explaination
Class level interceptor is invoked for every method of the bean.
Q 8 - Which of the following types of java classes can be mapped using @Lob annotation?
Answer : C
Explaination
Both of the above classes can be mapped using @Lob annotation.
Q 9 - Which of the following is correct about a NEVER attrribute of Container Managed Transactions in EJB?
B - Indicates if business method executes as part of transaction then an exception will be thrown.
C - Indicates that business method will execute as part of transaction.
D - Indicates that business method should not be executed as part of transaction.
Answer : B
Explaination
NEVER - Indicates if business method executes as part of transaction then an exception will be thrown.
Q 10 - Which of the following is true about Application level exception in EJB?
Answer : A
Explaination
If business rule is voilated or exception occurs while executing the business logic will be treated as application level exception.