____________ was designed to tabulate the 1890 census and used cards with designated areas representing data fields.

A. Babbage's Analytical Engine
B. Schickard's Calculator
C. The Atanasoff-Berry Computer
D. Hollerith's tabulating machine


Answer: D

Computer Science & Information Technology

You might also like to view...

Which of the following features makes it easy to replicate formats from one text selection to another?

A. AutoFormat B. Format Painter C. Format Copy D. Format Correction

Computer Science & Information Technology

What is displayed by the following code?

``` public static void main(String[] args) { String[] tokens = "Welcome to Java".split("o"); for (int i = 0; i < tokens.length; i++) { System.out.print(tokens[i] + " "); } } ``` a. Welcome to Java b. Welc me to Java c. Welc me t Java d. Welcome t Java

Computer Science & Information Technology

When using ____ layout, you do not have to guess about the width of the users' viewports.

A. fluid B. fixed C. standard D. template

Computer Science & Information Technology

For each array created, the array name becomes the name of the pointer ____________________ the compiler creates for the array.

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

Computer Science & Information Technology