Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
sale

Want to Unlock All Questions for this Exam?

Full Exam Access, Discussions, No Robots Checks

Oracle 1z0-895 Exam Actual Questions

The questions for 1z0-895 were last updated on April 18, 2024.
  • Viewing page 1 out of 23 pages.
  • Viewing questions 1-4 out of 93 questions

Topic 1 - Single Topic

Question #1 Topic 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.)

  • A. Load-balancing is NOT a guarantee for all EJB 3.1 containers.
  • B. Clustering is guaranteed to be supported by the EJB 3.1 container.
  • C. Thread pooling can be optimized by the Bean Provider programmatically.
  • D. Bean Providers are NOT required to write code for transaction demarcation.
  • E. Support for server fail-over is guaranteed for an EJB 3.1-compliant application server.
  • F. EJB 3.1 compliant components are guaranteed to work within any Java EE 6 application server
Reveal Solution Hide Solution   Discussion  

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.

Question #2 Topic 1

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.)

  • A. To render a GUI for mobile clients.
  • B. As a container for web-tier components including JSP.
  • C. As a Web service endpoint accessed by non-Java clients.
  • D. To receive and respond to HTTP Post requests directly from a web browser.
  • E. As an online shopping cart which can persist across multiple sessions with a single client.
Reveal Solution Hide Solution   Discussion  

Correct Answer: CE 🗳️

Question #3 Topic 1

Which two statements are true? (Choose two.)

  • A. Typically, remotely accessible objects should be coarse-grained.
  • B. If a client accesses an enterprise bean locally such access must be mediated by the EJB container.
  • C. A given enterprise bean's transaction information is immutable because it is deployed across various containers.
  • D. If a container provides services NOT required by the EJB specification, then that container is NOT considered to be an EJB container.
  • E. An enterprise bean's transaction Information can be accessed by external tools only if the information is contained in an XML deployment descriptor.
Reveal Solution Hide Solution   Discussion  

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.

Question #4 Topic 1

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.)

  • A. @PostConstruct, @PostDestroy
  • B. @PostConstruct, @PreDestroy
  • C. @PreConstruct, @PostDestroy
  • D. @PostConstruct, @PostDestroy, @Remove
  • E. @PostConstruct, @PreDestroy, @Remove
Reveal Solution Hide Solution   Discussion  

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

Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...