Consider the contents of 2 jsp files:
<!-- In File: test.jsp -->
<html>
<body>
<% String s = "Hello"; %>
//1 insert LOC here.
<%=s%>
</body></html>
<!-- In File: test2.jsp -->
<% s = s+" world"; %>
What can be inserted at //1 so that it prints "Hello world" when test.jsp is requested?
A. <%@ include file="test2.jsp"%>
B. <jsp:directive.include page="test2.jsp"/>
C. <jsp:include page="test2.jsp"/>
D. <%! include file="test2.jsp"%>
Exit (13