.Net Framework Interview Questions

.Net Framework Interview Questions 11

When was .NET announced?
Bill Gates delivered a keynote at Forum 2000, held June 22, 2000, outlining the .NET ‘vision’. The July 2000 PDC had a number of sessions on .NET technology, and delegates were given CDs containing a pre-release version of the .NET framework/SDK and Visual Studio.NET.

.Net Framework Interview Questions 10

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

.Net Framework Interview Questions 9

How do I change the permission set for a code group?

.Net Framework Interview Questions 8

What is JIT and how is works ?
An acronym for “just-in-time,” a phrase that describes an action that is taken only when it becomes necessary, such as just-in-time
compilation or just-in-time object activation

What is portable executable (PE) ?
The file format used for executable programs and for files to be linked together to form executable programs

.Net Framework Interview Questions 7

What does assert() do?
In debug compilation, assert takes in a Boolean condition as a parameter, and shows the error dialog if the condition is  false. The program proceeds without any interruption if the condition is true.

Interview Questions on .Net Framework 6

What are the Main Features of .NET platform?

Features of .NET Platform are :-

Common Language Runtime
Explains the features and benefits of the common language runtime, a run-time environment that manages the of code and provides services that simplify the development process.

.Net Framework Interview Questions 5

How many .NET languages can a single .NET DLL contain?
One

What type of code (server or client) is found in a Code-Behind class?
Server

.Net Framework Interview Questions -4

How to set the debug mode?
Debug Mode for ASP.NET applications - To set ASP.NET appplication in debugging mode, edit the application’s web.config and assign the “debug” attribute in < compilation > section to “true” as show below:
< configuration >
  < system.web >
    < compilation defaultLanguage=”vb” debug=”true” / >
….

..
< / configuration >

.Net Framework Interview Questions 3

What is the GAC? What problem does it solve?
Each computer where the common language runtime is installed has a machine-wide code cache called the global assembly cache. The global assembly cache stores assemblies that are to be shared by several applications on the computer. This area is typically the folder under windows or winnt in the machine.

.Net Framework Interview Questions 2


How does the generational garbage collector in the
.NET CLR manage object lifetime? What is non-deterministic finalization?