Multiple choice technology web technology

In an HTML Page with a rich graphical layout, which JSP Standard action can be used to import an image file into the JSP page?

  1. <jsp:image page="logo.png" />

  2. <jsp:image file="logo.png" />

  3. <jsp:include page="logo.png" />

  4. <jsp:include file="logo.png" />

  5. This cannot be done using a JSP Standard action.

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

JSP standard actions are limited to tags like , , , etc. There is no action in the JSP specification. To include images in a JSP page, you use the standard HTML tag, not a JSP action. The action is for including dynamic resources like other JSP or HTML files, not for embedding image files directly.