VB .Net Developer

  Home  Microsoft .Net Technologies  VB .Net Developer


“VB Dot Net Developer related Frequently Asked Questions by expert members with experience in VB.Net Developer. These questions and answers will help you strengthen your technical skills, prepare for the new job test and quickly revise the concepts”



56 VB .Net Developer Questions And Answers

48⟩ Explain Code Security?

.NET framework provides security features to secure code from unauthorized users. There are two types of security in .NET:

★ Role based security - Authorizes User

★ Code access security - Protects system resources from unauthorized calls

 199 views

52⟩ Explain Managed code?

Managed Code is used to run inside the CLR environment and it is called as .NET run time. All Intermediate Language (IL) are set to be Managed code.

 190 views

53⟩ Explain deep copy?

Deep copy is nothing but creating a new object and then copying the non-static fields of the current object to new object.

 170 views

55⟩ Explain CLS?

Common Language Specification is a subset of CTS and it is used to unite all languages in to one umbrella. This extends to support all the .NET language into one unit.

 188 views

56⟩ Explain CLR?

CLR is abbreviated as Common Language Runtime and it forms heart of the .NET framework. It is the responsibility of runtime to take care of the code execution of the program. CLR takes care of the following:

★ Garbage Collection

★ Code Verification

★ Code Access Security

★ IL (Intermediate Language)

 197 views