COGNITIVE ASSESSMENT
What method is used to read a bar code?

A. The magnetic bar codes are converted by a bar code reader into a form that a computer can process.
B. A laser translates the bars on the bar code into digital signals that are stored in RAM.
C. A laser scanner produces light beams that pass through a scanner filter which then translates the light patterns into digital patterns that can be interpreted by the CPU.
D. A bar code reader uses laser beams to read bar codes.


Answer: D

Computer Science & Information Technology

You might also like to view...

Where do you choose a name for a new brush?

A. New Brush dialog box B. Name dialog box C. Art Brush Options dialog box D. Brush dialog box

Computer Science & Information Technology

The ANSI C++ standard requires that an int must provide ____ as much storage as a short int.

A. at least B. twice C. three times D. four times

Computer Science & Information Technology

The output of the following code is ____.count = 1; /* initialize count */while (count <= 10){  printf("%d ",count);  count++; /* increment count */}

A. 1 1 1 1 1 1 1 1 ... B. 1 2 3 4 5 6 7 8 9 C. 1 2 3 4 5 6 7 8 9 10 D. 1 2 3 4 5 6 7 8 9 10 11

Computer Science & Information Technology

Which of the following expression results in a value 1?

a. 2 % 1 b. 15 % 4 c. 25 % 5 d. 37 % 6

Computer Science & Information Technology