AP Computer Science A Quarterly Exam

AP Computer Science A Quarterly Exam

12th Grade

15 Qs

quiz-placeholder

Similar activities

Fill in the Blank Quotes from Movies

Fill in the Blank Quotes from Movies

8th - 12th Grade

20 Qs

BM4323 Tut 10 A&P

BM4323 Tut 10 A&P

10th Grade - University

10 Qs

basic of robotics

basic of robotics

6th Grade - Professional Development

10 Qs

Scholarship Quiz

Scholarship Quiz

9th - 12th Grade

10 Qs

Muscular System

Muscular System

11th - 12th Grade

20 Qs

Campbell's Hero's Journey

Campbell's Hero's Journey

9th - 12th Grade

20 Qs

Muscles

Muscles

11th - 12th Grade

20 Qs

Research

Research

12th Grade

12 Qs

AP Computer Science A Quarterly Exam

AP Computer Science A Quarterly Exam

Assessment

Quiz

Other

12th Grade

Practice Problem

Hard

Created by

Mouna Boutemine

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which sorting algorithm repeatedly finds the lowest item from a portion of a list and swaps it with the item at index?

linear sort

selection sort

insertion sort

sequential sort

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which sorting algorithm sequentially removes an item from a list and adds it back to the list in the appropriate position relative to the previous items in the list?

sequential sort

selection sort

insertion sort

mergesort

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which algorithm uses a temporary array during the sorting process?

selection sort

insertion sort

mergesort

binary search

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given the following code segment: public static int whatzOutput(int x) { if (x == 0) { return(x); } else { return(whatzOutput(x-1)); } } Which is displayed when whatzOutput(-1) is called?

0

-1

-2

No value is returned because this call results in infinite recursion.

5.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which algorithms take a divide and conquer approach?

I. Selection Sort

II. Merge Sort

III. Quick Sort

IV. Bubble Sort

6.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which algorithms have a running time of n²?

a. I and II only

I. selection sort

IV. binary search

III. mergesort

II. insertion sort

7.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which algorithms are implemented recursively?

a. I and II only

I. selection sort

III. mergesort

II. insertion sort

IV. binary search

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?