Multiple choice technology

JSP Syntax of comments

  1. <%-- comment --%>

  2. <!-- comment -->

  3. <% // comment %>

  4. <% /* comment */ %>

  5. <% /** comment */ %>

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

JSP comments use <%-- comment --%>. These are server-side comments that are completely removed from the generated HTML - the browser never sees them. HTML comments would be visible to users viewing page source.