Answer (Choose 1 answer)
<body><%!
What is the consequence of attempting to access the following JSP page?
<html>
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".
Exit 42