What is an operator?
A symbol that tells what function to perform.
What is a variable
Names that are used to hold one or more values.
What does the if statement do
Returns one value if it is true, and another if it is false
What is python
Python is a language of code
What is a flowchart
A diagram that represents a process
Name the types of operators
Arithmetic, comparison, boolean, and compound
Identify the variable
name=patty
Patty=1.25
would this run properly
x=3
If x>7, then Print("Hello world")
no
What do circles represent in a flowchart
start or end
Name a Boolean operator
&,!, or any other operator
Can you reassign a variable
Yes
What is an elif statement
Allows you to check Multiple expressions for true
Describe the purpose of python
Its a general coding language used to develop websites and apps
A parallelogram represents
input and output
Name a comparison operator
==><<=>=
Can variables be strings
Yes
Describe an else statement
Contains the block of code that executes if the conditional statement is false
When was python created
1991
A square symboolizes
A process
Name a arithmetic operator
=+-*/
Var="I am a string"
Print(var)
Run this code. Does it run
"I am a string"
Write and run an elif statement
Varying student result
Name an app or website created with python
Netflix, Instacart, Instagram, Spotify,etc
Diamonds symbolize
A decision being made in code