Question: Please help with Java homework. What is stored in nums[0] after invoking the change method below? int[] nums = {2, 3, 4}; change(nums); // what
Please help with Java homework.
What is stored in nums[0] after invoking the change method below?
int[] nums = {2, 3, 4};
change(nums);
// what does nums[0] store now?
public void change(int[] numbers) {
numbers[0]++;
}
| you cannot tell from the provided code |
| none of these is correct |
| 2 |
| 3 |
| 4 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
