Dotnet interview questions for experienced-Part2
Dotnet questions for all levels like beginners and intermediate and advanced for 3 to 4 years experience following post will be useful.
1. What is MVC? what they represents and there advantages?
MVC is a architectural pattern it will be implemented in all languages. In .NET framework this is used by ASP.NET MVC Web Application.
M-Model- represents business logic
V- View - represents User Interface which will display the model data.
C-Controller - represents the User actions this will send response based on the request sent.
Advantages:
a. Multiple View Support
b. Light weight
c. Separation of concerns
d. Easy to test
e. Faster development
Post a Comment
0 Comments