Code a method that finds the last occurrence of an object in an array. The method should return the index of the object if found and –1 if not found.

What will be an ideal response?


```
int findLast(Object[] array, Object target)

int findLast (Object[] array, Object target)
{
for ( int i = numElements – 1; i >= 0; i-- )
if ( array[i].equals( target ) )
return i;
return -1;
}

```

Computer Science & Information Technology

You might also like to view...

Which type of Access query retrieves data from one or more tables or queries, displaying the selected data in a datasheet?

a. select query b. object query c. table query d. sort query

Computer Science & Information Technology

The last statement in the FLWOR structure is always the _____ clause.

A. ?for B. ?where C. ?group by D. ?return

Computer Science & Information Technology

If the fluid grid layout guides for the website you are editing include eight columns, you know that the desktop layout is displayed.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Identify a true statement about an intellectual property.

A. ?It provides copyrights only for published works. B. ?It includes original creative work such as movies and music. C. It withdraws the protection rights for a work after its creator's death.? D. ?It uses the TM symbol for unregistered service marks.

Computer Science & Information Technology