1. Introduction Flashcards

1
Q

In a Coral flowchart, a parallelogram represents either a(n) ____ or a(n) ____.

A

input statement, output statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A(n) ____ consists of text (characters) within double quotes.

A

string literal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A(n) ____ includes any letter (a-z, A-Z), digit (0-9), or symbol (~, !, @, etc.).

A

character

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

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.

A

newline

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

____ refers to blank spaces (space and tab characters) between items within a statement, and to newlines.

A

Whitespace

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Engineers have reduced on/off switch sizes by half about every 2 years, a trend known as ____.

A

Moore’s Law

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

A(n) ____ is a computer inside another electrical device, like inside a TV, car, printer, thermostat, satellite, etc.

A

embedded computer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

____ is a popular code for characters.

A

ASCII (American Standard Code for Information Interchange)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

ASCII uses ____ bits per code and has code for ____ characters.

A

7, 128

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

____ 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.

A

Unicode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The value of each digit’s position within a number is known as its ____.

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Characters and numbers are ____ and stored in the computer’s memory.

A

encoded

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

The thought processes needed to build correct, precise, logical programs is sometimes called ____ thinking.

A

computational

How well did you know this?
1
Not at all
2
3
4
5
Perfectly