Multiple choice technology web technology

Which key word is used to pass data from Controller to View?

  1. ViewData

  2. ViewState

  3. Session

  4. All of the above

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

ViewData is a specific dictionary object used to pass data from Controller to View in MVC. While Session can also pass data, ViewData is the designated mechanism for this controller-to-view communication pattern. ViewState is a WebForms feature.