dot Net Frame Work Solved MCQs




1.
Which of the following statements are TRUE about the .NET CLR?
It provides a language-neutral development & execution environment.
It ensures that an application would not be able to access memory that it is not authorized to access.
It provides services to run "managed" applications.
The resources are garbage collected.
It provides services to run "unmanaged" applications.
A.
Only 1 and 2
B.
Only 1, 2 and 4
C.
1, 2, 3, 4
D.
Only 4 and 5
E.
Only 3 and 4
Answer: Option C

 Solved MCQs From: http://cs-mcqs.blogspot.com.  .
2.
Which of the following are valid .NET CLR JIT performance counters?
Total memory used for JIT compilation
Average memory used for JIT compilation
Number of methods that failed to compile with the standard JIT
Percentage of processor time spent performing JIT compilation
Percentage of memory currently dedicated for JIT compilation
A.
1, 5
B.
3, 4
C.
1, 2
D.
4, 5
Answer: Option B

 Solved MCQs From: http://cs-mcqs.blogspot.com
3.
Which of the following statements is correct about Managed Code?
A.
Managed code is the code that is compiled by the JIT compilers.
B.
Managed code is the code where resources are Garbage Collected.
C.
Managed code is the code that runs on top of Windows.
D.
Managed code is the code that is written to target the services of the CLR.
E.
Managed code is the code that can run on top of Linux.
Answer: Option D

 Solved MCQs From: http://cs-mcqs.blogspot.com
4.
Which of the following utilities can be used to compile managed assemblies into processor-specific native code?
A.
gacutil
B.
ngen
C.
sn
D.
dumpbin
E.
ildasm
Answer: Option B

 Solved MCQs From: http://cs-mcqs.blogspot.com

5.
Which of the following are NOT true about .NET Framework?
It provides a consistent object-oriented programming environment whether object code is stored and executed locally, executed locally but Internet-distributed, or executed remotely.
It provides a code-execution environment that minimizes software deployment and versioning conflicts.
It provides a code-execution environment that promotes safe execution of code, including code created by an unknown or semi-trusted third party.
It provides different programming models for Windows-based applications and Web-based applications.
It provides an event driven programming model for building Windows Device Drivers.
A.
1, 2
B.
2, 4
C.
4, 5
D.
1, 2, 4
Answer: Option C

 Solved MCQs From: http://cs-mcqs.blogspot.com
6.
Which of the following components of the .NET framework provide an extensible set of classes that can be used by any .NET compliant programming language?
A.
.NET class libraries
B.
Common Language Runtime
C.
Common Language Infrastructure
D.
Component Object Model
E.
Common Type System
Answer: Option A

 Solved MCQs From: http://cs-mcqs.blogspot.com

7.
Which of the following jobs are NOT performed by Garbage Collector?
Freeing memory on the stack.
Avoiding memory leaks.
Freeing memory occupied by unreferenced objects.
Closing unclosed database collections.
Closing unclosed files.
A.
1, 2, 3
B.
3, 5
C.
1, 4, 5
D.
3, 4
Answer: Option C

 Solved MCQs From: http://cs-mcqs.blogspot.com

8.
Which of the following .NET components can be used to remove unused references from the managed heap?
A.
Common Language Infrastructure
B.
CLR
C.
Garbage Collector
D.
Class Loader
E.
CTS
Answer: Option C

 Solved MCQs From: http://cs-mcqs.blogspot.com

9.
Which of the following statements correctly define .NET Framework?
A.
It is an environment for developing, building, deploying and executing Desktop Applications, Web Applications and Web Services.
B.
It is an environment for developing, building, deploying and executing only Web Applications.
C.
It is an environment for developing, building, deploying and executing Distributed Applications.
D.
It is an environment for developing, building, deploying and executing Web Services.
E.
It is an environment for development and execution of Windows applications.
Answer: Option A

 Solved MCQs From: http://cs-mcqs.blogspot.com

10.
Which of the following constitutes the .NET Framework?
ASP.NET Applications
CLR
Framework Class Library
WinForm Applications
Windows Services
A.
1, 2
B.
2, 3
C.
3, 4
D.
2, 5
Answer: Option B

 Solved MCQs From: http://cs-mcqs.blogspot.com
11.
Which of the following assemblies can be stored in Global Assembly Cache?
A.
Private Assemblies
B.
Friend Assemblies
C.
Shared Assemblies
D.
Public Assemblies
E.
Protected Assemblies
Answer: Option C

 Solved MCQs From: http://cs-mcqs.blogspot.com

12.
Code that targets the Common Language Runtime is known as
A.
Unmanaged
B.
Distributed
C.
Legacy
D.
Managed Code
E.
Native Code
Answer: Option D

 Solved MCQs From: http://cs-mcqs.blogspot.com

13.
Which of the following statements is correct about the .NET Framework?
A.
.NET Framework uses DCOM for achieving language interoperability.
B.
.NET Framework is built on the DCOM technology.
C.
.NET Framework uses DCOM for making transition between managed and unmanaged code.
D.
.NET Framework uses DCOM for creating unmanaged applications.
E.
.NET Framework uses COM+ services while creating Distributed Applications.
Answer: Option C

 Solved MCQs From: http://cs-mcqs.blogspot.com

14.
Which of the following is the root of the .NET type hierarchy?
A.
System.Object
B.
System.Type
C.
System.Base
D.
System.Parent
E.
System.Root
Answer: Option A

 Solved MCQs From: http://cs-mcqs.blogspot.com

15.
Which of the following benefits do we get on running managed code under CLR?
Type safety of the code running under CLR is assured.
It is ensured that an application would not access the memory that it is not authorized to access.
It launches separate process for every application running under it.
The resources are Garbage collected.
A.
Only 1 and 2
B.
Only 2, 3 and 4
C.
Only 1, 2 and 4
D.
Only 4
E.
All of the above
Answer: Option E

 Solved MCQs From: http://cs-mcqs.blogspot.com

16.
Which of the following security features can .NET applications avail?
PIN Security
Code Access Security
Role Based Security
Authentication Security
Biorhythm Security
A.
1, 4, 5
B.
2, 5
C.
2, 3
D.
3, 4
Answer: Option C

 Solved MCQs From: http://cs-mcqs.blogspot.com

17.
Which of the following jobs are done by Common Language Runtime?
It provides core services such as memory management, thread management, and remoting.
It enforces strict type safety.
It provides Code Access Security.
It provides Garbage Collection Services.
A.
Only 1 and 2
B.
Only 3, 4
C.
Only 1, 3 and 4
D.
Only 2, 3 and 4
E.
All of the above
Answer: Option E

 Solved MCQs From: http://cs-mcqs.blogspot.com

18.
Which of the following statements are correct about a .NET Assembly?
It is the smallest deployable unit.
Each assembly has only one entry point - Main(), WinMain() or DLLMain().
An assembly can be a Shared assembly or a Private assembly.
An assembly can contain only code and data.
An assembly is always in the form of an EXE file.
A.
1, 2, 3
B.
2, 4, 5
C.
1, 3, 5
D.
1, 2
Answer: Option A

 Solved MCQs From: http://cs-mcqs.blogspot.com

19.
Which of the following statements are correct about JIT?
JIT compiler compiles instructions into machine code at run time.
The code compiler by the JIT compiler runs under CLR.
The instructions compiled by JIT compilers are written in native code.
The instructions compiled by JIT compilers are written in Intermediate Language (IL) code.
The method is JIT compiled even if it is not called
A.
1, 2, 3
B.
2, 4
C.
3, 4, 5
D.
1, 2
Answer: Option A

 Solved MCQs From: http://cs-mcqs.blogspot.com

20.
Which of the following are parts of the .NET Framework?
The Common Language Runtime (CLR)
The Framework Class Libraries (FCL)
Microsoft Published Web Services
Applications deployed on IIS
Mobile Applications
A.
Only 1, 2, 3
B.
Only 1, 2
C.
Only 1, 2, 4
D.
Only 4, 5
E.
All of the above
Answer: Option B

 Solved MCQs From: http://cs-mcqs.blogspot.com





Previous Post Next Post