Saved Bookmarks
| 1. |
What is the value of variable flag after the execution of following if statement ?int flag= 0; if(5 < 8) { flag= I; } (A) 0 (B) 1 (C) 5 (D) 8 |
|
Answer» The value will be 1 because the if STATEMENT can't be WRONG. I am in this FIELD only so you can trust me |
|