One or more ____ chips hold the instructions that your PC uses to boot up.

A. ROM
B. RAM
C. Memory
D. Circuit


Answer: A

Computer Science & Information Technology

You might also like to view...

(Bubble Sort) Implement bubble sort—another simple yet inefficient sorting technique. It is called bubble sort or sinking sort because smaller values gradually “bubble” their way to the top of the vector (i.e., toward the first element) like air bubbles rising in water, while the larger values sink to the bottom (end) of the vector. The technique uses nested loops to make several passes

through the vector. Each pass compares successive pairs of elements. If a pair is in increasing order (or the values are equal), the bubble sort leaves the values as they are. If a pair is in decreasing order, the bubble sort swaps their values in the vector. The first pass compares the first two element values of the vector and swaps them if necessary. It then compares the second and third element values in the vector. The end of this pass compares the last two element values in the vector and swaps them if necessary. After one pass, the largest value will be in the last element. After two passes, the largest two values will be in the last two ele- ments. Explain why bubble sort is an O(n2) algorithm. What will be an ideal response?

Computer Science & Information Technology

Data transfers between digital devices using a USB connection are significantly faster than using FireWire.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

A ________ is a series of items arranged horizontally

Fill in the blank(s) with correct word

Computer Science & Information Technology

__________ sensors work, for example, when a foot steps on a pressure-sensitive pad under a rug, or a window is opened.

A. Pressure B. Contact and weight C. Motion D. Movement

Computer Science & Information Technology