Vidyalelo
C# Programming · Q90

Miscellaneous in C Sharp

Programming · C# Programming · question 90

Q90

What will be the output of the following C# code snippet? static void main(String args[]) char chars[] = 'a', 'b', 'c'; String s = new String(chars); Console.WriteLine(s);

A.
a
B.
b
C.
ab
D.
abc
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board