Pregunta de entrevista de Moka (Indonesia)

Can you explain about MVP architecture?

Respuesta de la entrevista

Anónimo

2 sep 2019

MVP stands for Model View Presenter which is an architecture to build software. The model is the data for UI, View is the UI, and the presenter is the business logic layer of the application which connected between the view and the model. So the view cannot access model directly, only through presenter.