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 performs a STATIC include - the file content is inserted into the JSP page at translation/compile time, becoming part of the generated servlet. This is different from the action which includes content dynamically at request time. Note: option text has formatting issues with '==' characters.