InterviewSolution
Saved Bookmarks
| 1. |
State the value of z after the following is executed? char x = 'a;int y=7int z=x+y |
|
Answer» ion:char X = 'a';int y=7;int z=x+y;Answer:104Explanation:x has ASCII value of 97. JAVA converts it to that value and adds y in it. |
|