what is MVC pattern?

Answers were Sorted based on User's Feedback



what is MVC pattern?..

Answer / suhasini suresh

Model-View-Controller (MVC) is a classic design pattern
often used by applications that need the ability to
maintain multiple views of the same data. The MVC pattern
hinges on a clean separation of objects into one of three
categories — models for maintaining data, views for
displaying all or a portion of the data, and controllers
for handling events that affect the model or view(s).

Because of this separation, multiple views and controllers
can interface with the same model. Even new types of views
and controllers that never existed before can interface
with a model without forcing a change in the model design.

Is This Answer Correct ?    8 Yes 1 No

what is MVC pattern?..

Answer / kamal

MVC (Model View Controller) pattern is very useful for Web
based e-commerce application.

Asp.Net web application

aspx, ascx, master pages are View

aspx.cs, ascx.cs, master.cs are Controller

App_Code folder contains classes and some references –
Model Component

MVC Advantages: Business logic can be easily modified
without affecting or any need to make changes in UI.

Is This Answer Correct ?    6 Yes 2 No

Post New Answer

More Dot Net Framework Interview Questions

How do you specify comments using razor syntax?

0 Answers  


What is side-by-side execution? Can two application one using private assembly and other using Shared assembly be stated as a side-by-side executables

1 Answers  


What data type should you use if you want an 8-bit value that's signed ?

1 Answers  


What is Peek method in Tempdata in ASP.Net MVC?

0 Answers  


Difference between int and int32

1 Answers  






What's the access level of the visibility type internal ?

1 Answers  


If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?

0 Answers   Cap Gemini,


What meant of assembly & global assembly cache (gac) & Meta data

1 Answers  


Is .net core faster than .net framework?

0 Answers  


What is the difference between a Struct and a Class

1 Answers   Siebel Systems,


What is display mode in mvc?

0 Answers  


What does assemblyinfo.cs file consists of ?

1 Answers   Accenture, BirlaSoft,


Categories