Multiple choice technology JSP Syntax of comments <%-- comment --%> <!-- comment --> <% // comment %> <% /* comment */ %> <% /** 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.