OOPS
August 25, 2024
OOPS
August 25, 2024
OOPS
August 25, 2024
OOPS
August 25, 2024

OOPS

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]);

A
20 : 20
B
18 : 18
C
18 : 20
D
20 : 18
Question 7 Explanation: 
Correct Answer: C
Question 7 Explanation: 

Leave a Reply

Your email address will not be published. Required fields are marked *