Flowcharts and pseudocodes (up to if) Flashcards

1
Q

Values that the user gives to the program

A

input statements

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

Read num1
Accept KName
Get age_student
Input Jade_choice

These are examples of _____ statements

A

input

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

the results as well as what the program tells the user

A

output statements

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

Output total
Show SUM
Display age_student
Print num1

These are examples of _____ statements

A

output

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

In an assignment statement the (receiving) variable is on the ____

While the assigning variable is on the ____

A

left

right

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

Types of statements

the process of giving the variable a value

A

assignment

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

Types of statement

calculation is done
+ - / *

A

computation

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

Types of statements

something to do with evaluating, ordering, choosing
e.g. find which variable is bigger

equal =
greater than >
less than <
not equal to<>

A

Logic/comparison

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

What should be at the beginning of every Pseudocode?

A

Comment

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

The 3 control structures

A

Iteration
sequence
selection

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

The statements that fall one after the

other

A

sequence

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

Types of statements

When there is a choice made, resulting in one action or another.

A

selection

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

When the tasks are looping, being done over and over.

A

iteration

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

The rounded rectangle that marks the beginning and end of the algorithm in a flowchart

A

Terminator

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

Processing statements such as calculations or assignment statements in a flowchart are placed in a ________

A

rectangle

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

In a flowchart ____ and _____ statements are placed in a parallelogram

A

input

output

17
Q

The decision symbol- diamond is used to

A

check a condition

18
Q

Connects the various symbols in a flowchart together with the direction indicating the flow of control

A

arrows

19
Q

5 symbols in a flowchart

A
Terminator
Processing
Input/output
Decision
Arrows
20
Q

test data

A

data that is used in the testing of a computer program