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
Correct Answer
.NET class libraries
.NET Framework problems
Search Results
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.
10. Which of the following statements are correct?
A switch statement can act on numerical as well as Boolean types.
A switch statement can act on characters, strings and enumerations types.
We cannot declare variables within a case statement if it is not enclosed by { }.
The foreach statement is used to iterate through the collection to get the desired information and should be used to change the contents of the collection to avoid unpredictable side effects.
All of the expressions of the for statement are not optional.