Yes
>>Model manages application data
>>View is responsible for GUI of the application
>>View and Controller have 1:1 relationship
>>Controller entertains user requests received from View
The Model-view-controller pattern sepeates the modeling of the domain.
MOdel:
A bridge between view and data of the app.
Accepts the request from view and responds accordingly.
View :
Manages the display of information.
Dependent on Model.
Controller:
Deduces the input given by devices and communicates to model/view to take proper action.
Dependent on model.
Thanks And Regards
Umar