What are actually Model,view,Controller in MVC Pattern?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / devarathnam c,kotagudibanda(po
Hi...
MODEL:Model is nothing but storing the databse objects.
VIEW: View is nothing but userinterface
CONTROLLER: Controller is nothing but handling the requests
and sending the response.
| Is This Answer Correct ? | 5 Yes | 3 No |
What is singleton and factory pattern?
How to add CSS styles Styles to Elements with Particular Attributes?
what are the creational design patterns
What do you do to ensure that your design is carried out perfectly from your end?
What are the main types of concurrency design patterns?
How do you ensure quality of code ?
Which design pattern is mostly used in net?
write 5 best test cases like any password?password should be mixed case with atlest one number or special characters?
What is difference between function oriented design and object oriented design?
what is data access layer?
when performing a functional test on a phone calculator,if pressing on a button does not function what do i do next
Is dependency injection a design pattern?