Saved Bookmarks
| 1. |
10. What is wrong in the followingstatement? while (i < 10) && (i>25)oa) The logical operator && cannot beused in a test conditionOb) the while loop is an exit conditionloopc) the test condition is always falsed) the test condition is always true |
|
Answer» Answer: C) the test condition is ALWAYS false Explanation: if i < 10 it is never be > 25 at the same time!!!- |
|