What is output to the web page on the second access to the same instance of the following JSP?

What is output to the web page on the second access to the same instance of the following JSP?


<html>
<body>
<% int x = 0; %>
<%= x++ %>
</body>
</html> 


a. 0
b. 1
c. 2
d. 3







Answer: A


Learn More :