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.
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
What does the print function do in Python?
The print function outputs messages to the screen
How do you output a message that says "I like the Knicks!" to the screen.
a = "I like the Knicks!"
print(a)
What’s the syntax of a language?
The rules of how to express things in that language
What’s the difference between a program and a script?
There’s not much difference, but scripts are usually simpler and shorter.
What are keywords in Python?
Keywords are reserved words that are used to construct instructions.
What output is needed for : print("Five is greater than two!")
if 5 > 2:
print("Five is greater than two!")
What is Synthax
Grammar for Python
What is Semantic?
What is the code trying to accomplish
What are functions in Python?
Functions are pieces of code that perform a unit of work.
What type of code is this?
#This is a comment
print("Hello, World!")
Comments starts with a #