Our Digital World
Cyber Security
Karel
Data
JavaScript and Graphics
100

These are protected by copyright 

What are creative works

100

These are the three parts of the CIA Triad

What are: Confidentiality (who can see the information); Integrity (when the information itself is changed); Availability (when you can no longer access the location where the info is stored)

100

Which of the following is not a valid condition to go in an if statement for Karel? 

A - ballsPresent()

B - frontIsClear()

C - leftIsBlocked()

D - turnLeft()

What is D

100

This statistical measure tells you the value that appears most frequently in a dataset?

What is the mode?

100

In the following code:

var size = 20; 

var x = 100; 

var y = 200; 

var ball = new Circle(size); 

ball.setPosition(x, y);

What is the meaning of the x variable?

The x-coordinate of the center of the circle

200

Which of the following is NOT a characteristic of a credible source? 

A - The Author is not named on the website

B - The domain is .edu or .gov

C - Multiple scholarly sources are cited

D - The source is well - organized and follows rules of spelling and grammar

What is "A"

200

These people collect, process and sell personal data

Who is a "data broker"

200

Why is the following command an invalid Karel command?

turnleft();

The "l" should be a capital "L"

200

What feature in Google Sheets can you use to fix inconsistent formatting?

What is "Find and Replace"

200

What is printed to the screen if the user enters ‘5’ when the following program is run?

var userNum = readInt("Enter your favorite number: "); 

var calculatedNum = (userNum * userNum) + userNum;

println(calculatedNum);

What is 30

300

It is a computing method using quantum mechanics

What is quantum computing?

300

The "S" in "https://" indicates this.

What is "the site is secure"

300

Say you want to write a program to have Karel put down 300 tennis balls. Which control structure would you use?

What is a for loop?

300

In the data science life cycle, what typically comes after data collection (consider data)?

What is data cleaning and processing (Analyze data stage)

300

What is printed to the screen when the following program is run?

var num = 13 % 3;

println (num);

What is 1

400

You should check these in any privacy policy

What are the "Data collection and sharing practices"

400

This is a cyberattack where a hacker intercepts a valid data transmission, like login info or a financial request, and then fraudulently re-sends (replays) it to trick a system into authorizing an action.

What is a replay attack?

400

Karel starts at Street 1, Avenue 1, facing East in a 5x5 world. What will happen after this code runs? Assume this is a SuperKarel program.

move();

move(); 

turnRight(); 

move();

What is crash into a wall

400

This is a document describing how data was collected, processed and analyzed

What is a data biography?

400

If you were given the following variables:

var distance = 2; 

var time = 30;

What line of code would print the speed in km/hr if the distance is given in km and the time is given in minutes? (Speed = distance/time)

println (distance /(time/60));

500

Someone who witnesses cyberbullying and does nothing

What is a bystander?

500

This is a method of gathering personal information using deceptive emails and websites

What is phishing
500

What is the difference between calling a function or defining it?

Calling it is when a function is written as a command with the code. Defining it is the breakdown of the function after you have wrapped up the code within the start function

500

This chart type is most appropriate for showing the relationship between two continuous quantitative variables?

What is a scatter plot?

500

What is the output of the following program: (Assume the user enters ‘Florence’ then ‘Fernandez’.)

var first_name = readLine("What is your first name? ");

var last_name = readLine("What is your last name? ");

var whole_name = first_name + last_name;

println (whole_name);

FlorenceFernandez

M
e
n
u