Multiple choice technology web technology

Bean Tag

  1. <jsp:usebeanId/>

  2. <jsp:useBean id/>

  3. <jsp:use bean/>

  4. <jsp:useBean name/>

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The JSP useBean tag uses the syntax where 'id' is the required attribute that specifies the name of the bean. The tag name useBean is case-sensitive (not usebean), and it uses the 'id' attribute (not 'name'). This is the standard JSP specification syntax for instantiating JavaBeans in JSP pages.