Introduction Flashcards
A computer blank consists of instructions executing one at a time.
program
Basic instruction types are what?
Input: A program gets data, perhaps from a file, keyboard, touchscreen, network, etc.
Process: A program performs computations on that data, such as adding two values like x + y.
Output: A program puts that data somewhere, such as to a file, screen, network, etc.
Programs use blank to refer to data, like x, y, and z
variables
blank, or creating a sequence of instructions to solve a problem, will become increasingly important for work and everyday life
computational thinking
A sequence of instructions that solves a problem is called an blank
algorithm
A blank is a graphical language for creating or viewing computer programs.
flowchart
A blank is a list of statements
program
In a program, each blank carries out some action and executing one at a time
statement
In a Coral flowchart, each statement is in a graphical blank, with different shapes for different types of statements.
node
For Coral, an blank runs a program’s statements.
interpreter
blank and blank are words for carrying out a program’s statements.
Run and execute
A program also has blank, each being a name that can hold a value,
variables
In a Coral flowchart, a parallelogram represents an blank, written as: variable = Get next input.
input statement
In a Coral flowchart, a parallelogram represents an blank, written as: Put item to output
output statement
A blank consists of text (characters) within double quotes, as in “Go #57!”.
string literal
A blank includes any letter (a-z, A-Z), digit (0-9), or symbol (~, !, @, etc.)
character
A blank indicates where the next output item will be placed in the output.
cursor
A blank is a special two-character sequence \n whose appearance in an output string literal causes the cursor to move to the next output line.
newline
Outputting a blank’s value is achieved via: Put x to output. No quotes.
variable
A blank is text a programmer adds to a program, to be read by humans to better understand the code, but ignored by the program when executing.
comment
In Coral, a comment starts with blank and includes all the subsequent text on that line. The comment must be on its own line.
//