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

1 Expert Approved Answer
Step: 1 Unlock

a True b F... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Visual C How Program Questions!