310-092 Exam

Sun Cert Bus Component Developer Java EE Platform5. Upgrade

  • Exam Number/Code : 310-092
  • Exam Name : Sun Cert Bus Component Developer Java EE Platform5. Upgrade
  • Questions and Answers : 150 Q&As
  • Update Time: 2011-10-24
  • Testing Engine (SoftWare Version): $ 59.00
  • PDF (Printable Version) Price: $15.00
  •  

Note: After purchase, we will send questions within 24 hours.

Free 310-092 Demo Download

Examsoon offers free demo for SCBCD 310-092 exam (Sun Cert Bus Component Developer Java EE Platform5. Upgrade). You can check out the interface, question quality and usability of our practice exams before you decide to buy it. We are the only one site can offer demo for almost all products.

Download 310-092 PDF Demo

Download 310-092 ExamTesting Engine

 

Exam 310-092 Preparation from Examsoon include:

After you purchase our product, we will offer free update in time for 90 days.
100% Pass Guaranteed at First Attempt Or Free Update
Immediate Download After Purchase
Comprehensive questions with complete details
Questions accompanied by exhibits
Verified Answers Researched by Industry Experts
Drag and Drop questions as experienced in the Examsoon
Questions updated on regular basis
our product is in multiple-choice questions (MCQs)


Passing the SUN 310-092 Exam:Passing the 310-092 exam has never been faster or easier, now with the questions and answers, without the messy 310-092 exam that are frequently incorrect. Examsoon Unlimited Access Exams are not only the cheaper way to pass without resorting to 310-092 tests, but at only $ 59.00 you get access to the exam from every certification vendor.


Our 310-092 practice exams and study questions are composed by current and active Information Technology experts, who use their experience in preparing you for your future in IT.


SUN 310-092 Search Help Feel free to use search terms below while searching the Net for 310-092 exam:

310-092 brain dump simulations
310-092 Test question
310-092 braindump work
310-092 master exams
310-092 braindump model
310-092 latest test


Commitment to Your Success:

At Examsoon we are committed to you ongoing success. Our exams are constantly being updated and compared to industry standards.


You are not about to purchase a disposable product. 310-092 exam updates are supplied free of charge. Regardless of how soon you decide to take the 310-092 examination certification, you will be able to walk into the testing room as confident as the Certification Administrator.


Skip all the worthless 310-092 tutorials and download 310-092 exam materials with questions and answers and a price too unbelievable to pass up. Act now and download it today!

http://www.Examsoon.com The safer.easier way to get SCBCD Certification.
 
 
Exam : SUN 310-092
Title : Sun Cert Bus Component Developer Java EE Platform 5, Upgrade


1. A developer wants to create a business interface for both local and remote usage. For performance reasons the remote interface should NOT be called by a client in the same JVM. Which statement is required to accomplish this, assuming there is no deployment descriptor?
A. The business methods are defined in one interface which must be annotated with both @Local and @Remote.
B. The business methods are defined twice in one interface. One method is annotated with @Local and the other is annotated with @Remote.
C. The business methods are defined in a common interface by two other interfaces which are annotated with @Local and @Remote respectively. The bean implements the super interface.
D. The business methods are defined in a common interface. It is extended by two interfaces, annotated with @Local and @Remote respectively. Both interfaces are implemented by the bean class.
Answer: D

2. Which two are true about EJB 3.0 exception classes? (Choose two.)
A. The javax.ejb.NoSuchEJBException is an application exception.
B. The javax.ejb.EJBException extends java.lang.RuntimeException.
C. The javax.ejb.EJBTransactionRequiredException is an application exception.
D. An application exception must NOT be a subclass of java.rmi.RemoteException.
E. The javax.ejb.EJBTransactionRolledbackException is an application exception.
F. Any subclass of java.lang.RuntimeException is always considered a system exception.
Answer: BD

3. A developer is creating an entity which is mapped to a table that has a primary key constraint defined on two character columns and would like to use mapping defaults as much as possible to simplify the code. Which two mapping options can be chosen? (Choose two.)
A. Use an @Id property that constructs a private field as a concatenation of two columns.
B. Use a separate class to map those two columns and use an @IdClass annotation to denote the primary key field or property in the entity.
C. Use a separate @Embeddable class to map those two columns and use an @EmbeddedId annotation to denote a single primary key field or property in the entity.
D. Use a separate @Embeddable class to map those two columns and add two fields or properties to the entity, each marked as @Id, that correspond to the fields or properties in the embeddable class.
E. Use a separate class to map those two columns. Specify that class using @IdClass annotation on the entity class. Add two fields or properties to the entity, each marked as @Id, that correspond to the fields or properties in that separate class.
Answer: CE

4. A developer maps the abstract entity class Account with concrete entity sub-classes CreditCardAccount and SavingsAccount using the single table per class hierarchy strategy. Which two statements are true? (Choose two.)
A. Instances of CreditCardAccount and SavingsAccount are stored in the same table.
B. All columns that correspond to fields declared in Account must be defined as nullable in the database.
C. The fields declared in Account are stored in a different table than the ones declared in CreditCardAccount and SavingsAccount.
D. All columns that correspond to fields declared in CreditCardAccount or SavingsAccount must be defined as nullable in the database.
Answer: AD

5. A developer writes an enterprise application and packages it into an .ear file. The application contains two persistence units defined at the .ear level with persistence unit names FooPU and BarPU. The application also contains an ejb-jar with one stateless session bean. Which code, when added to the stateless session bean class, injects an EntityManagerFactory at runtime?
A. @PersistenceUnit
private EntityManagerFactory emf;
B. @PersistenceContext
private EntityManagerFactory emf;
C. @PersistenceUnit(unitName="BarPU")
private EntityManagerFactory emf;
D. @Resource(name="BarPU", type=EntityManagerFactory.class)
private EntityManagerFactory emf;
Answer: C