Which statements are BEST describe id attribute of Action?

Which statements are BEST describe id attribute of <jsp:useBean id=..... /> Action?




a. The name used to manipulate the Java object with actions <jsp:setProperty> and <jsp:getProperty>. A variable of this name is also declared for use in JSP scripting elements. The name specified here is case sensitive.
b. The scope in which the Java object is accessible—page, request, session or application. The default scope is page.
c. The fully qualified class name of the Java object.
d. The name of a bean that can be used with method instantiate of class java.beans.Beans to load a JavaBean into memory.
e. The type of the JavaBean. This can be the same type as the class attribute, a superclass of that type or an interface implemented by that type. The default value is the same as for attribute class. A ClassCastException occurs if the Java object is not of the type specified with attribute type.





Answer: A


Learn More :