CuriousTab
Search
CuriousTab
Home
Aptitude
Computer
C Programming
C# Programming
C++ Programming
Database
Java Programming
Networking
Engineering
Biochemical Engineering
Biochemistry
Biotechnology
Chemical Engineering
Civil Engineering
Computer Science
Digital Electronics
Electrical Engineering
Electronics
Electronics and Communication Engineering
Mechanical Engineering
Microbiology
Technical Drawing
GK
Current Affairs
General Knowledge
Reasoning
Data Interpretation
Logical Reasoning
Non Verbal Reasoning
Verbal Ability
Verbal Reasoning
Exams
AIEEE
Bank Exams
CAT
GATE
IIT JEE
TOEFL
Jobs
Analyst
Bank PO
Database Administrator
IT Trainer
Network Engineer
Project Manager
Software Architect
Discussion
Home
‣
C# Programming
‣
.NET Framework
Comments
Question
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.
Options
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
Correct Answer
1, 2, 3, 4
.NET Framework problems
Search Results
1. 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
Options
A. 1, 5
B. 3, 4
C. 1, 2
D. 4, 5
Show Answer
Scratch Pad
Discuss
Correct Answer: 3, 4
2. Which of the following constitutes the .NET Framework?
ASP.NET Applications
CLR
Framework Class Library
WinForm Applications
Windows Services
Options
A. 1, 2
B. 2, 3
C. 3, 4
D. 2, 5
Show Answer
Scratch Pad
Discuss
Correct Answer: 2, 3
3. Which of the following security features can .NET applications avail?
PIN Security
Code Access Security
Role Based Security
Authentication Security
Biorhythm Security
Options
A. 1, 4, 5
B. 2, 5
C. 2, 3
D. 3, 4
Show Answer
Scratch Pad
Discuss
Correct Answer: 2, 3
4. 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.
Options
A. 1, 2, 3
B. 3, 5
C. 1, 4, 5
D. 3, 4
Show Answer
Scratch Pad
Discuss
Correct Answer: 1, 4, 5
5. Which of the following is the root of the .NET type hierarchy?
Options
A.
System.Object
B.
System.Type
C.
System.Base
D.
System.Parent
E.
System.Root
Show Answer
Scratch Pad
Discuss
Correct Answer:
System.Object
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?
Options
A. .NET class libraries
B. Common Language Runtime
C. Common Language Infrastructure
D. Component Object Model
E. Common Type System
Show Answer
Scratch Pad
Discuss
Correct Answer: .NET class libraries
7. Which of the following utilities can be used to compile managed assemblies into processor-specific native code?
Options
A. gacutil
B. ngen
C. sn
D. dumpbin
E. ildasm
Show Answer
Scratch Pad
Discuss
Correct Answer: ngen
8. Code that targets the Common Language Runtime is known as
Options
A. Unmanaged
B. Distributed
C. Legacy
D. Managed Code
E. Native Code
Show Answer
Scratch Pad
Discuss
Correct Answer: Managed Code
9. 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.
Options
A. 1, 2, 3
B. 2, 4, 5
C. 1, 3, 5
D. 1, 2
Show Answer
Scratch Pad
Discuss
Correct Answer: 1, 2, 3
10. Which of the following can be used to terminate a
while
loop and transfer control outside the loop?
exit while
continue
exit statement
break
goto
Options
A. 1, 3
B. 2, 4
C. 3, 5
D. 4, 5
E. None of these
Show Answer
Scratch Pad
Discuss
Correct Answer: 4, 5
Comments
There are no comments.
Enter a new Comment
Save
More in C# Programming:
Arrays
Attributes
Classes and Objects
Collection Classes
Constructors
Control Instructions
Datatypes
Delegates
Enumerations
Exception Handling
Functions and Subroutines
Generics
Inheritance
Interfaces
Namespaces
.NET Framework
Operators
Polymorphism
Properties
Strings
Structures