MCQOPTIONS
Saved Bookmarks
| 1. |
Select the ouput for the following set of code : static void Main(string[] args) { int x = 4 ,b = 2; x -= b/= x * b; Console.WriteLine(x + " " + b); Console.ReadLine(); } |
| A. | 4 2 |
| B. | 0 4 |
| C. | 4 0 |
| D. | None of mentioned |
| Answer» D. None of mentioned | |