RE: The jsp:useBean attribute is used to indicate the Serialized bean
The answer should be B) False.
Because it is just a simple java class that adheres to a relatively simple naming convention. These JavaBeans are used within JSP as a way to make Java objects available within the page and to reduce the need for scriptlets within the page.
It is different from the EJB Java Beans which are Serialized.
RE: The jsp:useBean attribute is used to indicate the Serialized bean
The Bean class which we write has to extend Serializable Interface to make that bean Serialized. The bean itself won't become Serialized automatically.