Given the element from the web application deployment descriptor:
<jsp-property-group>
<url-pattern>/main/page1.jsp</url-pattern>
<scripting-invalid>true</scripting-invalid>
</jsp-property-group>
and given that /main/page1.jsp contains:
<% int i = 12; %>
<b><%= i %></b>
What is the result?
A.
<b></b>
B.
<b>12</b>
C.
The JSP fails to execute.
D.
<% int i = 12 %>
<b><%= i %></b>
Explanation: