Someone explain OOP and MVC in simple and logical words | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

Someone explain OOP and MVC in simple and logical words

kindly explain OOP and MVC. what is this story.

26th Nov 2016, 10:52 AM
Farooq Ali
Farooq Ali - avatar
2 ответов
+ 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
26th Nov 2016, 11:15 AM
Burey
Burey - avatar
+ 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#,...)
26th Nov 2016, 11:06 AM
Burey
Burey - avatar