InterviewSolution
Saved Bookmarks
| 1. |
Which of these are selection statements in Java?(a) if()(b) for()(c) continue(d) break |
|
Answer» The correct choice is (a) if() Explanation: Continue and break are jump statements, and for is a looping statement. |
|