Which of the following tells the computer in which order to access drives?

a. boot sequence
b. operating system
c. random access memory
d. application software


Answer: a

Computer Science & Information Technology

You might also like to view...

Show the printout of the following code:

```#include using namespace std; void swap(int a[]) { int temp = a[0]; a[0] = a[1]; a[1] = temp; } int main() { int a[] = {1, 2}; swap(a); cout << "a[0] = " << a[0] << " a[1] = " << a[1] << endl; return 0; } ```

Computer Science & Information Technology

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

1) Declarations can appear almost anywhere in the body of a C++ function. 2) The remainder operator (%) can be used only with integer operands. 3) The arithmetic operators *, /, %, + and – all have the same level of precedence. 4) A C++ program that prints three lines of output must contain three statements using cout and the stream insertion operator. 5) All operators are evaluated from left to right.

Computer Science & Information Technology

A ________ is a note that an author or reviewer adds to a document

A) comment B) source C) marker D) change

Computer Science & Information Technology

When fields are added to the ________ box for a PivotTable, they do not retain their descriptive names

Fill in the blank(s) with correct word

Computer Science & Information Technology