MCQOPTIONS
Saved Bookmarks
| 1. |
What\'s wrong? while( (i < 10) && (i > 24)) |
| A. | the while loop is an exit-condition loop |
| B. | the logical operator && cannot be used in a test condition |
| C. | the test condition is always true |
| D. | the test condition is always false |
| Answer» E. | |