This test is designed to assess a candidate's knowledge of Java EE Enterprise Application technologies, including Enterprise JavaBeans (EJB), Java Persistence API (JPA), and Java Transaction API (JTA). The test will cover topics such as the purpose and use of each technology, their differences and similarities, and how they interact with each other. The test will also include questions on best practices for developing applications using these technologies.
Example Question:
1. CalculatorBean cal = (CalculatorBean)new InitialContext().lookup(jndiName);
2. CalculatorRemote cal = (CalculatorRemote)new InitialContext().lookup(jndiName);
3. CalculatorHome cal = (CalculatorHome)new InitialContext().lookup(jndiName);
4. None of the above