InterviewSolution
Saved Bookmarks
| 1. |
Write statement to increase the value assigned to variable z by 5 and then to display the value. |
|
Answer» z = z + 15; System. out.prtintIn(z); |
|