CSHARP Interview Questions Download PDF

1 . What is .Net Framework

.Net Framework is a platform for developing different types of applications like windows,web, window services, web services etc


2 . What is difference between java and c#

Java work on java environment and requires different IDE(like eclipse etc) and runtime. C# work on .net platform and require IDE(like visual studio)


3 . What is C#?

C# is a Object Oriented language of .Net Framework for developing different types of applications.


4 . What are the use of C#.

Using C# we can build different applications in .net framework like web applications, windows application, windows services, web services etc.


5 . What is CLR?

Common Language Runtime manages the execution of .net applications.


6 . What is MSIL?

Microsoft Intermediate Language is the code generated by the language compiler of .Net compiler which is used by CLR for execution.


7 . What is CTS?

Common Types System have common datatypes. The lanaguage compiler maps the datatypes into the common type while generating the MSIL code.


8 . What is CLS?

It is a sub set of CTS and it specifies a set of rules that needs to be adhered or satisfied by all language compilers targeting CLR. It helps in cross language inheritance and cross language debugging.


9 . What is garbage collector

Garbage collector(GC) is used for memory management of .net application. By using GC .Net does automatic cleaning of .net applications. The memory is automatically cleaned by CLR using Garbage Collector


10 . What is JIT ?

Just In Time is a component of .net framework, which is used by CLR to load the code which is required by CLR as and when executed.


Post Question Details