MCQOPTIONS
Saved Bookmarks
| 1. |
Select the output for the following set of code : static void Main(string[] args) { int X = 6,Y = 2; X *= X / Y; Console.WriteLine(X); Console.ReadLine(); } |
| A. | 12 |
| B. | 6 |
| C. | 18 |
| D. | Compile time error |
| Answer» D. Compile time error | |