EQUATIONS
VOCABULARY
WHAT HAPPENS?
TRUE OR FALSE
MYSTERY SECTION
100

What will be printed?

answer = 1 + 19

print(answer)

What is twenty?

100

What is a way to describe a section of code in human grammar?

What is pseudocode?

100

x ⬅ 6
REPEAT UNTIL (x < 10)
{
    x ⬅ x + 2
}
DISPLAY(x)

#What will be displayed?

What is six?

100

Python is professionally used for modern videogames and software. 

 What is false?

100

What is a grouping of code that can perform a task?

What is an algorithm?

200

What will be printed?

answer = 3 * 23

print(answer)

What is sixty-nine?

200

What is a type of procedure or routine?

What is a function?

200

x ⬅ -7
REPEAT UNTIL (x ≥ 6)
{
    x ⬅ x + 3
}
DISPLAY(x)

#What will be displayed?

What is eight?

200

An argument is a value that a program provides to a function or subroutine.

What is true?

200

 What type of program is Python?

What is an interpreter?

300

What will be printed?

answer = 420 / 21

print(answer)

What is twenty?

300

What is the smallest unit of data storage that a program can use?

What is a variable?

300

x ⬅ 10
REPEAT UNTIL (x = 14)
{
    x ⬅ x + 2
}
DISPLAY(x)

#What will be displayed?

What is fourteen?

300

Loops can be used to repeat code, saving time and simplifying code.

What is true?

300

What are the first five digits of pi?

What is 3.1415?

400

What will be printed?

answer= 23 % 4 

print(answer)

What is three?

400

What is a variable defined in the function to receive specific information?

What is a parameter?
400

x ⬅ -14
REPEAT UNTIL (x ≥ 0)
{
    x ⬅ x + 4
}
DISPLAY(x)

#What will be displayed?

What is two?

400

Mrs. McDonald is our coding class teacher.

What is false?

400

Did you ever hear the Tragedy of Darth Plagueis the Wise?

What is:

"I thought not. It’s not a story the Jedi would tell you. It’s a Sith legend. He could save others from death, but not himself. Ironic."

500
What will be printed?

answer = 25 + 3 - 12

print("answer")

What is answer?

500

What would you call +, -, /, and * in coding?

What is an arithmetic operator?

500

x ⬅ 20
REPEAT UNTIL (x ≤ 9)
{
    x ⬅ x + 3
}
DISPLAY(x)

#What will be displayed?

What is an infinite loop?

500

The main purpose of the PLTW CSE coding class is to learn how to code.

What is false?

500

What is the best Warhammer 40k faction?

What are the Death Korps of Krieg?