C# Programming - .NET Framework - Discussion

Discussion Forum : .NET Framework - General Questions (Q.No. 1)
1.
Which of the following statements are TRUE about the .NET CLR?
  1. It provides a language-neutral development & execution environment.
  2. It ensures that an application would not be able to access memory that it is not authorized to access.
  3. It provides services to run "managed" applications.
  4. The resources are garbage collected.
  5. It provides services to run "unmanaged" applications.
Only 1 and 2
Only 1, 2 and 4
1, 2, 3, 4
Only 4 and 5
Only 3 and 4
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
50 comments Page 3 of 5.

Rahul said:   1 decade ago
CLR only provide compile & execute the program so option number c right because Operation 1 to 4 every action perform by .Net CLR Compiler.

Vin2 said:   1 decade ago
It provides a code which is machine independent that's why 1st option is right, it provides tight security that's why 2nd option is right, CLR runs only managed code so 3rd option is right, and it has automatic garbage collection so 4rth option is right.

Piyush said:   1 decade ago
What is the meaning of manged applications?which type of applications are said to be managed application?

Veyronash said:   1 decade ago
Managed applications are those that contains managed code that are directly executed by CLR and these codes have CLR services like type checking, safety and automatic garbage collection.

Abhishek Barbadikar said:   1 decade ago
These are four main features of CLR.

HussainBasha said:   1 decade ago
1. Cross-language integration, especially cross-language inheritance.

2. Garbage collection, which manages object lifetime so that reference counting is unnecessary.

3. Garbage collection.

Umesh said:   1 decade ago
What is native code?

Gaurav said:   1 decade ago
Native code is code that's generated after IL code, its depended to environment e.g winxp, win7 32bit, 64 bit.

Rahul said:   1 decade ago
Native code is machine language code.

Babar said:   1 decade ago
Code that is understand by Operating system, we can say machine code.


Post your comments here:

Your comments will be displayed after verification.