A collection of one or more related fields that contain all of the necessary data about a specific person, place, or thing is known as which of the following?

A. item
B. record
C. file
D. database


Answer: B

Computer Science & Information Technology

You might also like to view...

Which code fragment below fills an M ? N matrix with the products of corresponding elements of M ? N matrices p and q?

a. m = p * q; b. for ( int i = M; i < N; ++i ) m[i] = p[i] * q[i]; c. for ( int i = 0; i < M; ++i ) for ( int j = 0; j < N; ++j ) m[i][j] = p[i][j] * q[i][j]; d. for ( int i = 0; i < M; ++i ) for ( int j = i; j < N; ++j ) m[j][i] = p[j][i] * q[j][i];

Computer Science & Information Technology

A derived class object cannot be assigned to a base class object.

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

Computer Science & Information Technology

Many of the components inside a computer generate a great deal of heat. Without proper cooling, a computer could overheat and malfunction.

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

Computer Science & Information Technology

Which of the following styles includes both character and paragraph formats?

A. Table B. Character C. List D. Paragraph

Computer Science & Information Technology