What do you do if you're absent?
Ask someone in the class what you missed.
Check Schoology for missing work.
What building are we in right now?
Music
What college did I go to AND what did I major in?
UCLA, math, english
What is a variable?
A) A piece of data that can change
B) A coding technique
C) A piece of data you cannot change
D) A special file
A
What is the hall pass procedure?
2. raise your hand for permission
3. sign the log and go
4. return the pass
What is the name of our principal?
Principal Jewel Brown
How many siblings do I have?
2
Which decision statement will be triggered if the variable x is less than 20?
A) if x > 20:
B) if x == 20:
C) if x <> 20:
D) if x < 20:
D
Where can you find extra supplies in our classroom?
In the back of the room in the cabinets. They must be returned!
What are the names of our assistant principals?
Ms. Ross and Mr. Garcia
3
What does input do?
A) It allows users to change the program
B) It allows a user to solve a task
C) It converts data types
D) It allows users to enter data
D
What should you bring to class every day?
Computer, notebook, pencil.
How many math teachers are there at VAPA?
8
How did I meet Mr. Ng?
What would the output of this code be if the user entered the value 70?
if grade >= 80:
print("Distinction")
elif grade >=70:
print("Merit")
elif grade >= 60:
print("Pass")
Merit
What are the disciplinary measures in our classroom?
1. Student conference
2. Parent conference and lunchtime recovery
3. Contact administration
What is the temperature of the classroom RIGHT NOW.
When did I get married?
July 18
How would we fix this code?
name= "Bob"
print(Name)
print(name) instead of print(Name)