I think D is correct answer since even a stateless session bean can have overloaded ejbCreate() method
EJB specs page 87
The home interface of a stateless session bean must have one create method that takes no arguments. There can be no other create methods in the home interface. The session bean class
must define a single ejbCreate method that takes no arguments.
But what is the meaning of "instance variable state"?
The instance variable that you can deifine in your stateless session bean can hold some values. That is what instance variable state means.
Hope that helps.
Sawan
[ June 25, 2005: Message edited by: sawan parihar ]