InterviewSolution
Saved Bookmarks
| 1. |
(a) int x = 20; float y = 30.5;x = x + 50;What are the values of x and y after executing the above code? |
|
Answer» What will this code OUTPUT: INT main() { int x, y, z; y = z = 0; for (x=0; x < 10; x++) ... What value will the VARIABLE "a" have following the execution of this code? int a, ... (d) two or more of the above (e) none ...Missing: 30.5; | Must include: 30.5; |
|