What type of processing requires that records be accessed in the order in which they are stored?

a) direct
b) random
c) sequential
d) both a and b


c) sequential

Computer Science & Information Technology

You might also like to view...

In the __________ step the data is either written to the file or read from the file.

a. opening b. processing c. closing d. reading

Computer Science & Information Technology

API stands for ____________________.

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

Computer Science & Information Technology

Given the following declaration:  int j;int sum;double sale[10][7];  which of the following correctly finds the sum of the elements of the fifth row of sale?

A. sum = 0; for(j = 0; j < 7; j++)  sum = sum + sale[5][j]; B. sum = 0; for(j = 0; j < 7; j++)  sum = sum + sale[4][j]; C. sum = 0; for(j = 0; j < 10; j++)  sum = sum + sale[5][j]; D. sum = 0; for(j = 0; j < 10; j++)   sum = sum + sale[4][j];

Computer Science & Information Technology

Troubleshooting a technology problem involves primarily hit-and-miss, trial and error methods.

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

Computer Science & Information Technology