Vidyalelo
C# Programming · Q179

Classes and Objects in C Sharp

Programming · C# Programming · question 179

Q179

What will be the output of the following C# code? static void Main(string[] args) int x = 8; int b = 16; int C = 64; x /= b /= C; Console.WriteLine(x + " " + b+ " " +C); Console.ReadLine();

A.
8 2 32
B.
32 4 8
C.
32 2 8
D.
Compile time error
Answer

Answer: Option D

Solution

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