Answer:
Servlet
Explanation:
JSP stands for Java Server Pages. JSP contains server side code embedded on JSP tags. For example:
<% out.println("<H1>My Page</H1>"); %>
JSP Compiler compiles the page onto a corresponding servlet implementation which in turn services the end user request by processing the server side call and emitting out corresponding renderable content in HTML. This content is then displayed on the client side application ( e.g, web browser).