You need to sign in to do that
Don't have an account?

What is MVC
What is MVC??
I know it as MODEL(objects) VIEW(visualforce) CONTROLLER(apex).
Why we will call as MVC, and if some one asks what is MVC what definition i can tell.
What is the use of MVC architecture??
It's a code design pattern that seperates your code into the parts you listed yourself. The use is a better structure of your code, which makes it easier to change and maintain it. With little impact, you should for instance be able to replace the entire view, without changes to the model or controller logic.
This is a well established pattern, and there are 1000 articles, blogs, papers, books,video's about it. http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller (chek out the references for more info)
All Answers
See this links it is useful to u
http://shivasoft.in/blog/salesforce/explain-the-mvc-design-pattern-of-salesforce-com-interview-question/
http://success.salesforce.com/questionDetail?qId=a1X30000000HflwEAC
It's a code design pattern that seperates your code into the parts you listed yourself. The use is a better structure of your code, which makes it easier to change and maintain it. With little impact, you should for instance be able to replace the entire view, without changes to the model or controller logic.
This is a well established pattern, and there are 1000 articles, blogs, papers, books,video's about it. http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller (chek out the references for more info)
see: https://www.tsanj.org/probiotic-t50-review/
Regard (https://packagespoint.com)
Model (https://www.pakainfo.com/laravel-6-eloquent-orm-mvc-tutorial/) − The lowest level of the pattern which is responsible for maintaining data.
View (https://www.pakainfo.com/mvc-in-laravel/) − This is responsible for displaying all or a portion of the data to the user.
Controller (https://www.pakainfo.com/php-oop-crud-mvc-framework-tutorial/) − Software Code that controls the interactions between the Model and View.
MVC is popular as it isolates the application logic from the user interface layer and supports separation of concerns. Here the Controller receives all requests for the application and then works with the Model to prepare any data needed by the View. The View then uses the data prepared by the Controller to generate a final presentable response. The MVC abstraction can be graphically represented as follows.
The Model-View-Controller (MVC) is an architectural pattern that separates an application into three main logical components: the model, the view, and the controller. Each of these components are built to handle specific development aspects of an application.
Also Know You Learn More: MVC Example