Oracle 1z0-895 Exam Practice Questions (P. 1)
- Full Access (90 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #1
A developer needs to deliver a large-scale enterprise application that connects developer chooses an EJB 3.1-compliant application server, which three are true about the EJB business component tier? (Choose three.)
- ALoad-balancing is NOT a guarantee for all EJB 3.1 containers.
- BClustering is guaranteed to be supported by the EJB 3.1 container.
- CThread pooling can be optimized by the Bean Provider programmatically.
- DBean Providers are NOT required to write code for transaction demarcation.
- ESupport for server fail-over is guaranteed for an EJB 3.1-compliant application server.
- FEJB 3.1 compliant components are guaranteed to work within any Java EE 6 application server
Correct Answer:
ADF
The EJB tier hosts the business logic of a J2EE application and provides system-level services to the business components problems include state maintenance, transaction management, and availability to local and remote clients.
ADF
The EJB tier hosts the business logic of a J2EE application and provides system-level services to the business components problems include state maintenance, transaction management, and availability to local and remote clients.
send
light_mode
delete
Question #2
A developer examines a list of potential enterprise applications and selects the most appropriate technologies to use for each application.
For which two applications is EJB an appropriate solution? (Choose two.)
For which two applications is EJB an appropriate solution? (Choose two.)
- ATo render a GUI for mobile clients.
- BAs a container for web-tier components including JSP.
- CAs a Web service endpoint accessed by non-Java clients.
- DTo receive and respond to HTTP Post requests directly from a web browser.
- EAs an online shopping cart which can persist across multiple sessions with a single client.
Correct Answer:
CE
CE
send
light_mode
delete
Question #3
Which two statements are true? (Choose two.)
- ATypically, remotely accessible objects should be coarse-grained.
- BIf a client accesses an enterprise bean locally such access must be mediated by the EJB container.
- CA given enterprise bean's transaction information is immutable because it is deployed across various containers.
- DIf a container provides services NOT required by the EJB specification, then that container is NOT considered to be an EJB container.
- EAn enterprise bean's transaction Information can be accessed by external tools only if the information is contained in an XML deployment descriptor.
Correct Answer:
AB
Enterprise JavaBeans 3.1, Final Release: 3.2.3 Choosing Between a Local or Remote Client View Remote calls are potentially expensive. They involve network latency, overhead of the client and server software stacks, argument copying, etc. Remote calls are typically programmed in a coarse-grained manner with few interactions between the client and bean.
21.3 Container Providers Responsibility
This section defines the containers responsibilities for providing the runtime environment to the enterprise bean instances. The requirements described here are considered to be the minimal requirements; a container may choose to provide additional functionality that is not required by the EJB specification.
AB
Enterprise JavaBeans 3.1, Final Release: 3.2.3 Choosing Between a Local or Remote Client View Remote calls are potentially expensive. They involve network latency, overhead of the client and server software stacks, argument copying, etc. Remote calls are typically programmed in a coarse-grained manner with few interactions between the client and bean.
21.3 Container Providers Responsibility
This section defines the containers responsibilities for providing the runtime environment to the enterprise bean instances. The requirements described here are considered to be the minimal requirements; a container may choose to provide additional functionality that is not required by the EJB specification.
send
light_mode
delete
Question #4
Assume you would like to receive notification from the container as a stateless session bean transitions to and from the ready state.
Which of the following life cycle back annotations would you use? (Choose one.)
Which of the following life cycle back annotations would you use? (Choose one.)
- A@PostConstruct, @PostDestroy
- B@PostConstruct, @PreDestroy
- C@PreConstruct, @PostDestroy
- D@PostConstruct, @PostDestroy, @Remove
- E@PostConstruct, @PreDestroy, @Remove
Correct Answer:
B
The Lifecycle of a Stateless Session Bean
The EJB container typically creates and maintains a pool of stateless session beans, beginning the stateless session beans lifecycle. The container performs any dependency injection and then invokes the method annotated @PostConstruct, if it exists. The bean is now ready to have its business methods invoked by a client.
At the end of the lifecycle, the EJB container calls the method annotated @PreDestroy, if it exists. The beans instance is then ready for garbage collection.
Lifecycle of a Stateless Session Bean:

Note: An enterprise bean goes through various stages during its lifetime, or lifecycle. Each type of enterprise bean (stateful session, stateless session, singleton session, or message-driven) has a different lifecycle.
Reference: http://docs.oracle.com/javaee/6/tutorial/doc/giplj.html
B
The Lifecycle of a Stateless Session Bean
The EJB container typically creates and maintains a pool of stateless session beans, beginning the stateless session beans lifecycle. The container performs any dependency injection and then invokes the method annotated @PostConstruct, if it exists. The bean is now ready to have its business methods invoked by a client.
At the end of the lifecycle, the EJB container calls the method annotated @PreDestroy, if it exists. The beans instance is then ready for garbage collection.
Lifecycle of a Stateless Session Bean:

Note: An enterprise bean goes through various stages during its lifetime, or lifecycle. Each type of enterprise bean (stateful session, stateless session, singleton session, or message-driven) has a different lifecycle.
Reference: http://docs.oracle.com/javaee/6/tutorial/doc/giplj.html
send
light_mode
delete
Question #5
Which API must an EJB 3.1 container make available to enterprise beans at runtime?
- AThe JXTA 1.1 API
- BThe MIDP 2.0 API
- CThe Java SE 6 JNDI API
- DThe Java SE 5 JDBC API
Correct Answer:
C
C
send
light_mode
delete
All Pages