Q. What’s wrong? while( (i < 10) && (i > 24)) (Solved)
1. the logical operator && cannot be used in a test condition
2. the while loop is an exit-condition loop
3. the test condition is always false
4. the test condition is always true
- d. the test condition is always true