Saved Bookmarks
| 1. |
Which statement transfers the control out of loop even when the loop condition is tested true? |
|
Answer» Answer: continue Explanation: The continue COMMAND transfers control out of the LOOP even if the conditionis tested TRUE. The language here I'm talking about is Java Hopefully |
|