Looks like no one added any tags here yet for you.
D
* _______ is a step-by-step method for solving a problem or doing a task.
* A construct
* A recursion
* An iteration
* An algorithm
C
* There are ______ basic constructs in computer -science.
* one
* two
* three
* four
B
* The _______construct tests a condition.
* sequence
* decision
* repetition
* flow
A
* The _______ construct uses a set of actions one after another.
* sequence
* decision
* repetition
* flow
C
* The _______ construct handles repeated actions.
* sequence
* decision
* repetition
* flow
A
* _______ is a pictorial representation of an algorithm.
* A UML diagram
* A program
* Pseudocode
* An algorithm
C
* _______ is an English-language-like representation of code.
* A UML diagram
* A program
* Pseudocode
* An algorithm
A
* _______ is a basic algorithm that adds a list of numbers.
* Summation
* Product
* Smallest
* Largest
B
* _______ is a basic algorithm that multiplies a list of numbers.
* Summation
* Product
* Smallest
* Largest
B
* _______ is a basic algorithm that arranges data according to its value.
* Inquiry
* Sorting
* Searching
* Recursion
D
* The items are divided into two lists (sorted and unsorted) _____ sort.
* only in a selection
* only in a bubble
* only in an insertion
* in selection, bubble, or insertion
C
* In _______ sort, the item that goes into the sorted list is always the first item in the unsorted list.
* selection
* bubble
* insertion
* every
A
* In _______ sort, the smallest item from the unsorted list is swapped with the item at the beginning of the unsorted list.
* selection
* bubble
* insertion
* every
B
* In ______ sort, the smallest item moves to the beginning of the unsorted list. There is no one-to-one swapping.
* selection
* bubble
* insertion
* every
B
* _______ is a basic algorithm in which we want to find the location of a target in a list of items.
* Sorting
* Searching
* Product
* Summation
A
* We use a _______ search for an unordered list.
* sequential
* binary
* bubble
* insertion
B
* We use a _______ search for an ordered list.
* sequential
* binary
* bubble
* insertion
C
* _______ is a process in which an algorithm calls itself.
* Insertion
* Searching
* Recursion
* Iteration