VISUAL BASIC

INTRODUCTION TO NET

BASICS OF NET FRAMEWORK

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
It is a mechanism responsible for executing the code generated in the environment, using any .Net language and providing services that help in the management and execution of applications. When we talk about this mechanism, we are referring to the
A
CLR Common language Runtime
B
Class library-Library of classes
C
Intermediate language (IL)
D
Multiplataform
Explanation: 

Detailed explanation-1: -. NET CLR is a runtime environment that manages and executes the code written in any . NET programming language.

Detailed explanation-2: -Architecture of .NET Framework The Common Language Runtime (CLR) is the execution engine that handles running applications.

Detailed explanation-3: -The Common Language Runtime (CLR), the virtual machine component of Microsoft . NET Framework, manages the execution of . NET programs.

Detailed explanation-4: -Features of the common language runtime. The common language runtime manages memory, thread execution, code execution, code safety verification, compilation, and other system services.

Detailed explanation-5: -NET Framework emit an intermediate code named Common Intermediate Language (CIL), which, in turn, is compiled at run time by the common language runtime. With this feature, routines written in one language are accessible to other languages, and programmers focus on creating apps in their preferred languages.

Detailed explanation-6: -The CLR first locates the referenced assembly, and then it loads it into memory, compiles the associated IL code into platform specific instructions, performs security related checks, and finally executes the code.

There is 1 question to complete.