OOPS
August 25, 2024OOPS
August 25, 2024OOPS
Question 7
|
Given the array of integers ‘array’ shown below :
What is the output of the following JAVA statements ?
int [ ] p = new int [10];
int [ ] q = new int [10];
for (int k = 0; k < 10; k ++)
p[k] = array [k];
q = p;
p[4] = 20;
System.out.println (array [4] + “ : ” + q[4]);
20 : 20
|
|
18 : 18
|
|
18 : 20
|
|
20 : 18
|
Question 7 Explanation:

Correct Answer: C
Question 7 Explanation:
