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» ong>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 |
|