INTRODUCTION TO NET
BASICS OF NET FRAMEWORK
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
CLR
|
|
RCT
|
|
RCW
|
|
GAC
|
Detailed explanation-1: -The common type system supports two general categories of types: Value types. Value types directly contain their data, and instances of value types are either allocated on the stack or allocated inline in a structure. Value types can be built-in (implemented by the runtime), user-defined, or enumerations.
Detailed explanation-2: -The common type system defines how types are declared, used, and managed in the common language runtime, and is also an important part of the runtime’s support for cross-language integration.
Detailed explanation-3: -The common type system performs the following functions: It enables cross-language integration, type safety, and high-performance code execution. It provides an object-oriented model for the implementation of many programming languages.
Detailed explanation-4: -The CTS data types are categorized as either value types or reference types, depending on how they are created in the memory. The value types are constituted of the following: Simple type, like integers, floats, doubles, char, byte, short, long, bool. Structures.
Detailed explanation-5: -Value Types: Contain the values that need to be stored directly on the stack or allocated inline in a structure. Reference Types: Store a reference to the value’s memory address and are allocated on the heap. 19-Dec-2011