AP CSP Exam Review

AP CSP Exam Review

9th - 12th Grade

45 Qs

quiz-placeholder

Similar activities

OCR Computer Science Paper 2 Revision Quiz #2

OCR Computer Science Paper 2 Revision Quiz #2

9th - 10th Grade

50 Qs

OCR GCSE Computer Science Keywords Set 1

OCR GCSE Computer Science Keywords Set 1

9th - 12th Grade

45 Qs

AQA GCSE Computer Science - 3.1 Fundamentals of algorithms

AQA GCSE Computer Science - 3.1 Fundamentals of algorithms

8th - 10th Grade

49 Qs

APCSP Review

APCSP Review

9th - 12th Grade

45 Qs

AP CSP 4th SW ZLGA

AP CSP 4th SW ZLGA

9th Grade

50 Qs

AQA 8525 GCSE CS 3.2.10 Subroutines & 3.2.11 Robust & Secure

AQA 8525 GCSE CS 3.2.10 Subroutines & 3.2.11 Robust & Secure

10th - 11th Grade

50 Qs

Algorithms & Abstraction, Flowcharts and JavaScript

Algorithms & Abstraction, Flowcharts and JavaScript

9th - 12th Grade

50 Qs

micro:bit

micro:bit

5th - 12th Grade

43 Qs

AP CSP Exam Review

AP CSP Exam Review

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Lakeisha Fuller

Used 145+ times

FREE Resource

45 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What does it mean when we say the Internet is redundant?

Parts of it are unnecessary

If a path is down, packets can be routed a different way

It has a delay between the request and the response to the request

If there is an error, a backup system is brought online to be used

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What describes the process of keeping common or similar features and functionality while removing details that are different?

An alorithm

Decomposition

Simulation

Abstraction

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How are algorithms and programs related?

They have a hierarchical relationship

Programs implement algorithms

Algorithms implement programs

They can both be run on a computer

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is a benefit of collaboration when writing code?

Collaboration allows the work to be divided among independent programmers to create.

Collaboration makes it easier to document another person's code

Collaboration makes it eastier to find errors

Collaboration produces an increase in user requirements that can be met with more team members.

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

A photographer is manipulating a digital image and overwriting the original image. Which of the following describes a lossy transformation of the digital image?
Creating the gray scale of an image by averaging the amounts of red, green, and blue in each pixel and assigning this new value to the corresponding pixel in the new image. The new value of each pixel represents a shade of gray, ranging from white to black.
Creating a mirrored image by swapping the RGB values from pixels on the left side of an image with RGB values from pixels on the right side of an image.
Swapping the Red and Green values of each pixel so that areas that were red now appear green and vice versa.
Creating the negative of an image by creating a new RGB triplet for each pixel in which each value is calculated by subtracting the original value from 255. The negative of an image is reversed from the original; light areas appear dark, and colors are reversed.

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which of the following statements are true about lossless compression?
I - Lossless compression is used only to send files over the Internet
II - Sending a compressed version of a file ensures that the contents of the file cannot be intercepted by an unauthorized user.
I only
II only
I and II
Neither I nor II

7.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image
A red triangle is pictured below in a grid of squares. It is currently facing upward, and can only move using the MoveTriangle procedure, shown below. The triangle can move onto white and gray squares, but not onto the black squares.
PROCEDURE MoveTriangle (numMoves, numTurns)
{ 
REPEAT
numMoves TIMES   

MOVE_FORWARD() 
}
 
REPEAT numTurns TIMES 
{   
TURN_RIGHT() 
}
}
Which of the following instructions will get the red triangle to the gray square?
 
MoveTriangle (1, 1) MoveTriangle (1, 1) MoveTriangle (3, 1) MoveTriangle (3, 0)
MoveTriangle (4, 1)
MoveTriangle (4, 0)
MoveTriangle (1, 1)
MoveTriangle (1, 3)
MoveTriangle (3, 1)
MoveTriangle (3, 0)
 
MoveTriangle (1, 1)
MoveTriangle (1, 3)
MoveTriangle (3, 3)
MoveTriangle (3, 0)

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?