AP CSA ArrayList Search (7.5)

AP CSA ArrayList Search (7.5)

10th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

Unit 9 Inheritance

Unit 9 Inheritance

10th - 12th Grade

8 Qs

Arrays by Swarn

Arrays by Swarn

10th Grade

10 Qs

AP CSA Unit 9 Inheritance - Polymorphism

AP CSA Unit 9 Inheritance - Polymorphism

10th - 12th Grade

8 Qs

1D Arrays

1D Arrays

11th Grade

10 Qs

One Dimensional Arrays

One Dimensional Arrays

11th Grade

10 Qs

Topic 6.1 Video 2

Topic 6.1 Video 2

11th Grade

6 Qs

ARRAYS

ARRAYS

11th - 12th Grade

10 Qs

AP CSA Unit 9 Inheritance - Extends, Super, Overriding

AP CSA Unit 9 Inheritance - Extends, Super, Overriding

10th - 12th Grade

8 Qs

AP CSA ArrayList Search (7.5)

AP CSA ArrayList Search (7.5)

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

Herman Galioulline

Used 13+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

The modification has no effect: the modified method will continue to return the index of the first appearance of the target value in the list, or -1 if the target value does not appear in the list.

The modified method will return the index of the last appearance of the target value in the list, or -1 if the target value does not appear in the list.

The modified method will throw an ArrayIndexOutOfBoundsException.

The modified method will return -1 regardless of the inputs.

The modified method will not compile.

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

The modified method will return the index of the first occurrence of target in arr.

The modified method will return the index of the last occurrence of target in arr.

The modified method will return target if target appears in arr and will return -1 otherwise.

The modified method will return -1 if target appears in arr and will return target otherwise.

The modified method will return -1 for all possible inputs.

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

Which of the following best describes the difference in the behavior of seqSearch2 relative to seqSearch as a result of the modification?

The modification in seqSearch2 has no effect: seqSearch2 will always behave exactly as seqSearch does.

The modification in seqSearch2 will cause a compilation error.

The modification in seqSearch2 will cause an ArrayIndexOutOfBoundsException to be thrown for some inputs.

The modification in seqSearch2 will cause -1 to be returned for all inputs.

The modification in seqSearch2 will cause the value of target to be returned instead of the index of target in cases where target appears in arr.

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

It has no impact on the behavior of the method.

It causes the method to ignore the last element in arr.

It causes the method to throw an IndexOutOfBounds exception.

It reduces the size of arr by 1 and the last element will be removed.

It changes the number of times the loop executes, but all indexes in arr will still be accessed.

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

It has no impact on the behavior of the method.

It will cause the method to return a different result when the key value is not in the list.

It will cause the method to return a different result when the key value is found only at the first index in the list.

It will cause the method to return a different result when the key value is found only at the last index in the list.

It will cause the method to throw an array index out of bounds exception.