Multiple choice technology programming languages Which of the following statements are true for . Select the two correct answers. The id attribute must be defined for <jsp:usebean>. The scope attribute must be defined for <jsp:usebean>. The class attribute must be defined for <jsp:usebean>. The <jsp:usebean> must include either type or class attribute or both. Reveal answer Fill a bubble to check yourself A,D Correct answer Explanation For , the id attribute is mandatory as it provides the variable name for accessing the bean. The scope attribute is optional with 'page' as default. Either type or class attribute (or both) must be present, but not both class and beanName together.