1. Introduction Flashcards
In a Coral flowchart, a parallelogram represents either a(n) ____ or a(n) ____.
input statement, output statement
A(n) ____ consists of text (characters) within double quotes.
string literal
A(n) ____ includes any letter (a-z, A-Z), digit (0-9), or symbol (~, !, @, etc.).
character
A(n) ____ character is a special two-character sequence (\n) whose appearance in an output string literal causes the cursor to move to the next output line. This character exists invisibly in the output.
newline
____ refers to blank spaces (space and tab characters) between items within a statement, and to newlines.
Whitespace
Engineers have reduced on/off switch sizes by half about every 2 years, a trend known as ____.
Moore’s Law
A(n) ____ is a computer inside another electrical device, like inside a TV, car, printer, thermostat, satellite, etc.
embedded computer
____ is a popular code for characters.
ASCII (American Standard Code for Information Interchange)
ASCII uses ____ bits per code and has code for ____ characters.
7, 128
____ is another character encoding standard (besides ASCII), published in 1991, whose codes can have more bits than ASCII and, thus, can represent over 100,000 items, such as symbols and non-English characters.
Unicode
The value of each digit’s position within a number is known as its ____.
weight
Example: the right-most digit in a base-10 number has a weight of 10^0, or 1. The second-most digit to the right has a weight of 10^1, or 10.
Characters and numbers are ____ and stored in the computer’s memory.
encoded
The thought processes needed to build correct, precise, logical programs is sometimes called ____ thinking.
computational