AUTHENTIC QUESTIONS ANSWERS FULL
SOLUTION PACK GRADED A+
⩥ T/F: Algorithms can be made of abstract and concrete steps.
Answer: True
⩥ T/F: Loops are an example of a control flow statement.
Answer: True
⩥ T/F: A record is a homogeneous collection of items
Answer: False
heterogeneous
⩥ T/F: Items in records can be accessed by position (index).
Answer: False
can be accessed by name
⩥ T/F: an item in an array can be accessed by position (index).
, Answer: True
⩥ T/F: arrays are homogeneous collection of items
Answer: True
⩥ T/F: The index of the last item in an array is the length of the array
minus 1.
Answer: True
⩥ T/F: Sequential searches of sorted arrays can be stopped once the
position where the item would be located has been passed or the item
has been found.
Answer: True
⩥ T/F: Sequential searches of unsorted arrays can only be stopped once
the item has been found.
Answer: False
It can also be stopped when you reach the end of the array.
⩥ T/F: Machine language is the only programming language understood
by a computer.
Answer: True