Question: 2 2 Consider the following declaration: int x [ ] = { 0 , 1 , 2 , 3 , 4 } ; int y

22
Consider the following declaration:
int x[]={0,1,2,3,4};
int y[]={6,7,8,9,10};
Select one of the following statements that copy the last three elements of the array x and put these copied elements starting from the first position of the array y?
22
a.
System.arraycopy(x,0,y,0,y.length);
b.
System.arraycopy(x,3,y,1,3);
c.
System.arraycopy(y,0,x,1,3);
d.
System.arraycopy(x,1,y,0,3);
e.
System.arraycopy(x,x.length-3,y,0,3);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!