Coding Basics
Python(print)
Code Editor vs Terminal
Quotes & Syntax
Comments in Python
100

What do we call giving instructions to a computer?

What is coding?

100

What function is used to display text in Python?

What is print()?

100

Where do you write your code?

What is the Code Editor

100

What must text be surrounded by in print()?  

What are quotes?

100

What symbol is used for comments?

What is #?

200

A person who writes code is called a ______.  

What is a programmer?

200

What does the print() function do?

What is displaying text?

200

Where do you see the output?

What is the terminal

200

Name one type of quote Python uses.

What are double or single quotes?

200

Do comments run when the program runs?

What is no?

300

True or False: Computers think on their own.

What is false?

300

Where does the message from print() appear?

What is the terminal?

300

True or False: Code is written in the terminal

What is false

300

True or False: Quotes must match.

What is true?

300

True or False: Comments explain code.

What is true?

400

Name one programming language.

What is Python? (or Java, Javascript, C++.)

400

What will this code show?
print("Have a Happy Husky Day!")

Have a Happy Husky Day!

400

Which one shows results: editor or terminal?

What is the terminal?

400

Which is correct?
a) print(Hello)
b) print("Hello")

What is b?

400

What is the purpose of comments?

What is explaining code?

500

What is coding used for? (Give one example.)

What is making games / websites / apps? (any valid answer)

500

Write one correct example of a print() statement?

Example: print("Hi")

500

Explain the difference between a code editor and a terminal.

Editor = write code, terminal = see output

500

Fix this code:
print(I go to Prep")

print("I go to Prep")

500

Identify the comment in this code:
print("Hi")  # Hi Ms. Washington

What is #Hi Ms. Washington