Font size
WorksheetsQuiz 9 - JSP_TalentNext
Total questions: 8
Worksheet time: 4mins
Predict the output: Provided uname text field with the value "Harry"
<html>
<body>
<%= "Welcome "+request.getParameter("uname") %>
</body>
</html>
Welcome Harry
Harry
500 Internal Server Error : Null Pointer Exception
JSP Translation Error: request not declared
Which of the following are Page directive attributes?
import
extends
pageEncoding
prefix
Exception implicit object is recognized by setting which of the following attribute?
errorPage=true
errorPage=false
isErrorPage=true
isErrorPage=false
Which jsp code is equivalent to the below given code:
public String getServletInfo() {
return "Happy Learning JSPs";
}
<%@ page info="Happy Learning JSPs" %>
<%@ page servlet-info="Happy Learning JSPs" %>
<%@ page information="Happy Learning JSPs" %>
<%@ page servlet-information="Happy Learning JSPs" %>
Which of the following tags are used for forwarding the request and response to another resource?
<jsp:include>
<jsp:forward>
<% @ include%>
<% @ forward%>
