Definition
Questions
Functions
Coding
100


What is a computer program?



A step-by-step recipe of what needs to be done to complete a task that gets executed by the computer.

100

Which of these scenarios are good candidates for automation? Select all that apply.

1. Copying a file to all computers in a company 

2. Sending personalized emails to subscribers of your website 

100


What does the print function do in Python?



The print function outputs messages to the screen


100

How do you output a message that says "I like the Knicks!" to the screen.


a = "I like the Knicks!"

print(a)

200



What’s the syntax of a language?





The rules of how to express things in that language




200


What’s the difference between a program and a script?



There’s not much difference, but scripts are usually simpler and shorter.

200


What are keywords in Python?




Keywords are reserved words that are used to construct instructions.




200

 What output is needed for : print("Five is greater than two!")

if 5 > 2:

  print("Five is greater than two!")

300

What is Synthax

Grammar for Python

300

What is Semantic?

What is the code trying to accomplish

300

What are functions in Python?



Functions are pieces of code that perform a unit of work.

300

What type of code is this?

#This is a comment
print("Hello, World!")

Comments starts with a #

M
e
n
u