Explain what are the steps for the execution of an mvc project?
Answer Posted / Abhishek Kumar Rai
The steps for executing an MVC project typically involve:n1. Request is received by the router.n2. The router determines the appropriate controller and action to handle the request.n3. The controller retrieves data from the model if needed.n4. The controller processes the data and prepares it for the view.n5. The controller then passes the processed data to the view.n6. The view renders the final output using HTML, CSS, or JavaScript, and sends it back to the user.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers