📚 Practice Mode
Web Development and Software Design Fundamentals
Learn at your own pace with hints and detailed explanations
1 / 8
Multiple Choice
What is output to the web page on the second access to the same instance of the following JSP? (Choose one.) <%@ page language="java" %>
Chapter 6 Question 2
<%! int x = 0; %> <%! public void jspInit() { System.out.println(x++); } %> <%= x++ %> <% System.out.println(x); %> <% jspInit(); %>- 0
- 1
- 2
- 3
- 4
- Page does not translate.