Which four services are guaranteed to be present in a specification compliant Java EE container?
A.
Security
B.
Persistence
C.
naming and messaging
D.
remote connectivity
E.
failover
F.
lifecycle management
G.
multithreading handling
H.
load balancing
Explanation:
http://www.slideshare.net/YogeshBindwal/introduction-to-javaee (slide 19)
ABCD
ABCD
ABDF. C is not an option “naming and messaging” doesn’t exist, it’s “naming and directory”. While F would the right option because standard JEE container have automatic lifecycle management of all the objects that are put in it (i.e. EJBs)
http://docs.oracle.com/javaee/5/tutorial/doc/bnabo.html#bnabp
Container settings customize the underlying support provided by the Java EE server, including services such as security, transaction management, Java Naming and Directory Interface (JNDI) lookups, and remote connectivity.
The container also manages nonconfigurable services such as enterprise bean and servlet life cycles, database connection resource pooling, data persistence, and access to the Java EE platform APIs
ABDF
ABDF
ABDF by previous reasons.
ABDF