

MCQOPTIONS
Saved Bookmarks
1. |
Select the output for the following set of 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» E. | |