Programming Standards
Code Organization
Syntax
100

What is the thing that I suggest you get Microsoft Word to help you check to ensure your output is professional looking before you publish your work?

What is spelling/grammar.

100

The specific ___________ that instructions are written in — which programmers learn, understand, and which computers can interpret — is called a programming _________.

What is language.

100

In Python what do you do as a programmer to tell the computer that your command is done?

What is press enter.

200

What is the thing that you can type in your program to explain your code to another programmer reading your program, but not to the computer (the computer will ignore it)?

What is a comment.

200

What is the term that refers to the complete set of instructions needed to make a computer do something useful or fun?

What is a program.

200

What is the thing you do when you check to see if your code has errors and then work at fixing any of the errors?

What is debugging.

300

An algorithm will only be successful if the steps are written in the proper _______________.

What is sequence.

300

What is the terms that refers to a set of specific rules which must be followed for a particular programming language to be understood by the computer?

What is syntax.

300

In Python, to connect a block of code to an if statement you must ______________ the block of code. In Java you will use a set of brackets to do the same thing.

What is indent/tab-in.

400

What is the term used for they way you write when you are planning a project that combines English and code?

What is pseudocode.

400

What is the terms that refers to a set of instructions inside a program that is written in a particular sequences, and results in a specific task being performed when the instructions are completed?

What is an algorithm.

400

In Python when you code a loop, but want to stop part way through the code and loop back to the top (iterate) you use the word _______________.

What is continue.