How do we comment a line in a jsp
-
<!-- - - >
-
<%-- --%>
-
</* */>
-
//
B
Correct answer
Explanation
JSP comments are written using the <%-- --%> syntax, which prevents the commented content from being compiled or sent to the client. The `syntax creates HTML comments, which are sent to the client, while//and/* */` are Java/JavaScript style comments.