Exam 1 Flashcards

1
Q

CPU

A

The circuitry in a computer that controls the manipulation of data is called the central processing
unit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the three parts of the CPU

A

Arithmetic/ Logic Unit(ALU), Control Unit and Register Unit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What’s the function of the Arithmetic Unit

A

The ALU performs operations on data such as addition and subtraction.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What’s the function of the Control Unit

A

contains the circuitry for coordinating the machine’s activities.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What’s the function of the Register Unit

A

contains data storage cells called registers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Bus

A

The bus is the electronic connection that connects all the devices on the computer to the CPU and
each other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Main Memory

A

Main Memory is the high speed memory associated with the CPU (but not included in
the CPU) that stores computer programs for execution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Stored Program Concept

A

The idea of storing programs in main memory is called the

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Computer Programs

A

In order for instructions to be executed by the CPU, they must be reduced to machine language.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Machine Language Instruction

A

Consists of an instruction code followed by an address or addresses. the computer uses a compiler to convert
the instructions to machine code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

List the 5 types of instructions

A

Branch
Arithmetic
Read
Write
Conditional

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Clock

A

Circuitry in the control unit that provides for coordinates instruction execution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

FIRMWARE

A

Instructions stored in read only memory in devices to speed operations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Machine cycle

A

Fetch, Decode, and Execute

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Program Counter

A

Internal counter that keeps up with the address of the nest instruction to be decoded for execution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Motherboard

A

is a large circuit board that holds computer components. Its called a motherboard
because of its capability to extend its capabilities with the addition of daughterboard’s or add on cards. It
is also called the mainboard.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Who is George Boole was and what did he contribute.

A

English mathematician who helped establish modern symbolic logic and whose algebra of logic, now called Boolean algebra, is basic to the design of digital computer circuits.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Boolean Operations

A

Operations that manipulate true/ false
values.

19
Q

Gate

A

Devices that produce output of a Boolean operation when given any input values is called a gate. Gates are the building blocks from which computers are constructed.

20
Q

Memory

A

Main memory is organized in units called cells with a typical size of 8 bits (one byte). Each cell can be addressed with a unique name called its address.

21
Q

What are the different types of memory

A

Random Access Memory (RAM)
Dynamic RAM (DRAM)
Synchronized dynamic RAM (SDRAM)

22
Q

Magnetic Disk

A

An information storage device for a computer in the shape of a round flat plate that can be rotated to give access to all parts of the surface. The data may be stored either magnetically or optically.

23
Q

CD optical storage

A

any storage type in which data is written and read with a laser.

24
Q

Flash Drive

A

a small electronic device containing flash memory that is used for storing data or transferring it to or from a computer.

25
Q

Data

A

can be stored as integers, floating point numbers and characters. Characters are usually represented in 8 bit bytes as hexadecimal characters with 2 hex characters representing the character.

26
Q

Who is Herman Hollerith

A

A German-American statistician, inventor, and businessman invented who developed a punch-card tabulation machine system that revolutionized statistical computation.

27
Q

In ______ John von Neumann develops the definition of modern computer architecture.

A

1945

28
Q

In ______ Bell Labs develops the first transistor

A

1947

29
Q

In ______ the first commercial, non government computer is delivered to the GE plant in Louisville Ky

A

1954

30
Q

In ______ Grace Hopper develops the first compiler (COBOL)

A

1956

31
Q

In ________ Transistors replace vacuum tubes for computer storage

A

1960

32
Q

In ________ integrated circuits are applied to technology

A

1965

33
Q

In ______ Texas Instrument delivers the first hand held calculator.

A

1966

34
Q

In _______ the first microcomputer (MIT’s Altair) commercially produced and marketed

A

1975

35
Q

In ______ Apple II introduced

A

1977

36
Q

In _____ IBM PC introduced

A

1981

37
Q

In ____ Apple Macintosh introduced

A

1984

38
Q

In ________ AT&T’s video phone released

A

1992

39
Q

Label

A

a sequence of characters that identifies a location within source code

40
Q

Labels must be less than _____ characters long and not contain blanks or symbols

A

12

41
Q

_______ should always be at the end of your program and signals the compiler that this is the last instruction executed.

A

END command

42
Q

_________ prints the specified message to the screen, or other standard output device.

A

Print Command

43
Q

________ allows the programmer to document the program

A

Comment commands