VB.Net Interview Questions and Answers for Freshers - 2

Question: 6

What is IL?

MSIL is the CPU –independent instruction set into which .Net framework programs are compiled.

It contains instructions for loading, storing initializing, and calling methods on objects.

Question: 7

What is CLR?

CLR also known as Common Language Run time provides a environment in which program are executed, it activate object, perform security check on them, lay them out in the memory, execute them and garbage collect them.

Question: 8

What is CTS?

The common type system is a rich type system, built into the common language runtime, which supports the types and operations found in most programming languages.

Question: 9

What is CLS?

CLS also known as Common Language Specification defines the rules which all language must support, in order to be a part of .Net framework.

The Common Language Specification is a set of constructs and constraints that serves as a guide for library writers and compiler writers.

It allows libraries to be fully usable from any language supporting the CLS, and for those languages to integrate with each other.

The Common Language Specification is a subset of the common type system.

The Common Language Specification is also important to application developers who are writing code that will be used by other developers.

Question: 10

What are the most important property and most important method of a Repeater control?

The DataSource property and DataBind () method.

Related Questions