InterviewSolution
Saved Bookmarks
| 1. |
Int a=4, int b=5; c=a+b; system.out.println("sum="c); find and correct the error of snippet and write the output after correcting itvery urgent |
|
Answer» c = 9Explanation:a = 4B = 5a + b = 5 + 4 = 9C = a + b c = 5+ 4 = 9 |
|