<%-- Page directive that applies to entire page. --%> <%@ page language="java" %>
<%-- Identifies bean as "worker" and tells the page where to locate the bean. --%> <jsp:useBean id="worker" class="jdc.quiz.QuizResponses" scope="request" />
<%-- Set bean properties with a wildcard. --%> <jsp:setProperty name="worker" property="*" />
<%-- Scoring --%>
<%-- Variable declaration in code scriptlet --> <% int score = 0; %>
<%-- The method getOne() was set up in the bean with the id "worker" --%> <%-- All Java code is enclosed in <% %>, leaving HTML to be easily --%> <%-- changed or updated. --%>