Multiple choice technology web technology

JSF View The JSF view is comprised of two pieces: the view root and JSP pages. The view root is a collection of UI components that maintain the state of the UI.The JSP page binds UI components to properties of backing beans and buttons to event handlers and action methods.The Controller uses the view ID to look up the components for the current view. If the view doesn't already exist, the JSF controller creates it. If the view already exists, the JSF controller uses it.(Ques):Where will be the view be saved?

  1. ServletContext

  2. RequestScope

  3. FacesContext

  4. ApplicationScope

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

In JavaServer Faces (JSF), the FacesContext object contains all the per-request state information for a JSF request, including the view root (UIViewRoot). The view is stored within the FacesContext for processing and rendering during the request lifecycle.