Multiple choice technology programming languages

The tag %@include file=”.........” % > helps in including the ______ file in the JSP page

  1. readOnly==

  2. dynamic

  3. static==

  4. None of the above

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

The <%@ include file="..." %> directive includes a static file at translation time. The content is inserted into the JSP page when it is compiled into a Servlet, making it a static include rather than a runtime (dynamic) include.