<< < 3 4 5 6 7 8 9 10 11 12 13 > >>   Sort: Date

Can we have different access modifiers on get/set methods of a property
Can we have different access modifiers on get/set methods of a property ? No we can not have different modifiers same property. The access modifier on a property applies to both its get and set accessors.
2007-10-23, 5539👍, 0💬

What are events
What are events ? As compared to delegates events works with source and listener methodology. So listeners who are interested in receiving some events they subscribe to the source. Once this subscription is done the source raises events to its entire listener when needed. One source can have multipl...
2007-10-23, 5531👍, 0💬

What is fundamental of published or precreated objects in Remoting
What is fundamental of published or precreated objects in Remoting ? In scenarios of singleton or single call the objects are created dynamically. But in situations where you want to precreate object and publish it you will use published object scenarios. Dim obj as new objRemote obj.Initvalue = 100...
2007-10-23, 5523👍, 0💬

Is XML case sensitive
Is XML case sensitive? Yes, they are case sensitive.
2007-10-31, 5519👍, 0💬

How will you do code reviews
How will you do code reviews ? The way in which code reviews are done change from person to person and also company to company. But the normally when a project is started project people define their architecture, coding standards etc in their design document. So before starting the code review you w...
2007-10-30, 5518👍, 0💬

What is ENUM
What is ENUM ? It’s used to define constants.
2007-10-23, 5518👍, 0💬

Do session use cookies
How can we make session to not to use cookies ? Left to the user, you will enjoy to find this answer.
2007-10-24, 5508👍, 0💬

Describe the various components in sequence diagrams
Describe the various components in sequence diagrams? Object lifeline: It represents the lifetime of an object creation and its destruction. If the object is created or destroyed during the time period the diagram represents, then the lifeline stops or starts at the appropriate point. An object's de...
2007-10-26, 5507👍, 0💬

Explain the different elements of a Use Case
Explain the different elements of a Use Case ? Package: - It logically groups element of a UML model. Use Case :- It represents a set of events. Actor : - Role played by an outside object. Interface :- It specifies the externally operations of a class, component, package, or other element without sp...
2007-10-26, 5498👍, 0💬

What are design patterns
What are design patterns ? Design patterns are recurring solution to recurring problems in software architecture. (A) Can you list down all patterns and their classification ? Note :- This is advanced question because anyone who asks to list down all patterns can only be crazy for what he is asking....
2007-10-24, 5497👍, 0💬

What are the major differences between services and Web services
What are the major differences between services and Web services?
2007-11-04, 5496👍, 0💬

What is the difference between Stored Procedure (SP) and User Defined Function (UDF)?
What is the difference between Stored Procedure (SP) and User Defined Function (UDF)? Following are some major differences between a stored procedure and user defined functions: UDF can be executed using the “SELECT” clause while SP’s can not be. UDF can not be used in XML FOR clause but SP’s can b...
2007-10-25, 5493👍, 0💬

What is the use of @ Register directives
What is the use of @ Register directives ? @Register directive informs the compiler of any custom server control added to the page.
2007-10-24, 5493👍, 0💬

What is an XMLReader Class
What is an XMLReader Class? It is an abstract class available from System.XML namespace. XML reader works on a read-only stream browsing from one node to other in a forward direction. It maintains only a pointer to the current node but has no idea of the previous and the next node. You can not modif...
2007-10-31, 5488👍, 0💬

What is DMAIC and DMADV
What is DMAIC and DMADV ? Six Sigma has two key methodologies DMAIC and DMADV. DMAIC is used to improve an existing business process. DMADV is used to create new product designs or process designs in such a way that it results in a more predictable, mature and defect free performance. DMAIC Basic me...
2007-10-30, 5487👍, 0💬

How can I show the entire validation error message in a message box on the client side
How can I show the entire validation error message in a message box on the client side? In validation summary set “ShowMessageBox” to true.
2007-10-24, 5484👍, 0💬

How to implement DTC in .NET
How to implement DTC in .NET ? DTC is implemented using COM+. Following are the steps to implement COM + in .NET :- ã gEnterpriseServiceh namespace has all the classes by which we can implement DTC in .NET. You have to add reference gEnterpriseServiceh namespace. omits it all together, then w...
2007-10-22, 5484👍, 0💬

What is Absolute and Sliding expiration
What is Absolute and Sliding expiration? Absolute Expiration allows you to specify the duration of the cache, starting from the time the cache is activated. The following example shows that the cache has a cache dependency specified, as well as an expiration time of one minute. Cache.Insert("announc...
2007-10-23, 5479👍, 0💬

What’s difference between Datagrid, Datalist and repeater
What’s difference between Datagrid, Datalist and repeater? WA Datagrid, Datalist and Repeater are all ASP.NET data Web controls. They have many things in common like DataSource Property, DataBind Method ItemDataBound and ItemCreated. When you assign the DataSource Property of a Datagrid to a DataSet...
2007-10-24, 5460👍, 0💬

What is GAC ?
.NET INTERVIEW QUESTIONS - What is GAC ? (What are situations when you register .NET assembly in GAC ?) GAC (Global Assembly Cache) is used where shared .NET assembly reside. GAC is used in the following situations :- * If the application has to be shared among several application. * If the assembly...
2010-03-16, 5458👍, 0💬

Explain Different elements of a collaboration diagram
Explain Different elements of a collaboration diagram ? Classifier Role :It classifies a role.br> Association Role : It shows the relation between two classifier roles.br> Multi-Object : It used to show operation related to entire set of objects rather than on a single object.br> Constraint : Condit...
2007-10-26, 5452👍, 0💬

Can we sign a satellite assembly
Can we sign a satellite assembly? Yes you can sign the satellite assembly using the /keyfile switch which takes “.snk” file as the input parameter. al /res:MyLanguage.resources /c:de /keyfile:MyLang.snk out:MyLanguages.resources.dll
2007-11-02, 5447👍, 0💬

In What scenarios will you use a DOM parser and SAX parser
In What scenarios will you use a DOM parser and SAX parser? If you do not need all the data from the XML file then SAX approach is much preferred than DOM as DOM can quiet memory intensive. In short if you need large portion of the XML document its better to have DOM. With SAX parser you have to wri...
2007-10-31, 5437👍, 0💬

What is DBCC
What is DBCC? DBCC (Database Consistency Checker Commands) is used to check logical and physical consistency of database structure.DBCC statements can fix and detect problems.They are grouped in to four categories Maintenance commands like DBCC DBREINDEX , DBCC DBREPAR etc , they are mainly used for...
2007-10-25, 5437👍, 0💬

<< < 3 4 5 6 7 8 9 10 11 12 13 > >>   Sort: Date