AP CS A: Arrays, Array Lists, Recursion & Searching/Sorting

AP CS A: Arrays, Array Lists, Recursion & Searching/Sorting

9th - 12th Grade

34 Qs

quiz-placeholder

Similar activities

SUMATIF BAB 1 XII RPL

SUMATIF BAB 1 XII RPL

12th Grade

30 Qs

Day 3 - Basics of Python

Day 3 - Basics of Python

12th Grade

30 Qs

Python Pandas Series

Python Pandas Series

12th Grade

34 Qs

PAS PRODAS KELAS XI

PAS PRODAS KELAS XI

11th Grade

35 Qs

Arrays and Lists

Arrays and Lists

10th - 12th Grade

29 Qs

Java Arrays and ArrayLists

Java Arrays and ArrayLists

10th - 12th Grade

29 Qs

Arrays Unit 6 AP CSA

Arrays Unit 6 AP CSA

9th - 12th Grade

34 Qs

Arrays and Lists

Arrays and Lists

9th - 12th Grade

34 Qs

AP CS A: Arrays, Array Lists, Recursion & Searching/Sorting

AP CS A: Arrays, Array Lists, Recursion & Searching/Sorting

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Anthony Logothetis

Used 39+ times

FREE Resource

34 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which index is the last element in an array called nums at?

nums.length

nums.length - 1

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following declarations will cause a compile time error?

int[] scores = null;

int[] scoreArray = {50,90,85};

String[] nameArray = new String[10];

String[] nameArray = {5, 3, 2};

int[] scores = new int[5];

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is returned from arr[3] if arr={6, 3, 1, 2}?

1

2

3

6

4

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is returned from mystery when it is passed {10, 30, 30, 60}?

17.5

30.0

130

32

32.5

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Given the following values of a and the method doubleLast what will the values of a be after you execute: doubleLast()?

{-20, -10, 2, 8, 16, 60}

{-20, -10, 2, 4, 8, 30}

{-10, -5, 1, 8, 16, 60}

{-10, -5, 1, 4, 8, 30}

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which of the following statements is a valid conclusion. Assume that variable b is an array of k integers and that the following is true:

The value in b[0] does not occur anywhere else in the array

Array b is sorted

Array b is not sorted

Array b contains no duplicates

The value in b[0] is the smallest value in the array

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Consider the following code segment. Which of the following statements best describes the condition when it returns true?

whenever the first element in a is equal to val

Whenever a contains any element which equals val

Whenever the last element in a is equal to val

Whenever more than 1 element in a is equal to val

Whenever exactly 1 element in a is equal to val

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?