MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of following code fragment? a=60; b=70; i=j=10; if(a<100){ if(b>50){ ++i ; else ++j ; }} cout<< i+j; |
| A. | 21 |
| B. | 19 |
| C. | 20 |
| D. | None of the above |
| Answer» B. 19 | |