(Choose 1 answer)
What is the result of attempting to access the following JSP page?
<html>
<body>
<%! public String methodA() {
return methodB();
}
%>
<%! public String methodB() { return "JAD Final Test";
}
%>
<h2><%= methodA() %></h2>
</body>
</html>
A. "JAD Final Test" is output to the resulting web page.
B. A translation error occurs.
C. A runtime error occurs.
D. The web page is blank.
2: 48