UNIT 6 VOCAB Flashcards
U6L1
What is a LIST?
is an ordered collection of elements
U6L1
What is an ELEMENT?
is an individual value in a list that is assigned a unique index
U6L1
What is an INDEX?
a common method for referencing the elements in a list or string using numbers
U6L1
What is a DATA ABSTRACTION?
complexity in programs by giving a collection of data a name without referencing the specific details of the representation
U6L5
What is ITERATION?
a repetitive portion of an algorithm which repeats a specified number of times or until a given condition is met.
U6L5
What is an INFINITE LOOP?
occurs when the ending condition will never evaluate to true. In other words, the Boolean expression will never evaluate to false.
U6L9
What is a TRAVERSAL?
the process of accessing each item in a list one at a time
What is SEQUENCING?
An algorithm is a step-by-step process, and the order of those steps are crucial to ensuring the correctness of an algorithm.
What is SELECTION?
to determine a different set of steps to execute based on a Boolean expression.
What is it called when a loop keeps on repeating forever?
Infinite Loop