Consider two different JSP pages. Page A contains this code: <!-- <% out.print("Hello, World"); %> --> Page B contains this code: <%-- out.print("Hello, World"); --%> Which of the following statements are true?
<html>
<head><title>A Comment Test</title></head>
<body>
<h2>A Test of Comments</h2>
<!-- This comment will not be visible in the page source -->
</body>
</html>