

MCQOPTIONS
Saved Bookmarks
1. |
Consider the following statements: int x = 6, y=8, z, w; y = x++; z = ++x; The value of x,y,z by calculating the above expressions are:- |
A. | y=8, z=8, x=6 |
B. | y=6, x=8, z=8 |
C. | y=9, z=7, x=8 |
D. | y=7, x=8, z=7 |
Answer» C. y=9, z=7, x=8 | |