

InterviewSolution
Saved Bookmarks
1. |
17 >= 6 and 3 > 11 or not 24 < 3 |
Answer» If converted in Js, C, C++ or Java:EXPLANATION:it will be (17 >= 6 && 3 > 11 || 24 >= 3)But USE variables instead of constant numbers in this conditional STATEMENT. |
|