Multiple choice technology architecture

A JSP page can include another JSP page but not an HTML page

  1. True

  2. False

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

JSP pages can include both other JSP pages and HTML pages. The standard action can include any resource, including HTML pages, at runtime. The <%@ include %> directive can include static content like HTML files at translation time. There is no restriction that only JSP pages can be included.