0
Someone explain OOP and MVC in simple and logical words
kindly explain OOP and MVC. what is this story.
2 Respuestas
+ 5
as for MVC
it is basically a design model which divides a software to 3 parts:
Model: this is the part that manages the data and it's logic of the software, for instance, defining a database model with its properties (which fields it have).
View: this is what the client/user see and interacts with, so views are basically html pages or any other type of browser readable file (although they can have a lot of hidden components hidden behind them such as javascripts,jquery,....).
Controller: this part communicates between the view and deliever the data into the models.
visit the wikipedia page for further information
https://en.m.wikipedia.org/wiki/Model–view–controller
+ 4
http://study.com/academy/lesson/object-oriented-programming-vs-procedural-programming.html
the site above explains pretty well the OOP.
i advise to understand the difference in procedural programming (like C language) and OOP (Java, C++, C#,...)