InterviewSolution
Saved Bookmarks
| 1. |
Explain MVVM architecture |
|
Answer» MVVM architecture consists of three parts:
View and ViewModel are connected with data-binding (two-way data-binding in this case). Any change in the view, the viewmodel takes a note and changes the appropriate data inside the model. |
|