What is the consequence of attempting to access the following JSP page?

What is the consequence of attempting to access the following JSP page? 


<question><html>
<question><body>
<question><%!
<question> public void _jspService(HttpServletRequest request, HttpServletResponse response) {
<question> out.write("A");
<question> }
<question> %>
<question><% out.write("B"); %>
<question></body>
<question></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".




Answer: A


Learn More :