Syntax of Scriptlet Element
-
<% code %>
-
<@jsp code %>
-
<jsp: scriptlet code />
-
<%jsp code %>
A
Correct answer
Explanation
A JSP scriptlet is used to insert Java code into a JSP page and is enclosed within <% and %> delimiters. Other options like <@jsp code %> or <%jsp code %> are syntactically invalid, and `` is the XML equivalent but not styled as shown in the distractors.