A ____ search of an array starts at the beginning of the array and inspects each element until a match is found.
A. sequential
B. decimal
C. matching
D. hexadecimal
Answer: A
You might also like to view...
How many OSPF messages are sent?
What will be an ideal response?
Thermal paste is used between the CPU and heatsink to:
A. make the heatsink easier to remove when replacing the CPU. B. aid in the transfer of energy from the CPU to the heatsink. C. act as a fire retardant should the CPU overheat. D. keep the heatsink in place on the CPU.
Is the following loop correct?
for ( ; ; ); a. Yes b. No
Answer the following statements true (T) or false (F)
1. A pointer whose value is NULL does not point to anything. 2. A newly declared pointer variable has a default value of NULL. 3. In C++, the programmer must explicitly deallocate memory. 4. If the value of the head pointer is NULL, the linked list is empty. 5. When you design an abstract data type, you concentrate on what its operations do and how you will implement them.