C# Programming - .NET Framework

Exercise : .NET Framework - General Questions
  • .NET Framework - General Questions
11.
Which of the following assemblies can be stored in Global Assembly Cache?
Private Assemblies
Friend Assemblies
Shared Assemblies
Public Assemblies
Protected Assemblies
Answer: Option
Explanation:
No answer description is available. Let's discuss.

12.
Code that targets the Common Language Runtime is known as
Unmanaged
Distributed
Legacy
Managed Code
Native Code
Answer: Option
Explanation:
No answer description is available. Let's discuss.

13.
Which of the following statements is correct about the .NET Framework?
.NET Framework uses DCOM for achieving language interoperability.
.NET Framework is built on the DCOM technology.
.NET Framework uses DCOM for making transition between managed and unmanaged code.
.NET Framework uses DCOM for creating unmanaged applications.
.NET Framework uses COM+ services while creating Distributed Applications.
Answer: Option
Explanation:
No answer description is available. Let's discuss.

14.
Which of the following is the root of the .NET type hierarchy?
System.Object
System.Type
System.Base
System.Parent
System.Root
Answer: Option
Explanation:
No answer description is available. Let's discuss.

15.
Which of the following benefits do we get on running managed code under CLR?
  1. Type safety of the code running under CLR is assured.
  2. It is ensured that an application would not access the memory that it is not authorized to access.
  3. It launches separate process for every application running under it.
  4. The resources are Garbage collected.
Only 1 and 2
Only 2, 3 and 4
Only 1, 2 and 4
Only 4
All of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.