What will be printed?
answer = 1 + 19
print(answer)
What is twenty?
What is a way to describe a section of code in human grammar?
What is pseudocode?
x ⬅ 6
REPEAT UNTIL (x < 10)
{
x ⬅ x + 2
}
DISPLAY(x)
#What will be displayed?
What is six?
Python is professionally used for modern videogames and software.
What is false?
What is a grouping of code that can perform a task?
What is an algorithm?
What will be printed?
answer = 3 * 23
print(answer)
What is sixty-nine?
What is a type of procedure or routine?
What is a function?
x ⬅ -7
REPEAT UNTIL (x ≥ 6)
{
x ⬅ x + 3
}
DISPLAY(x)
#What will be displayed?
What is eight?
An argument is a value that a program provides to a function or subroutine.
What is true?
What type of program is Python?
What is an interpreter?
What will be printed?
answer = 420 / 21
print(answer)
What is twenty?
What is the smallest unit of data storage that a program can use?
What is a variable?
x ⬅ 10
REPEAT UNTIL (x = 14)
{
x ⬅ x + 2
}
DISPLAY(x)
#What will be displayed?
What is fourteen?
Loops can be used to repeat code, saving time and simplifying code.
What is true?
What are the first five digits of pi?
What is 3.1415?
What will be printed?
answer= 23 % 4
print(answer)
What is three?
What is a variable defined in the function to receive specific information?
x ⬅ -14
REPEAT UNTIL (x ≥ 0)
{
x ⬅ x + 4
}
DISPLAY(x)
#What will be displayed?
What is two?
Mrs. McDonald is our coding class teacher.
What is false?
What is the output when the button is clicked
ButtonButtonClick=22
what is 22
answer = 25 + 3 - 12
print("answer")
What is answer?
What would you call +, -, /, and * in coding?
What is an arithmetic operator?
x ⬅ 20
REPEAT UNTIL (x ≤ 9)
{
x ⬅ x + 3
}
DISPLAY(x)
#What will be displayed?
What is an infinite loop?
The main purpose of the PLTW CSE coding class is to learn how to code.
What is false?
what is the output of the code below
print("3")
what is 3