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
How many questions are in the multiple choice?
70
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
How long do you have for the multiple choice section of the AP test?
2 hours
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 language are we going to learn (mostly) this year?
Python
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?
How many PROMPTS will you have to write about in the written response?
4 prompts: 1, 2a, 2b, 2c
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
What 3 things do you submit before the AP test for the Create Project?
1. Program
2. Video
3. Personalized Project Reference
How would we fix this code?
name= "Bob"
print(Name)
print(name) instead of print(Name)