< 1 2 3 4 5 6 7 > >>   Sort: Date

What is a XML parser
What are the standard ways of parsing XML document? XML parser sits in between the XML document and the application who want to use the XML document. Parser exposes set of well defined interfaces which can be used by the application for adding, modifying and deleting the XML document contents. Now w...
2007-10-31, 8258👍, 0💬

Can you explain duplex contracts in WCF
Can you explain duplex contracts in WCF? In duplex contracts when client initiates an operation the server service provides a reference call back Uri back to the client. So the client initiates a call using the proxy class and when server finishes its work it notifies the client using the callback c...
2007-11-04, 8154👍, 0💬

What's a HashTable
What's difference between HashTable and ArrayList ? You can access array using INDEX value of array, but how many times you know the real value of index. Hashtable provides way of accessing the index using a user identified KEY value, thus removing the INDEX problem.
2021-03-07, 8136👍, 0💬

What is COM ?
.NET INTERVIEW QUESTIONS - What is COM ? Microsoft’s COM is a technology for component software development. It is a binary standard which is language independent. DCOM is a distributed extension of COM.
2010-01-12, 8135👍, 0💬

How do we assign page specific attributes
How do we assign page specific attributes ? Page attributes are specified using the @Page directive.
2018-01-23, 8103👍, 1💬

💬 2018-01-23 parvash: love

Can you explain steps in function points
Can you explain steps in function points? Below are the steps in function points: >First Count ILF, EIF, EI, EQ, RET, DET, FTR and use the rating tables. After you have counted all the elements you will get the unadjusted function points. Put rating values 0 to 5 to all 14 GSC. Adding total of all 1...
2007-10-30, 8082👍, 0💬

If XML does not have closing tag will it work
If XML does not have closing tag will it work? No, every tag in XML which is opened should have a closing tag. For instance in the top if I remove &lt;/discount> tag that XML will not be understood by lot of application.
2007-10-31, 8071👍, 0💬

If we have two version of same assembly in GAC how do we make a
If we have two version of same assembly in GAC how do we make a choice ? OK first let’s try to understand what the interviewer is talking about. Let’s say you have made an application and its using a DLL which is present in GAC. Now for some reason you make second version of the same DLL and put it ...
2007-10-22, 8061👍, 0💬

What does address of operator do in background?
What does address of operator do in background? The AddressOf operator creates a delegate object to the BackgroundProcess method. A delegate within VB.NET is a type-safe, object-oriented function pointer. After the thread has been instantiated, you begin the execution of the code by calling the Star...
2009-03-06, 8029👍, 0💬

What is the difference between thread and process?
.NET INTERVIEW QUESTIONS - What is the difference between thread and process? A thread is a path of execution that run on CPU, a process is a collection of threads that share the same virtual memory. A process has at least one thread of execution, and a thread always run in a process context..
2010-01-05, 7999👍, 0💬

Explain simple Walk through of XmlReader
Explain simple Walk through of XmlReader ? In this section we will do a simple walkthrough of how to use the “XmlReader” class. Sample for the same is available in both languages (C# and VB.NET) which you can find in “WindowsApplicationXMLVBNET” and “WindowsApplicationCSharp” folders. Task is to l...
2007-10-31, 7995👍, 0💬

How do you hide Public .NET Classes and other public members from COM?
Managed Code and Unmanaged Code related ASP.NET - How do you hide Public .NET Classes and other public members from COM? In some cases, you might want to hide selected .NET classes from COM but keep them public for use from other .NET assemblies. The ComVisible attribute allows you to select which p...
2009-04-09, 7971👍, 0💬

How can you avoid deadlock in threading?
.NET INTERVIEW QUESTIONS - How can you avoid deadlock in threading? A good and careful planning can avoid deadlocks.There are so many ways Microsoft has provided by which you can reduce deadlocks example Monitor, Interlocked classes, Wait handles, Event raising from one thread to other thread, Threa...
2010-01-05, 7919👍, 0💬

What exactly happens when ASPX page is requested from Browser
What exactly happens when ASPX page is requested from Browser? Note: - Here the interviewer is expecting complete flow of how an ASPX page is processed with respect to IIS and ASP.NET engine. Following are the steps which occur when we request a ASPX page :- 1. The browser sends the request to the w...
2007-10-24, 7909👍, 0💬

What is AL.EXE and RESGEN.EXE
What is AL.EXE and RESGEN.EXE? In the previous question you have seen how we can use resource files to store data according to the localized languages. But when you actually go for deployment you will not like to also install the “resx” or “txt” files. It’s definitely not a good deployment practic...
2007-11-01, 7906👍, 0💬

Once I have developed the COM wrapper do I have to still register the
Once I have developed the COM wrapper do I have to still register the COM in registry? Yes.
2007-10-22, 7880👍, 0💬

Enable ASP.NET polling using “web.config” file
Enable ASP.NET polling using “web.config” file Now that all our database side is configured in order to get the SQL Cache working in the ASP.NET side we need to do some configuration in the web.config file. We need to set two attributes in the gweb.configh file:- ã Set gEnabledh attribute to...
2007-10-23, 7856👍, 0💬

What is effort variance
What is effort variance? Effort Variance = (Actual effort – Estimated Effort) / Estimated Effort.
2007-10-30, 7815👍, 0💬

What are the metrics followed in project management
What metrics will you look at in order to see the project is moving successfully? Most metric sets deal with a variation of these attributes and are chosen to help project managers gain insight into their product (size, software quality, rework), process (rework, software quality) and project (effor...
2007-10-30, 7781👍, 0💬

Can we have shared events
Can we have shared events ? Yes, you can have shared event’s note only shared methods can raise shared events.
2007-10-23, 7779👍, 0💬

How many phases are there in software project
Can you explain project life cycle ? Figure :- 12.2 Life cycle of a project There are five stages of any project initiating, planning, executing, controlling, and closeout. These are general phases and change according to domain. During Software project management interview expected answer is requir...
2007-10-30, 7697👍, 0💬

If cookies are not enabled at browser end does form Authentication work
If cookies are not enabled at browser end does form Authentication work? No, it does not work.
2007-10-24, 7692👍, 0💬

What are the different elements in Functions points
What are the different elements in Functions points? The different elements in function points are as follows: Internal Logical Files (ILF) External Interface File (EIF) Record Element Type (RET) DET (Data element types) File Type Reference (FTR) External Input (EI) External Inquiry (EQ) External Ou...
2007-10-30, 7691👍, 0💬

what is a service contract, operation contract and Data Contract - part 2
what is a service contract, operation contract and Data Contract? - part 1 In the below sample we have marked the structure productdata to be serialized. Figure 15.5:- The Service class As data contract are all about serialization you need to import System.Runtime.Serialization name space. In the ne...
2007-11-04, 7686👍, 0💬

< 1 2 3 4 5 6 7 > >>   Sort: Date