Multiple choice technology web technology

The response.sendRedirect("……..”); is the response implicit object to redirect the browser to the different resource

  1. True

  2. False

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

The response.sendRedirect() method is indeed used to redirect the browser to a different resource. This sends an HTTP 302 status code to the client, causing the browser to make a new request to the specified URL. This is a client-side redirect, unlike jsp:forward which is server-side.