A client wants to use a session bean (EJB 2.x) , what steps would be executed and in what order?
1. a client invokes a create() method of a home interface
2. EJB container activates the session bean invoking ejbActivate() method in the bean
3. the create() method returns a reference of the EJBObject associated with the session bean instance to the client
4. using the JNDI, a client locates the home interface
5. a client calls methods on session bean
6. a client calls methods on EJBObject