Saved Bookmarks
| 1. |
What will be the value of n after the execution of the following selection statement : int n=0; if (6>7 II 5>4){n=5;} else n=7; |
|
Answer» n=5 will be the value of n after the execution |
|