Consider the following traditional JSP tag:
<%! int i = 0; %>
Which of the following represent the complete and correct XML-based JSP tags to accomplish the
same task as the traditional JSP tag above?
A.
<declaration int i = 0;></declaration>
B.
<jsp:declaration int i = 0; />
C.
<jsp:declaration>int i = 0;</jsp:declaration>
D.
<declaration int i = 0; />