A computer _____________ is a set of step-by-step statements that tell a computer how to carry out a task.

Fill in the blank(s) with the appropriate word(s).


program

Computer Science & Information Technology

You might also like to view...

What is the printout of the following code?

``` int values[] = {1, 2, 3, 4, 4, 5, 1, 1}; rotate(values, values + 5, values + 8); ostream_iterator output(cout, " "); cout << "values: "; copy(values, values + 8, output); ``` a. values: 1 1 2 3 4 4 5 1 b. values: 1 1 1 2 3 4 4 5 c. values: 4 5 1 1 1 2 3 4 d. values: 5 1 1 1 2 3 4 4

Computer Science & Information Technology

A valid file name is: ____.

A. Com1 B. Aux C. Nul D. Letter

Computer Science & Information Technology

When undeleting a file in the FAT file system, EnCase will check the _____________ to see if it hasalready been overwritten

A. data on the hard drive B. deletion table C. directory entry D. FAT

Computer Science & Information Technology

Access control list user privileges include all but which of these?

A. read B. write C. operate D. execute

Computer Science & Information Technology