Question: int [ ] a = (10, 20, 30, 40, 50); int [ ] b = (99, 88, 77, 66, 55); a = b; b [1]
int [ ] a = (10, 20, 30, 40, 50); int [ ] b = (99, 88, 77, 66, 55); a = b; b [1] = 100; system.out.println (a [1]);
What. is the output of this code?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
