Multiple choice technology web technology

Which of the following shows a proper use of a jsp standard action ?

  1. <jsp:forward page="view.jsp" />

  2. <jsp:forward file="view.jsp"/>

  3. <jsp:dispatch page="view.jsp"/>

  4. <jsp:dispatch file="view.jsp"/>

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The jsp:forward standard action uses the 'page' attribute to specify the target resource, not 'file'. The correct syntax is . There is no 'dispatch' standard action in JSP.