Multiple choice technology web technology Which key word is used to pass data from Controller to View? ViewData ViewState Session 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.