Question: Assume that i = 1, j = 2, k = 3 and m = 2. What does each of the following statements display? a) Console.WriteLine(i
Assume that i = 1, j = 2, k = 3 and m = 2. What does each of the following statements display?
a) Console.WriteLine(i == 1);
b) Console.WriteLine(j == 3);
c) Console.WriteLine((i >= 1) && (j < 4));
d) Console.WriteLine((m <= 99) & (k < m));
e) Console.WriteLine((j >= i) || (k == m));
f) Console.WriteLine((k + m < j) | (3 - j >= k));
g) Console.WriteLine(!(k > m));
Step by Step Solution
3.42 Rating (174 Votes )
There are 3 Steps involved in it
a True b F... View full answer
Get step-by-step solutions from verified subject matter experts
