UNIT 6 VOCAB Flashcards

1
Q

U6L1
What is a LIST?

A

is an ordered collection of elements

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

U6L1
What is an ELEMENT?

A

is an individual value in a list that is assigned a unique index

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

U6L1
What is an INDEX?

A

a common method for referencing the elements in a list or string using numbers

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

U6L1
What is a DATA ABSTRACTION?

A

complexity in programs by giving a collection of data a name without referencing the specific details of the representation

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

U6L5
What is ITERATION?

A

a repetitive portion of an algorithm which repeats a specified number of times or until a given condition is met.

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

U6L5
What is an INFINITE LOOP?

A

occurs when the ending condition will never evaluate to true. In other words, the Boolean expression will never evaluate to false.

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

U6L9
What is a TRAVERSAL?

A

the process of accessing each item in a list one at a time

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

What is SEQUENCING?

A

An algorithm is a step-by-step process, and the order of those steps are crucial to ensuring the correctness of an algorithm.

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

What is SELECTION?

A

to determine a different set of steps to execute based on a Boolean expression.

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

What is it called when a loop keeps on repeating forever?

A

Infinite Loop

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