Answer the following statements true (T) or false (F)
1. In an if... structure, the only possible outcomes are either: a block of statements are executed or nothing is executed.
2. A valid test condition could be (x = 10), assuming x is an integer variable.
3. The following test condition for an if... structure will be true if x = 2:
```
if(x < 5 && x > 10)
```
4. The result of any test condition is always either true or false.
5. The following test condition will evaluate to true if x = 5:
```
if(x < 3 || x == 5)
```
1. T
2. F
3. F
4. T
5. F
You might also like to view...
In Slide Sorter view, a selected slide is ________
A) highlighted in gray B) surrounded by a dark border C) highlighted in yellow D) surrounded by a red border
Which keyboard shortcut key opens the Spelling & Grammar feature?
A) F12 B) F7 C) F4 D) F2
You can edit ____________________ images without their losing image quality.
Fill in the blank(s) with the appropriate word(s).
Every IP node on a network has a routing table.
Answer the following statement true (T) or false (F)