CSP assessment

CSP assessment

9th - 12th Grade

32 Qs

quiz-placeholder

Similar activities

Algorithms Quiz

Algorithms Quiz

11th Grade

30 Qs

Computer Science - Fundamentals of Algorithms

Computer Science - Fundamentals of Algorithms

11th Grade

30 Qs

Unit 10 CSP Algorithms Review

Unit 10 CSP Algorithms Review

9th - 12th Grade

27 Qs

AP Comp Sci Study Guide #1-2

AP Comp Sci Study Guide #1-2

KG - 12th Grade

30 Qs

Paper 2 Comp Science revision

Paper 2 Comp Science revision

12th Grade

30 Qs

GCSE Computer Science - 2.1: Algorithms

GCSE Computer Science - 2.1: Algorithms

9th - 11th Grade

31 Qs

PLTW CSIM Lesson 1 Assessment

PLTW CSIM Lesson 1 Assessment

5th - 9th Grade

35 Qs

Unit 5 & 6 Review

Unit 5 & 6 Review

9th - 12th Grade

30 Qs

CSP assessment

CSP assessment

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Alex Savage

Used 1+ times

FREE Resource

32 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

15 mins • 20 pts

Which of the following is an example of a phishing attack?

Loading malicious software onto a user’s computer in order to secretly gain access to sensitive information

Flooding a user’s computer with e-mail requests in order to cause the computer to crash

Gaining remote access to a user’s computer in order to steal user IDs and passwords

Using fraudulent e-mails in order to trick a user into voluntarily providing sensitive information

2.

MULTIPLE CHOICE QUESTION

15 mins • 20 pts

To be eligible for a particular ride at an amusement park, a person must be at least 12 years old and must be between 50 and 80 inches tall, inclusive.

Let age represent a person’s age, in years, and let height represent the person’s height, in inches. Which of the following expressions evaluates to true if and only if the person is eligible for the ride?

(age ≥ 12) AND ((height ≥ 50) AND (height ≤ 80))

(age ≥ 12) AND ((height ≤ 50) AND (height ≥ 80))

(age ≥ 12) AND ((height ≤ 50) OR (height ≥ 80))

(age ≥ 12) OR ((height ≥ 50) AND (height ≤ 80))

3.

MULTIPLE CHOICE QUESTION

15 mins • 20 pts

Consider the following code segment.

first <-- 100

second <-- 200

temp <-- first

second <-- temp

first <-- second

What are the values of first and second as a result of executing the code segment?

first = 100, second = 100

first = 100, second = 200

first = 200, second = 100

first = 200, second = 200

4.

MULTIPLE CHOICE QUESTION

15 mins • 20 pts

Which of the following best explains the relationship between the Internet and the World Wide Web?

Both the Internet and the World Wide Web refer to the same interconnected network of devices.

The Internet is an interconnected network of data servers, and the World Wide Web is a network of user devices that communicates with the data servers.

The Internet is a local network of interconnected devices, and the World Wide Web is a global network that connects the local networks with each other.

The Internet is a network of interconnected networks, and the World Wide Web is a system of linked pages, programs, and files that is accessed via the Internet.

5.

MULTIPLE CHOICE QUESTION

15 mins • 20 pts

A code segment is intended to display the following output.

up down down down up down down down

Which of the following code segments can be used to display the intended output?

Responses

Media Image
Media Image
Media Image
Media Image

6.

MULTIPLE CHOICE QUESTION

15 mins • 20 pts

Which of the following best exemplifies the use of multifactor authentication to protect an online banking system?

When a user resets a password for an online bank account, the user is required to enter the new password twice.

When multiple people have a shared online bank account, they are each required to have their own unique username and password.

After entering a password for an online bank account, a user must also enter a code that is sent to the user’s phone via text message.

An online bank requires users to change their account passwords multiple times per year without using the same password twice.

7.

MULTIPLE CHOICE QUESTION

15 mins • 20 pts

A game is played by moving a game piece left or right along a horizontal game board. The board consists of spaces of various colors, as shown. The circle represents the initial location of the game piece.

The following algorithm indicates how the game is played. The game continues until the game is either won by landing on the red space or lost when the piece moves off either end of the board.

Step 1:

Place a game piece on a space that is not red and set a counter to 0.

Step 2:

If the game piece is on a yellow space, move the game piece 3 positions to the left and go to step 3. Otherwise, if the game piece is on a black space, move the game piece 1 position to the left and go to step 3. Otherwise, if the game piece is on a green space, move the game piece 2 positions to the right and go to step 3.

Step 3:

Increase the value of the counter by 1.

Step 4:

If game piece is on the red space or moved off the end of the game board, the game is complete. Otherwise, go back to step 2.

If a game is begun by placing the game piece on the rightmost black space for step 1, what will be the value of the counter at the end of the game?

2

3

4

5

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?