CSI106

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/70

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

71 Terms

1
New cards

1. The _______ model is the basis for today's computers.

a. Leibnitz

b. von Neumann

c. Pascal

d. Charles Babbage

b. von Neumann

2
New cards

2. In a computer, the _______ subsystem stores data and programs.

a. ALU

b. input/output

c. memory

d. control

c. memory

3
New cards

3. In a computer, the _______ subsystem performs calculations and logical operations.

a. ALU

b. input/output

c. memory

d. control unit

a. ALU

4
New cards

4. In a computer, the _______ subsystem accepts data and programs and sends processing results to output devices.

a. ALU

b. input/output

c. memory

d. control unit

b. input/output

5
New cards

5. In a computer, the _______ subsystem serves as a manager of the other subsystems.

a. ALU

b. input/output

c. memory

d. control unit

d. control unit

6
New cards

6. According to the von Neumann model, _______ are stored in memory.

a. only data

b. only programs

c. data and programs

d. neither data nor programs

c. data and programs

7
New cards

7. A step-by-step solution to a problem is called _______.

a. hardware

b. an operating system

c. a computer language

d. an algorithm

d. an algorithm

8
New cards

8. FORTRAN and COBOL are examples of _______.

a. hardware

b. operating systems

c. computer languages

d. algorithms

c. computer languages

9
New cards

9. A 17th-century computing machine that could perform addition and subtraction was the _______.

a. Pascaline

b. Jacquard loom

c. Analytical Engine

d. Babbage machine

a. Pascaline

10
New cards

10. _______ is a set of instructions in a computer language that tells the computer what to do with data.

a. An operating system

b. An algorithm

c. A data processor

d. A program

d. A program

11
New cards

11. _______ is the design and writing of a program in structured form.

a. Software engineering

b. Hardware engineering

c. Algorithm development

d. Instructional architecture

a. Software engineering

12
New cards

12. The first electronic special-purpose computer was called _______.

a. Pascal

b. Pascaline

c. ABC

d. ENIAC

c. ABC

13
New cards

13. One of the first computers based on the von Neumann model was called _______.

a. Pascal

b. Pascaline

c. ABC

d. EDVAC

d. EDVAC

14
New cards

14. The first computing machine to use the idea of storage and programming was called _______.

a. the Madeline

b. EDVAC

c. the Babbage machine

d. the Jacquard loom

d. the Jacquard loom

15
New cards

15. _______ separated the programming task from computer operation tasks.

a. Algorithms

b. Data processors

c. High-level programming languages

d. Operating systems

c. High-level programming languages

16
New cards

In a set of 64 symbols, each symbol requires a bit pattern length of

________ bits

6

17
New cards

how many symbols can be represented by a bit pattern with ten bits?

1024

18
New cards

If the ASCII code for E is 1000101, then the ASCII code for e is

________ . Answer the question without consulting the ASCII table

1100101

19
New cards

A 32-bit code called ________ represents symbols in all languages.

Unicode

20
New cards

An image can be represented in a computer using the ________ method.

either bitmap or vector graphic

21
New cards

In the ________ graphic method of representing an image in a computer,

each pixel is assigned a bit patterns

graphic

22
New cards

in the ________ graphic method of representing an image in a computer,

the image is decomposed into a combination of geometrical figure

vector

23
New cards

in the ________ graphic method of representing an image in a computer,

re-scaling of the image creates a ragged or grainy image.

bitmap

24
New cards

When we want to store music in a computer, the audio signal must be

________ .

sampled, quantized, and coded

25
New cards

A floating-point value after normalization is (1.0101) ? 2?4. What is the

value of exponent section in the Excess-127 representation?

123

26
New cards

Assume a new Excess system uses 17 bits to represent the exponent

section. What is the bias value in this system?

65535

27
New cards

Which number representation method is often used to store the

exponential value of a fractional part?

excess

28
New cards

In an Excess conversion, we ________ the number to be converted.

add the bias number to

29
New cards

When a fractional part is normalized, the computer stores the ________

the sign, exponent, and mantissa

30
New cards

The combination of sign and mantissa of a real number in IEEE

standard floating point format is stored as an integer in the ________ representation.

sign-and-magnitude

31
New cards

________ is an arithmetic operation.

Subtraction

32
New cards

________ is a logical bit operator.

exclusive OR, unary NOT, or binary AND

33
New cards

The ________ method of integer representation is the most common

method for storing integers in computer memory.

two's complement

34
New cards

n two's complement addition, if there is a final carry after the left most

column addition, ________ .

discard it

35
New cards

For an 8-bit allocation, the smallest decimal number that can be

represented in two's complement form is ________

-128

36
New cards

For an 8-bit allocation, the largest decimal number that can be

represented in two's complement form is ________

127

37
New cards

In two's complement representation with a 4-bit allocation, we get________ when we add 5 to 5, 1 to 7

-6;8

38
New cards

If the exponent in Excess_127 is binary 10000101, the exponent indecimal is

6

39
New cards

If we are adding two numbers, one of which has an exponent value of 7

and the other an exponent value of 9, we need to shift the decimal point of the

smaller number ________ .

two places to the left

40
New cards

________ operator (s) takes two inputs to produce one output.

AND, OR, or XO

41
New cards

the unary ________ operator inverts its single input.

NOT

42
New cards

________ operator (s), if the input is two 0s, the output is 0.

In AND, OR, or XOR

43
New cards

________ operator (s), if the input is two 1s, the output is 0.

In only

XOR

44
New cards

For the binary AND operation, only an input of ________ gives an

output of 1.

two 1s

45
New cards

For the binary OR operation, only an input of ________ gives an output of 0.

two 0s

46
New cards

To flip all the bits of a bit pattern, make a mask of all 1s and then

________ the bit pattern and the mask.

XOR

47
New cards

To un-set (force to 0) all the bits of a bit pattern, make a mask of all 0s

and then ________ the bit pattern and the mask.

AND

48
New cards

To set (force to 1) all the bits of a bit pattern, make a mask of all 1s and then

________ the bit pattern and the mask.

OR

49
New cards

The ________ is a computer subsystem that performs operations ondata.

CPU

50
New cards

________ is a stand-alone storage location that holds data temporarily.

A register

51
New cards

________ is a unit that can add two inputs.

An ALU

52
New cards

A register in a CPU can hold ________ .

data, instruction, or program counter values

53
New cards

A control unit with five wires can define up ( maximum) to ________ operations.

32

54
New cards

A word can be ________ bits.

8, or 16, or 32

55
New cards

If the memory address space is 16 MB and the word size is 8 bits, then________ bits are needed to access each word.

24

56
New cards

The data in ________ is erased if the computer is powered down.

RAM

57
New cards

________ is a memory type with capacitors that need to be refreshed periodically.

DRAM

58
New cards

________ is a memory type with traditional flip-flop gates to hold data.

SRAM

59
New cards

There are ________ bytes in 16 Terabytes.

2^16

60
New cards

________ can be programmed and erased using electronic impulses but can remain in a computer during erasure.

EEPROM

61
New cards

________ is a type of memory in which the user, not the manufacturer,stores programs that cannot be overwritten.

PROM

62
New cards

Main memory in a computer usually consists of large amounts of________ speed memory.

low

63
New cards

A ________ is a storage device to which the user can write information only once.

CD-R

64
New cards

A ________ is a storage device that can undergo multiple writes and erasures.

CD-RW

65
New cards

The smallest storage area on a magnetic disk that can be accessed at one time is a ________ .

sector

66
New cards

If the memory has 232 words, the address bus needs to have ________wires.

32

67
New cards

A control bus with eight wires can define ________ operations.

256

68
New cards

A ________ controller is a high-speed serial interface that transfers data in packets

USB and FireWire

69
New cards

The three steps in the running of a program on a computer areperformed in the specific order ________ .

fetch, decode and execute

70
New cards

In the ________ method for synchronizing the operation of the CPU with an I/O device, the CPU is idle until the I/O operation is finished.

programmed I/O

71
New cards

In the ________ method for synchronizing the operation of the CPU with an I/O device, a large block of data can be passed from an I/O device to memory directly.

DMA