- 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 EJB?
A - Simplified development of large scale enterprise level application.
Answer : D
Explaination
EJB provides all of the above mentioned benefits.
Q 2 - Which of the following is true about stateful bean?
A - EJB Container creates a separate stateful session bean to process client's each request.
B - As soon as request scope is over, statelful session bean is destroyed.
Answer : C
Explaination
EJB Container creates a separate stateful session bean to process client's each request. As soon as request scope is over, statelful session bean is destroyed.
Q 3 - Which of the following is correct about name attribute in @javax.ejb.Stateless annotation?
A - It is used to specify name of the session bean.
B - it is used to specify the JNDI name of the session bean.
Answer : A
Explaination
name attribute in @javax.ejb.Stateless annotation is used to specify name of the session bean.
Q 4 - Which of the following is correct about mappedName 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 : D
Explaination
mappedName attribute in @javax.ejb.EJB annotation is used to specify the JNDI name of the referenced bean.
Q 5 - Which of the following annotation is used to specify Local interface(s) of a session bean?
Answer : C
Explaination
@javax.ejb.Local annotation is used to specify Local interface(s) of a session bean.
Q 6 - Which of the following is correct about @PreUpdate annotation for a entity bean?
A - Method is invoked before an entity is to be updated in the 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
@PreUpdate - method is invoked before an entity is to be updated in the database.
Q 7 - Which of the following is correct about @PostLoad annotation for a entity bean?
A - Method is invoked before an entity is to be updated in the database.
B - Method is invoked when a record is fetched from database and loaded into the entity.
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 : B
Explaination
@PostLoad - is invoked when a record is fetched from database and loaded into the entity.
Q 8 - Which of the following is correct about a Consistent transaction in EJB?
B - A transaction must keep the system in consistent state.
C - Each transaction executes independent of any other transaction.
D - Transaction should survive system failure if it has been executed or committed.
Answer : B
Explaination
Consistent - A transaction must keep the system in consistent state.
Q 9 - Which of the following is correct about a MANDATORY attrribute of Container Managed Transactions in EJB?
B - Indicates that a new transaction is to be started for the business method.
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 : A
Explaination
MANDATORY - Indicates that business method will execute as part of transaction otherwise exception will be thrown.
Q 10 - What JNDI stands for?
A - Java Naming and Directory Interface
B - Joint Naming and Directory Interface
Answer : A
Explaination
JNDI stands for Java Naming and Directory Interface.