174k views
0 votes
. ____________is/are the JSP ImplicitObject(s).sessionapplicationconfigAll of GivenNone of Given

1 Answer

2 votes

Answer:

All of Given

Step-by-step explanation:

JSP provides a number of implicit objects which are made available by the container and can be used directly in scriptlets. These objects include:

  • session
  • application
  • config
  • out
  • request
  • response
  • pageContext
  • page
  • exception

Example usage:

<% session.setAttribute("userid","demoid"); %>

<% application.getContextPath(); %>

<% out.println(config.getServletName()); %>

User MFave
by
6.0k points