When you collect data from the user
What is the input() function?
A statement that is inside quotes.
What is output? Either used as a print() function or to ask a question in an input() function.
A condition that must be true
What is an if statement?
When you write the program, you should always make sure that...
You have a program description and in-line commenting
Name one of the methods to writing an algorithm.
Plain English/Pseudocode
In Python, the code reads top to bottom.
What is Top-Down Design?
The structure and rules of a programming language
What is Syntax?
when something is false and end the program
What are boolean operators or conditions? (used in if/else or while loops.
A type of program/application that reads whole programs as one block?
What is a compiler?
A good way to debug a program.
What is the # hash tag to block out sections that are giving errors?
1. Leave classroom. 2. Turn right out of school building. 3. Walk 1.2 miles. 4. Turn right on street. 5. Go to 4th house.
This is an example of a pseudo code algorithm.
when beginning to code, the actual code should begin with
What is an assigned variable?
This is am important aspect when working on a group coding project
What is documentation or in-line coding?
When you are calculating numbers and you get a Data Type error
What is int() or float() to converts strings to numbers?
Name all of the steps of the programming process in order.
1. Identify the problem. 2. Design the solution. 3. Write the program. 4. Test the program. 5. Document and maintain the program.
when some thing is always true and restarts
What is a while loop (with a boolean condition)?
this is ==
What is a comparison operator that represents 'equals'?