What are actually Model,view,Controller in MVC Pattern?
Answer Posted / vijayendra ratrey
MVC - is using for separation the business logic and
application data from the presentation data to the user.
MODLE :-Here we put all kind of business logic and methods
for data manipulation(CURD).
VIEW :- it is user interface here user can make request.
it is build by using(html, css, js, etc).
CONTROLLER :- it used for controlling and validating request
and response. it decides where to send the request whether
back to view as a response or send it ot model. Controller
make communication between model and view.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What non-visual coding tools are available for web design?
Why should we not use singleton pattern?
Give me example of observer design pattern?
What is a behavioral design pattern?
Suppose we have file(ps), dont know how many records are there. Move half of the records to 2 files. How can we do?
Quartus II software version 6.0 is available for which operating systems (OS)?
What are the 23 design patterns?
What is meant by design pattern?
Are you using singleton in your code?
What is the difference between factory and strategy design pattern?
What are the languages used in the design pattern?
How do you choose a design pattern?
What is aop design?
Explain what is good design?
Can you explain singleton pattern?