Multiple choice technology web technology

What are the kinds of comments in JSP?

  1. <%– JSP Comment –%>

  2. <!– HTML Comment –>

  3. Both a and b

  4. None of the above

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

JSP supports both JSP-style comments &lt;%-- JSP Comment --%&gt; (which are stripped out before compilation) and standard HTML comments `` (which are sent to the client browser). Thus, both are valid types of comments in JSP development.