With a ModelViewController arrangement which of the followin
With a Model-View-Controller arrangement, which of the following is usually true?
The Controller has a data member that is an instance of the Model class as well as a data member that is an instance of the View class.
The Model has a data member that is an instance of the View
The Model has a data member that is an instance of the Controller
The View has a data member that is an instance of the Controller
Solution
With a Model-View-Controller arrangement :-
The Controller has a data member that is an instance of the Model class as well as a data member that is an instance of the View class - True.
Explanation :-
The controller depends on the view and the model.

