Dot Net Framework

  Home  Microsoft .Net Technologies  Dot Net Framework


“Dot Net Framework frequently Asked Questions by expert members with experience in Dot Net Framework. So get preparation for the Dot Net Framework job interview”



10 Dot Net Framework Questions And Answers

2⟩ What is namespace?

Namespace is a logical container for all types i.e

class, enum, struct, interface etc..

Namespace is used in two scenarios:

1. to overcome the naming collision

2. to group related items together

 176 views

3⟩ What is Reflection in .NET?

Reflection is the feature in .Net, which enables us to get

some information about object in runtime. That information

contains data of the class. Also it can get the names of

the methods that are inside the class and constructors of

that object.

 189 views

5⟩ What is .net framwork?

FRAMEWORK : it is a collection of all the tools and utilities required to execute the .net managed application on particular platform.

 210 views

6⟩ What is CLR? How does work CLR & wht is work of CLR?

CLR- common language runtime.. clr in .net is equivalent to jvm in java. garbage collection,sode access security, code verification, intermediate language are work sof clr..

it uses jit to compile intermediate language code to machine code.

 194 views

7⟩ Where The Inheritence is useful? How we decide the situation of inheritence?

Mostly inheritance requires in large classes where every

time searching and writing of same data is impossible. That

case requires us to define some inherited functions methods

n classes.Whenver they required they simply inherited from

inheritance class where they are already defined along with

their functionality to handling some other data pieces.

 181 views