Q61
What will be the output of the following C# code? int n = 2; int p = 4; int q = 5; int w = 3; if ( !((p * q) /n <= (q * w) + n/p )) Console.WriteLine( ++p + w++ + " " + ++n); Console.WriteLine("b"); else Console.WriteLine(--p + q-- + " " + --n); Console.WriteLine("a");
A.
6 2
b
b
B.
8 1
a
Answera
C.
6 1
a
a
D.
8 1
b
b
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board