Question: Language: Java 1 2 3 4 5 6 public List someFunction ( final List numbers ) { List result = new ArrayList ( ) ;

Language: Java 123456 public List someFunction(final List numbers){ List result = new ArrayList(); for (int i= numbers.size()1; i >=0; i--){ result.add(numbers.get(i)); } return result; 7} Image not displaying? What does this method return? A reverse ordered list Throws ArrayIndexOutOfBoundsException A decrementally sorted list The same list An incrementally sorted list

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 Databases Questions!