Refer to the Object Interaction Diagram given in HFEJB in chapter 4. The order will be clear :
1. Client calls home.create(). The create method is called on the home object
2. EJBObject instance is created
3. SessionContext instance is created
4. Bean instance is created (Bean constructor runs)
5. setSessionContext() runs
6. ejbCreate() runs
7. EJBObject stub is returned to the client.
Expect a question on this in the exam

. You need to memorize the exact order.