Question: public int findLast ( int [ ] x , int y ) { / / Effects: If x = = null throw NullPointerException / /

public int findLast (int[] x, int y){
//Effects: If x==null throw NullPointerException
// else return the index of the last element
// in x that equals y.
// If no such element exists, return -1
for (int i=x.length-1; i >0; i--)
{
if (}\textrm{x}[\textrm{i}]=\textrm{y}
{
return i;
}
}
return -1;
}
// test: x=[2,3,5]; y=2
// Expected =0
Which test case does not execute the fault?
a) x = null, y =7
b) x =[2,4,5], y =3
c) x =[2,4,3], y =3
d) x =[0,0,0], y =1
public int findLast ( int [ ] x , int y ) { / /

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!