9. Write down the Program which displays the simple JSP file.
------------------------------------
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<title>Simple JSP Example</title>
</head>
<body>
<h2>Welcome to JSP!</h2>
<%
// JSP Scriptlet: writing Java code inside JSP
String name = "Student";
out.println("<p>Hello, " + name + "! This is a simple JSP page.</p>");
%>
</body>
</html>
------------------------------------------
Sample Output
Welcome to JSP!
Hello, Student! This is a simple JSP page.