What are the kinds of comments in JSP?
-
<%– JSP Comment –%>
-
<!– HTML Comment –>
-
Both a and b
-
None of the above
C
Correct answer
Explanation
JSP supports both JSP-style comments <%-- JSP Comment --%> (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.