Feb 15, 2012

Microsoft .NET Interview Questions And Answers - Microsoft Net

Microsoft .NET Interview Questions And Answers - Microsoft Net

INTERVIEW

What is code review?

The process of examining the source code generally through a peer, to verify it against best practices.


What is logging?

Logging is the process of persisting information about the status of an application.


What is the global assembly cache (GAC)?

GAC is a machine-wide cache of assemblies that allows .NET applications to share libraries. GAC solves some of the problems associated with dll’s (DLL Hell).


What is a stack? What is a heap? Give the differences between the two?

Stack is a place in the memory where value types are stored. Heap is a place in the memory where the reference types are stored.


What are functional and non-functional requirements?

Functional requirements defines the behavior of a system whereas non-functional requirements specify how the system should behave; in other words they specify the quality requirements and judge the behavior of a system.

E.g.

Functional – Display a chart which shows the maximum number of products sold in a region.

Non-functional – The data presented in the chart must be updated every 5 minutes.


What is instrumentation?

It is the ability to monitor an application so that information about the application’s progress, performance and status can be captured and reported.


What are mock-ups?

Mock-ups are a set of designs in the form of screens, diagrams, snapshots etc., that helps verify the design and acquire feedback about the application’s requirements and use cases, at an early stage of the design process.


What is a Form?

A form is a representation of any window displayed in your application. Form can be used to create standard, borderless, floating, modal windows.


What is a multiple-document interface(MDI)?

A user interface container that enables a user to work with more than one document at a time. E.g. Microsoft Excel.


What is a single-document interface (SDI) ?

A user interface that is created to manage graphical user interfaces and controls into single windows. E.g. Microsoft Word


What is BLOB ?

A BLOB (binary large object) is a large item such as an image or an exe represented in binary form.


What is ClickOnce?

ClickOnce is a new deployment technology that allows you to create and publish self-updating applications that can be installed and run with minimal user interaction.


What is object role modeling (ORM) ?

It is a logical model for designing and querying database models. There are various ORM tools in the market like CaseTalk, Microsoft Visio for Enterprise Architects, Infagon etc.


What is a private assembly?

A private assembly is local to the installation directory of an application and is used only by that application.


What is a shared assembly?

A shared assembly is kept in the global assembly cache (GAC) and can be used by one or more applications on a machine.


What is the difference between user and custom controls?

User controls are easier to create whereas custom controls require extra effort. User controls are used when the layout is static whereas custom controls are used in dynamic layouts. A user control cannot be added to the toolbox whereas a custom control can be. A separate copy of a user control is required in every application that uses it whereas since custom controls are stored in the GAC, only a single copy can be used by all applications.


Where do custom controls reside?

In the global assembly cache (GAC).


What is a third-party control ?

A third-party control is one that is not created by the owners of a project. They are usually used to save time and resources and reuse the functionality developed by others (third-party).


What is a binary formatter?

Binary formatter is used to serialize and deserialize an object in binary format.


What is Boxing/Unboxing?

Boxing is used to convert value types to object.

E.g. int x = 1;

object obj = x ;

Unboxing is used to convert the object back to the value type.

E.g. int y = (int)obj;

Boxing/unboxing is quiet an expensive operation.


What is a COM Callable Wrapper (CCW)?

CCW is a wrapper created by the common language runtime(CLR) that enables COM components to access .NET objects.


What is a Runtime Callable Wrapper (RCW)?

RCW is a wrapper created by the common language runtime(CLR) to enable .NET components to call COM components.


What is a digital signature?

A digital signature is an electronic signature used to verify/gurantee the identity of the individual who is sending the message.


What is garbage collection?

Garbage collection is the process of managing the allocation and release of memory in your applications. Read this article for more information.


What is globalization?

Globalization is the process of customizing applications that support multiple cultures and regions.


What is localization?

Localization is the process of customizing applications that support a given culture and regions.


What is MIME?

The definition of MIME or Multipurpose Internet Mail Extensions as stated in MSDN is “MIME is a standard that can be used to include content of various types in a single message. MIME extends the Simple Mail Transfer Protocol (SMTP) format of mail messages to include multiple content, both textual and non-textual. Parts of the message may be images, audio, or text in different character sets. The MIME standard derives from RFCs such as 2821 and 2822”. Quoted from here.

No comments:

Post a Comment

LinkWithin

Related Posts Plugin for WordPress, Blogger...