

MCQOPTIONS
Saved Bookmarks
1. |
Predict the solution for the following set of code .
static void Main(string[] args) { int a, b, c, x; a = 80; b = 15; c = 2; x = a - b / (3 * c) * ( a + c); Console.WriteLine(x); Console.ReadLine(); } |
A. | 78 |
B. | -84 |
C. | 80 |
D. | 98 |
Answer» C. 80 | |