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
.Net Framework Interview Questions 11
June 17th, 2008admin- admin's blog
- Login or register to post comments
- Read more
.Net Framework Interview Questions 10
June 17th, 2008adminWhat is side-by-side ? Can two application one using private assembly and other using Shared assembly be stated as a side-by-side executables?
- admin's blog
- Login or register to post comments
- Read more
.Net Framework Interview Questions 9
June 17th, 2008adminHow do I change the permission set for a code group?
- admin's blog
- Login or register to post comments
- Read more
.Net Framework Interview Questions 8
June 17th, 2008adminWhat 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
- admin's blog
- Login or register to post comments
- Read more
.Net Framework Interview Questions 7
June 17th, 2008adminWhat 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.
- admin's blog
- Login or register to post comments
- Read more
Interview Questions on .Net Framework 6
June 17th, 2008adminWhat 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.
- admin's blog
- Login or register to post comments
- Read more
.Net Framework Interview Questions 5
June 17th, 2008adminHow 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
- admin's blog
- Login or register to post comments
- Read more
.Net Framework Interview Questions -4
June 17th, 2008adminHow 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 >
- admin's blog
- Login or register to post comments
- Read more
.Net Framework Interview Questions 3
June 16th, 2008adminWhat 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.
- admin's blog
- Login or register to post comments
- Read more
.Net Framework Interview Questions 2
June 16th, 2008admin
How does the generational garbage collector in the
.NET CLR manage object lifetime? What is non-deterministic finalization?
- admin's blog
- Login or register to post comments
- Read more