Computer Science Foundations - Module 4 Review

Computer Science Foundations - Module 4 Review

9th - 11th Grade

9 Qs

quiz-placeholder

Similar activities

HTML Javascript

HTML Javascript

9th Grade

12 Qs

9. Урок 12+ Принципи тривимірної навігації

9. Урок 12+ Принципи тривимірної навігації

9th Grade

9 Qs

AP Computer Science Principles

AP Computer Science Principles

9th - 12th Grade

6 Qs

Python Unit/Lesson 9.5 and 4.5

Python Unit/Lesson 9.5 and 4.5

9th - 12th Grade

8 Qs

Revisão de Python

Revisão de Python

10th Grade - University

10 Qs

Functions With Return Values U1M2 Python

Functions With Return Values U1M2 Python

9th - 12th Grade

12 Qs

2.1.2 Flowcharts and algorithms

2.1.2 Flowcharts and algorithms

10th Grade

10 Qs

Control Structures - Selection in Python

Control Structures - Selection in Python

8th Grade - University

11 Qs

Computer Science Foundations - Module 4 Review

Computer Science Foundations - Module 4 Review

Assessment

Quiz

Computers

9th - 11th Grade

Hard

Created by

Tyreese Hamilton

Used 4+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

5 mins • 5 pts

Cookies can be used to... Select all that apply.

  Remember that you are logged in to a website

  Track your movements across the web to target advertisements

  Keep track of your shopping cart on a website

  Hold code that will be executed

2.

MULTIPLE CHOICE QUESTION

5 mins • 5 pts

If I delete a photo off of social media, I can be sure it is fully removed from the internet.

True

False

3.

MULTIPLE SELECT QUESTION

5 mins • 5 pts

Which of the following storage devices are non-volatile (can store information when powered down)? (Select all that apply.)

RAM

ROM

SSD

Flash drive

4.

MULTIPLE CHOICE QUESTION

5 mins • 5 pts

When things are stored on the cloud, they are located…

  Encoded in electromagnetic waves in the atmosphere

  On a HDD/SSD on the service’s server

  On your local storage, compressed to be smaller

  In flash memory

5.

MULTIPLE CHOICE QUESTION

5 mins • 5 pts

Media Image

Which of the following is the proper syntax for a function definition?

A

B

C

D

6.

MULTIPLE SELECT QUESTION

5 mins • 5 pts

Which of the following can have their values accessed within a function? (Select all that apply.)

  Undeclared variables

  Local variables

Parameters

  Global variables

7.

MULTIPLE CHOICE QUESTION

5 mins • 5 pts

Media Image

product=num1*num2

num1 * num2

num1 x num2

return num1 * num2

8.

OPEN ENDED QUESTION

5 mins • 5 pts

Media Image

What is the scope of num1 in the block of code?

Evaluate responses using AI:

OFF

9.

MULTIPLE CHOICE QUESTION

5 mins • 5 pts

Which of the following terms describes num2 from the block of code?

Argument

Return function

Parameter

Function Definition