- 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 session bean?
A - This type of bean stores data of a particular user for a single session.
Answer : A
Explaination
Session bean stores data of a particular user for a single session. It can be stateful or stateless. It is less resource intensive as compared to entity beans. Session bean gets destroyed as soon as user session terminates.
Q 2 - Which of the following is true about stateless bean?
Answer : C
Explaination
EJB Container normally creates a pool of few stateless bean's objects and use these objects to process client's request. Because of pool, instance variable values are not guaranteed to be same across lookups/method calls.
Q 3 - Which of the following is correct about Data Source 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 : D
Explaination
Data Source describes the data-store related properties like connection url. user-name,password etc.
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 is true about @javax.ejb.Local annotation?
A - @javax.ejb.Local annotation is used to specify Local interface(s) of a session bean.
Answer : D
Explaination
@javax.ejb.Local annotation is used to specify Local interface(s) of a session bean. This local interface states the business methods of the session bean (which can be stateless or stateful). This interface is used to expose the business methods to local clients which are running in same deployment/application as EJB.
Q 6 - Which of the following is correct about @PrePassivate annotation for a callback method?
A - Method is invoked when a bean is created for the first time.
B - Method is invoked when a bean is removed from the bean pool or is destroyed.
Answer : D
Explaination
@PrePassivate - method is invoked when a bean is put back to bean pool.
Q 7 - Which of the following is correct about Default 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 : B
Explaination
Default interceptor is invoked for every bean within deployment.
Q 8 - Which of the following is correct about a Atomic 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 : A
Explaination
Atomic - If any of work item fails, the complete unit is considered failed. Success meant all items executes successfully.
Q 9 - Which of the following is correct about a SUPPORTS 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 : C
Explaination
SUPPORTS - Indicates that business method will execute as part of transaction.
Q 10 - Which of the following is true about JNDI?
A - JNDI stands for Java Naming and Directory Interface.
B - It is a set of API and service interfaces.
C - Java based applications use JNDI for naming and directory services.
Answer : D
Explaination
JNDI stands for Java Naming and Directory Interface. It is a set of API and service interfaces. Java based applications use JNDI for naming and directory services.