Vidyalelo
C# Programming · Q90

Control Flow Statements in C Sharp

Programming · C# Programming · question 90

Q90

What will be the output of the following C# code? static void Main(string[] args) long x; x = Convert.ToInt32(Console.ReadLine()); do Console.WriteLine(x % 10); while ((x = x / 10) != 0); Console.ReadLine(); enter x = 1234.

A.
number of digits present in x
B.
prints '1'
C.
prints reverse of x
Answer
D.
prints sum of digits of 'x'

Answer: Option C

Solution

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