1/15
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
What does MVC stand for?
MVC stands for Model, View, Controller.
What is the purpose of the MVC architectural pattern?
To develop user interfaces that are maintainable, reusable, and testable by separating concerns.
What is a design pattern?
A solution to a problem that occurs in software development.
List an example of a design pattern.
MVC, Proxy, Singleton, Iterator, DAO.
What is ASP.NET MVC?
A web framework from Microsoft used to develop web applications using the MVC architecture pattern.
What year was ASP.NET MVC introduced?
What does the separation of code feature in ASP.NET MVC help with?
It separates presentation logic from database-related logic.
What does loosely coupling imply in ASP.NET MVC?
Less dependency, allowing easier editing, expansion, and enhancement of the application.
What is meant by parallel development in ASP.NET MVC?
Multiple programmers can work on models and views simultaneously to speed up application development.
What is unit testing?
Testing only a certain portion of the application that has been modified.
What does TDD stand for?
Test Driven Development.
What is the responsibility of the Model in MVC?
To handle data and business logic.
What file extension is used for Razor views in ASP.NET MVC?
.cshtml.
What does a Controller do in MVC?
Handles user requests, identifies action methods, and returns the appropriate view.
When creating a controller in ASP.NET MVC, what suffix should the class name contain?
The suffix 'Controller.'
What is the default controller in an ASP.NET MVC application?
HomeController.