Download Java EE 6 Enterprise JavaBeans Developer Certified Expert.1z0-895.Train4Sure.2017-12-19.90q.vcex

Vendor: Oracle
Exam Code: 1z0-895
Exam Name: Java EE 6 Enterprise JavaBeans Developer Certified Expert
Date: Dec 19, 2017
File Size: 3 MB

How to open VCEX files?

Files with VCEX extension can be opened by ProfExam Simulator.

Demo Questions

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.)
  1. Load-balancing is NOT a guarantee for all EJB 3.1 containers.
  2. Clustering is guaranteed to be supported by the EJB 3.1 container.
  3. Thread pooling can be optimized by the Bean Provider programmatically.
  4. Bean Providers are NOT required to write code for transaction demarcation.
  5. Support for server fail-over is guaranteed for an EJB 3.1-compliant application server.
  6. EJB 3.1 compliant components are guaranteed to work within any Java EE 6 application server
Correct answer: ADF
Explanation:
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.
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
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.)
  1. To render a GUI for mobile clients.
  2. As a container for web-tier components including JSP.
  3. As a Web service endpoint accessed by non-Java clients.
  4. To receive and respond to HTTP Post requests directly from a web browser.
  5. As an online shopping cart which can persist across multiple sessions with a single client.
Correct answer: CE
Question 3
Which two statements are true? (Choose two.)
  1. Typically, remotely accessible objects should be coarse-grained.
  2. If a client accesses an enterprise bean locally such access must be mediated by the EJB container.
  3. A given enterprise bean's transaction information is immutable because it is deployed across various containers.
  4. If a container provides services NOT required by the EJB specification, then that container is NOT considered to be an EJB container.
  5. An 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
Explanation:
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 Provider’s Responsibility This section defines the container’s 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.
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 Provider’s Responsibility 
This section defines the container’s 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
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.)
  1. @PostConstruct, @PostDestroy
  2. @PostConstruct, @PreDestroy
  3. @PreConstruct, @PostDestroy
  4. @PostConstruct, @PostDestroy, @Remove
  5. @PostConstruct, @PreDestroy, @Remove
Correct answer: B
Explanation:
The Lifecycle of a Stateless Session Bean The EJB container typically creates and maintains a pool of stateless session beans, beginning the stateless session bean’s 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 bean’s 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
The Lifecycle of a Stateless Session Bean 
The EJB container typically creates and maintains a pool of stateless session beans, beginning the stateless session bean’s 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 bean’s 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
Question 5
Which API must an EJB 3.1 container make available to enterprise beans at runtime?
  1. The JXTA 1.1 API
  2. The MIDP 2.0 API
  3. The Java SE 6 JNDI API
  4. The Java SE 5 JDBC API
Correct answer: C
Question 6
A developer wants to write a stateful session bean using the following interface as local business interface: 
1. package acme; 
2. public interface Bar { 
3. public void bar (); 
4. } 
Assuming there is not an ejb-jar.xml file, which code can be inserted into Lines 4-6 below to define the bean with the ejb name of BarBean? 
1. package acme; 
2. import javax.ejb.*; 
3. import java.io.*; 
4.  
5.  
6.  
7. }
  1. @Stateful 
    public class BarEJB implements Bar { 
    public void bar () 
  2. @Stateful (name = “Bar”) 
    public class Barbean implements Bar { 
    public void bar () 
  3. @Stateful 
    public class BarBean implements Serializable, Bar {  
    public void bar () 
  4. @Stateful (name = “bar”) 
    public class BarBean implements Serializable, Bar { 
    public void bar () throws java.rmi.RemoteException 
Correct answer: C
Question 7
A developer creates a stateful session bean that is used by many concurrent clients. The clients are written by other development team; and it is assumed that these clients might not remove the bean when ending their session. The number of concurrent sessions will be greater than the defined bean cache size. 
The developer must consider that the state of the session bean can be influenced by either passivation or timeout. 
Which three actions should the developer take to make the bean behave correctly in passivation and timeout situations? (Choose three.)
  1. Release references to resources in a @Remove annotated method.
  2. Re-establish references to resources in an @Init annotated method.
  3. Release references to resources in a @PreDestroy annotated method.
  4. Release references to resources in a @PrePassivate annotated method.
  5. Re-establish references to resources in a @PostActivate annotated method.
Correct answer: CDE
Question 8
A stateful session bean contains a number of instance variables. The types of instance variables A and B are serializable. Instance variable B is a complex type which is populated by many business calls, and can, therefore, not be refilled by the client without starting all over. A helper instance variable C is defined as having a Serializable type, and can hold all the information which is in variable B. for example, B is of type XML-DOM tree and C of Type String. 
Which two solutions, when combined, maintain the state of the session bean over a passivation and activation by the container? (Choose two.)
  1. The value of helper variable C is used to create the value of Instance variable B in the beans no-arg constructor.
  2. The value of helper variable C is used to create the value of instance variable B in a @postcreate annotated method.
  3. The value of helper variable C is used to create the value of instance variable B in a @postActivate   annotated method.
  4. Instance variable A must be made null and instance variable B must be converted to a Serializable type and assigned to another instance variable in a @preDestroy annotated method.
  5. Instance variable A must be defined transient.  Instance variable B must be converted to a Serializable type, set to null, and assigned to the instance variable C in a @PrePassivate annotated method.
Correct answer: CE
Question 9
A developer writes a stateful session bean FooBean with one remote business interface Foo. Foo defines an integer / setter method pair implemented as: 
10. private int value; 
11. public void setValue (int i) {value = i; } 
12. public int getValue () {return value; } 
A session bean ClientBean has a business method doSomething and an ejb-ref with ejb-ref-name “fooRef” that is mapped to FooBean’s Foo interface. 
11. @Resource private SessionContext SessionCtx; 
12. public void doSomething () { 
13. Foo foo1 = (Foo) sessionCtx.lookup("fooRef"); 
14. Foo foo2 = (Foo) sessionCtx.lookup("fooRef"); 
15. foo1.setvalue(1); 
Which statement is true after the code at line 15 completes?
  1. Foo1.getValue () = = 0 and foo2.getValue() = = 0
  2. Foo1.getValue () = = 0 and foo2.getValue() = = 1
  3. Foo1.getValue () = = 1 and foo2.getValue() = = 0
  4. Foo1.getValue () = = 1 and foo2.getValue() = = 1
Correct answer: C
Question 10
A developer writes a stateless session bean FooBean with one remote business interface FooRemote containing one business method foo. Method foo takes a single parameter of application-defined type MyData. 
11. public class MyData implements java.io.Serialization { 
12. int a; 
13. } 
Methods foo is implemented with the FooBean class as: 
11. public void foo (MyData data) { 
12. data.a = 2; 
13. } 
Another session bean within the same application has a reference to FooRemote in variable fooRef and calls method foo with the following code: 
11. MyData data = new MyData(); 
12. data.a = 1; 
13. fooRef.foo(data); 
14. System.out.printIn(data.a); 
What is the value of data.a when control reaches Line 14 of the client?
  1. 0
  2. 1
  3. 2
Correct answer: B
HOW TO OPEN VCE FILES

Use VCE Exam Simulator to open VCE files
Avanaset

HOW TO OPEN VCEX FILES

Use ProfExam Simulator to open VCEX files
ProfExam Screen

ProfExam
ProfExam at a 20% markdown

You have the opportunity to purchase ProfExam at a 20% reduced price

Get Now!