(Choose 1 answer)
What is the consequence of attempting to access the following JSP page?
<html>
<body>
<%!
public void __jspService(HttpServletRequest request, HttpServletResponse response) { out.write("A");
%>
<% out.write("B"); %>
</body>
</html>
A. Duplicate method compilation error.
B. "A" is output to the response.
C. "B" is output to the response.
D. "A" is output to the response before "B".
{
Q: 13