.Net
What is a Managed Code?
Dec 2nd
Managed code runs inside the environment of CLR i.e. .NET runtime. In short all IL are managed code. But if you are using some third party software example VB6 or VC++ component they are unmanaged code as .NET runtime (CLR) does not have control over the source code execution of the language.
What is a CLS(Common Language Specification)?
Dec 2nd
This is a subset of the CTS which all .NET languages are expected to support. It was always a dream of Microsoft to unite all different languages in to one umbrella and CLS is one step towards that. Microsoft has defined CLS which are nothing but guidelines that language to follow so that it can communicate with other .NET languages in a seamless manner
What is a IL?
Dec 2nd
(IL)Intermediate Language is also known as MSIL (Microsoft Intermediate Language) or CIL (Common Intermediate Language). All .NET source code is compiled to IL. This IL is then converted to machine code at the point where the software is installed, or at run-time by a Just-In- Time (JIT) compiler.
What is the correct language to code ASP.NET pages with?
Dec 1st
(The only correct answer would be C#. Maybe this should be the first question.
What does the keyword “virtual” declare for a method or property?
Dec 1st
The method or property can be overridden.
What do you know about .NET assemblies?
Dec 1st
Assemblies are the smallest units of versioning and deployment in the .NET application. Assemblies are also the building blocks for programs such as Web services, Windows services, serviced components, and .NET remoting applications.
How can you work with permissions from your .NET application?
Dec 1st
You can request permission to do something and you can demand certain permissions from other apps. You can also refuse permissions so that your app is not inadvertently used to destroy some data.
Explain consistency.
Dec 1st
We must ensure that the system is always left at the correct state in case of the failure or success of a transaction.
Which two properties are on every validation control?
Dec 1st
We have two common properties for every validation controls 1. Control to Validate, 2. Error Message.
