What is architecture of your poroject? how i c an say?

Answer Posted / kishoreg

Eariler if any one asked for architecture then used to tell
1-tier,2-tier,3-tier or N-tier architecture until Design
Patterns came into picture.But when DOT NET into picture,
architecture means which Architectural pattern you have
implemented say Service Oriented architecture,MVC[Model-
View-Controller],3-tier etc

Architectural Pattern is common to split an application
into separate layers that run on different computers:
presentation (UI), domain logic, and data access. In MVC
the presentation layer is further separated into view and
controller

Model-view-controller is both an architectural pattern and
a design pattern, depending on where it is used.

Is This Answer Correct ?    11 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do you mean by default constructor?

599


What is difference between method and function in c#?

462


What is different about switch statements in c#?

480


Define delay signing?

514


What is uint c#?

448






What is string in c# net?

482


Is unity object oriented?

482


How do I create a dbml file?

469


how to Create a datagridview control with check box column with 8rows in it, the maximum number of check boxes checked should be 3, when user checks the 4th corresponding message should be displayed and check box should be checked. User can uncheck the checked boxes Note: read-only property should not be used

2384


What is base class in c#?

526


In a site to turn off cookies for one page which method is followed?

498


Why we use get set property in c#?

464


Explain About Postback

544


What is connection pooling in ado.net?

532


In a C# class we have a SortedList member m_addinProjects we want to provide an iterator to allow the consumer of this class access to the items in the collection. Please provide an iterator method for the AnalyzeAddinsDLL class below and an example of how it would be used. namespace AnalyzeAddinsDLL { public class AllAddInProjects { private SortedList m_addinProjects; public AllAddInProjects() { m_addinProjects = new SortedList(); } } }

1803