What will be the output of the following C# code? 1. static void Main(string[] args) 2. { char ch = 'p'; switch (ch) 3. 4. 5. { 6. case 'p': Console.Writeline("coco" + "\t" + Convert.ToInt32(ch)); 7. 8. break; 9. default: 10. Console.Writeline("default"); 11. break; 12. 13. Console.WriteLine("main"); 14. a) coco main 5) coco 112 =) coco 112 main d) compile time error

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter10: Classes And Data Abstraction
Section: Chapter Questions
Problem 19SA
icon
Related questions
Question
What will be the output of the following C# code?
1.
static void Main(string[] args)
2.
{
3.
char ch = 'p';
4.
switch (ch)
5.
6.
case 'p':
7.
Console.Writeline("coco" + "\t" + Convert.ToInt32(ch));
8.
break;
9.
default:
10.
Console.Writeline("default");
11.
break;
12.
}
13.
Console.Writeline ("main");
14.
a) coco main
b) coco 112
c) coco 112 main
d) compile time error
Transcribed Image Text:What will be the output of the following C# code? 1. static void Main(string[] args) 2. { 3. char ch = 'p'; 4. switch (ch) 5. 6. case 'p': 7. Console.Writeline("coco" + "\t" + Convert.ToInt32(ch)); 8. break; 9. default: 10. Console.Writeline("default"); 11. break; 12. } 13. Console.Writeline ("main"); 14. a) coco main b) coco 112 c) coco 112 main d) compile time error
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Header Files
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning