Answer Posted / abhi2810
MVC is a pattern for the architecture of a software
application. It separates an application into the following
three components:
* models, for handling data and business logic
* controllers, for handling the user interface and
application logic
* views, for handling graphical user interface objects
and presentation logic
This separation results in user requests being processed as
follows:
1. The browser, on the client, sends a request for a page
to the controller on the server.
2. The controller retrieves the data it needs from the
model in order to respond to the request.
3. The controller renders the page and sends it to the view.
4. The view sends the page back to the client for the
browser to display.
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
Mention all the naming conventions in ruby on rails.
Can you list out what can rails migration do?
How can you run rails without creating databases?
What is active record in rails?
Explain the importance of yield statement in rails.
what is the log that has to seen to check for an error in ruby rails?
What is rails scaffolding?
How can you protect filter methods in rails?
What is the directory structure of rails?
who developed rails?
What is the use of $ in ruby?
What is the main difference between procs and blocks?
What is the architecture of Model views and controllers
Explain me what are the limits of ruby on rails?
what is the defined operator?