What do we call giving instructions to a computer?
What is coding?
What function is used to display text in Python?
What is print()?
Where do you write your code?
What is the Code Editor
What must text be surrounded by in print()?
What are quotes?
What symbol is used for comments?
What is #?
A person who writes code is called a ______.
What is a programmer?
What does the print() function do?
What is displaying text?
Where do you see the output?
What is the terminal
Name one type of quote Python uses.
What are double or single quotes?
Do comments run when the program runs?
What is no?
True or False: Computers think on their own.
What is false?
Where does the message from print() appear?
What is the terminal?
True or False: Code is written in the terminal
What is false
True or False: Quotes must match.
What is true?
True or False: Comments explain code.
What is true?
Name one programming language.
What is Python? (or Java, Javascript, C++.)
What will this code show?
print("Have a Happy Husky Day!")
Have a Happy Husky Day!
Which one shows results: editor or terminal?
What is the terminal?
Which is correct?
a) print(Hello)
b) print("Hello")
What is b?
What is the purpose of comments?
What is explaining code?
What is coding used for? (Give one example.)
What is making games / websites / apps? (any valid answer)
Write one correct example of a print() statement?
Example: print("Hi")
Explain the difference between a code editor and a terminal.
Editor = write code, terminal = see output
Fix this code:
print(I go to Prep")
print("I go to Prep")
Identify the comment in this code:
print("Hi") # Hi Ms. Washington
What is #Hi Ms. Washington