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));


a. True
b. False
c. True
d. False
e. True
f. False
g. False

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1) GroupBoxes have a text display and can have scrollbars inserted into them. 2) Panels have the ability to have scrollbars should their contents get too big. 3) The AutoScroll property will cause a Panel to scroll to the bottom if the controls displayed are too large. 4) GroupBoxes can display captions and do not include scrollbars, whereas Panels can include scrollbars and do no include a caption.

Computer Science & Information Technology

What is RAM? How does RAM work? How much RAM should a PC have?

What will be an ideal response?

Computer Science & Information Technology

Which of the following declares a StreamReader variable namednewFile?

A. Dim inFile As IO.StreamReader B. Dim newFile As IO.StreamReader C. Dim newFile As IO.StreamWriter D. Dim newFile As StreamReader

Computer Science & Information Technology

Creating a(n) __________, either by hand or by using software, allows you to plan your image and make decisions about copies and placement.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology