Question
Which of the following is responsible for the execution of all applications developed using the .NET library? A Common Type System B Base Class Libraries
Which of the following is responsible for the execution of all applications developed using the .NET library?
A
Common Type System
B
Base Class Libraries
C
Common Intermediate Language
D
Common Language Runtime
What is a function of the Solution Explorer window in Visual Studio?
This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A
It shows the hierarchy of files and folders in the project.
B
It lists the errors present in the code.
C
It provides access to the user interface building blocks for desktop applications.
D
It displays information about the current Team Foundation Server.
What will be the output of the following C# program?
class Program { enum emp: int { John, Maria, Mary = 5, Peter, Jack = 10, Zoe } static void Main(string[] args) { Console.Write((int) emp.Maria + ", "); Console.Write((int) emp.Peter + ", "); Console.Write((int) emp.Jack + ", "); Console.Write((int) emp.Zoe); Console.ReadKey(); } }
A
1, 6, 10, 11
B
2, 6, 7, 8
C
2, 6, 10, 11
D
1, 6, 10, 8
What will be the output of the following code?
- static void Main(string[] args) {
- String c = " Hello uCertify ";
- String a = c.Trim();
- Console.WriteLine("\"" + s + "\"");
- }
A
"Hello uCertify"
B
" Hello uCertify"
C
"HellouCertify"
D
Hello uCertify
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started