SLR17 Internal computer architecture Flashcards

1
Q

Processor

A

“Often known as a Central Processing Unit (CPU), it is the main part of the computer, consisting of the registers, ALU and control unit.”

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

Main memory

A

“Volatile main memory with fast access times. Also known as Random-Access Memory, RAM can be used in main areas of computing and computing storage. RAM typically can be thought of as containing the operating system, programs in use and the data those programs are using while the computer is running.”

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

Address bus

A

“The part of the bus which carries identification about where the data is being sent.”

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

Data bus

A

“The part of the bus which carries the actual information.”

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

Control bus

A

“This bus carries command and control signals to and from every other component of a computer.”

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

I/O controllers

A

“Input/output controllers receive input and output requests from the central processor and then send device-specific control signals to the device they control. They also manage the data flow to and from the device; this frees the central processor from controlling each device.”

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

Von Neumann architecture

A

“Traditional computer architecture that forms the basis of most digital computer systems. A single control unit manages program control flow following a linear sequence of ‘fetch-decode-execute.’”

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

Harvard architecture

A

“A computer architecture with physically separate storage and signal pathways for instructions and data. These early machines had data storage entirely contained within the central processing unit and provided no access to the instruction storage as data.”

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

Arithmetic Logic Unit

A

“The part of the CPU where data is processed and manipulated. This processing and manipulation normally consist of arithmetic operations or logical comparisons, allowing a program to make decisions.”

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

Control unit

A

“The part of the CPU that manages the execution of instructions. The control unit fetches each instruction in sequence and decodes and synchronises it before executing it by sending control signals to other parts of the computer.”

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

Clock

A

“Measured in hertz, the clock speed is the frequency at which the internal clock generates pulses. The higher the clock rate, the faster the computer may work. The ‘clock’ is the electronic unit that synchronises related components by generating pulses at a constant rate.”

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

General-purpose register

A

“Tiny areas of extremely fast memory located in the CPU normally designed for a specific purpose, where data or control information is stored temporarily. A CPU will usually have many general purposes registers for storing temporary data while instructions are being carried out.”

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

Program Counter

A

“A register in the control unit which holds the address of the next instruction to be executed.”

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

Current Instruction Register

A

“A register in the control unit that stores the address of the next instruction currently being executed and decoded.”

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

Memory Address Register

A

“A register in the CPU that stores the address of the memory location currently in use. In the fetch phase, this would be the address of the instruction being loaded; in the execute phase, it would be the address of the data being used.”

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

Memory Buffer Register

A

“Sometimes known as the Memory Data Register (MDR) is a register in the CPU that stores data being transferred to and from the immediate-access store. It acts as a buffer, allowing the central processor and memory unit to act independently without being affected by minor differences in operation. A data item will be copied to the MDR ready for use at the next clock pulse when it can either be used by the central processor or be stored in main memory.”

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

Status register

A

“Contains information about the state of the processor. Individual bits are implicitly or explicitly read and written by the machine code instructions executing on the processor.”

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

Fetch-decode-execute cycle

A

“The complete process of retrieving an instruction from the store, decoding it and carrying it out. Also known as the instruction cycle.”

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

Processor instruction set

A

“A group of commands for a CPU in machine language. The term can refer to all possible instructions for a CPU or a subset of instructions to enhance its performance in certain situations.”

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

Opcode

A

“Abbreviation of operation code. It is the portion of a machine instruction which specifies the operation to be performed.”

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

Operand

A

“The portion of a machine instruction that specifies the data to be operated on or manipulated by the opcode.”

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

Immediate addressing

A

“Uses the data in the address field; not as an address but a constant required by the program. An example is a routine counting to 10, which may have the constant ‘10’ supplied in the address field of an instruction. The address field cannot hold numbers as large as those that can be stored as data in a memory location because space must be left for the operation code field. This is a particularly convenient method of loading constants into the accumulator.”

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

Direct addressing

A

“Uses the data in the address field without alteration; this is the simplest method of addressing and the most common.”

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

Mnemonic

A

“In assembly language, a mnemonic is an abbreviation for an operation. It is entered in the operation code (opcode) field of each assembler program instruction.”

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

Bitwise shift

A

“An operation that moves the bits held in the shift register to either the left or the right. There are three different types of shift: arithmetic shift, logical shift and cyclic shift. They are distinguished by what happens to the bits shifted out of the register and what is moved in to fill the vacant space.”

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

Interrupt

A

“A signal generated by a source such as an input or output device or a systems software routine that causes a break in the execution of the current routine. Control passes to another routine in such a way that the original routine can be resumed after the interrupt.”

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

Interrupt Service Routine

A

“A software routine that hardware invokes in response to an interrupt. ISRs examine an interrupt and determine how to handle it.”

28
Q

Multiple cores

A

“A part of a multi-core processor. A multi-core processor is a single component with two or more independent actual CPUs, which are the units responsibly for the fetch-decode-execute cycle.”

29
Q

Cache memory

A

“A part of the main store between the central processor and the rest of the memory. It has extremely fast access, so sections of a program and its associated data are copied there to take advantage of its short fetch cycle.”

30
Q

Clock speed

A

“Measured in hertz, the clock speed is the frequency at which the internal clock generates pulses. The higher the clock rate, the faster the computer may work. The ‘clock’ is the electronic unit that synchronises related components by generating pulses at a constant rate.”

31
Q

Word length

A

“The number of bits in a word.”

32
Q

Address bus width

A

“Determines the amount of memory a system can address. For example, a system with a 32-bit address bus can address 232 (4,294,967,296) memory locations. If each memory location holds one byte, the addressable memory space is 4 GB.”

33
Q

Data bus width

A

“The width of the data bus is directly related to the largest number that the bus can carry. For example, an 8-bit bus can represent 2 to the power of 8 unique values; this equates to the numbers 0 to 255. A 16-bit bus can carry the values 0 to 65535, and so on.”

34
Q

“Often known as a Central Processing Unit (CPU), it is the main part of the computer, consisting of the registers, ALU and control unit.”

A

Processor

35
Q

“Volatile main memory with fast access times. Also known as Random-Access Memory, RAM can be used in main areas of computing and computing storage. RAM typically can be thought of as containing the operating system, programs in use and the data those programs are using while the computer is running.”

A

Main memory

36
Q

“The part of the bus which carries identification about where the data is being sent.”

A

Address bus

37
Q

“The part of the bus which carries the actual information.”

A

Data bus

38
Q

“This bus carries command and control signals to and from every other component of a computer.”

A

Control bus

39
Q

“Input/output controllers receive input and output requests from the central processor and then send device-specific control signals to the device they control. They also manage the data flow to and from the device; this frees the central processor from controlling each device.”

A

I/O controllers

40
Q

“Traditional computer architecture that forms the basis of most digital computer systems. A single control unit manages program control flow following a linear sequence of ‘fetch-decode-execute.’”

A

Von Neumann architecture

41
Q

“A computer architecture with physically separate storage and signal pathways for instructions and data. These early machines had data storage entirely contained within the central processing unit and provided no access to the instruction storage as data.”

A

Harvard architecture

42
Q

“The part of the CPU where data is processed and manipulated. This processing and manipulation normally consist of arithmetic operations or logical comparisons, allowing a program to make decisions.”

A

Arithmetic Logic Unit

43
Q

“The part of the CPU that manages the execution of instructions. The control unit fetches each instruction in sequence and decodes and synchronises it before executing it by sending control signals to other parts of the computer.”

A

Control unit

44
Q

“Measured in hertz, the clock speed is the frequency at which the internal clock generates pulses. The higher the clock rate, the faster the computer may work. The ‘clock’ is the electronic unit that synchronises related components by generating pulses at a constant rate.”

A

Clock

45
Q

“Tiny areas of extremely fast memory located in the CPU normally designed for a specific purpose, where data or control information is stored temporarily. A CPU will usually have many general purposes registers for storing temporary data while instructions are being carried out.”

A

General-purpose register

46
Q

“A register in the control unit which holds the address of the next instruction to be executed.”

A

Program Counter

47
Q

“A register in the control unit that stores the address of the next instruction currently being executed and decoded.”

A

Current Instruction Register

48
Q

“A register in the CPU that stores the address of the memory location currently in use. In the fetch phase, this would be the address of the instruction being loaded; in the execute phase, it would be the address of the data being used.”

A

Memory Address Register

49
Q

“Sometimes known as the Memory Data Register (MDR) is a register in the CPU that stores data being transferred to and from the immediate-access store. It acts as a buffer, allowing the central processor and memory unit to act independently without being affected by minor differences in operation. A data item will be copied to the MDR ready for use at the next clock pulse when it can either be used by the central processor or be stored in main memory.”

A

Memory Buffer Register

50
Q

“Contains information about the state of the processor. Individual bits are implicitly or explicitly read and written by the machine code instructions executing on the processor.”

A

Status register

51
Q

“The complete process of retrieving an instruction from the store, decoding it and carrying it out. Also known as the instruction cycle.”

A

Fetch-decode-execute cycle

52
Q

“A group of commands for a CPU in machine language. The term can refer to all possible instructions for a CPU or a subset of instructions to enhance its performance in certain situations.”

A

Processor instruction set

53
Q

“Abbreviation of operation code. It is the portion of a machine instruction which specifies the operation to be performed.”

A

Opcode

54
Q

“The portion of a machine instruction that specifies the data to be operated on or manipulated by the opcode.”

A

Operand

55
Q

“Uses the data in the address field; not as an address but a constant required by the program. An example is a routine counting to 10, which may have the constant ‘10’ supplied in the address field of an instruction. The address field cannot hold numbers as large as those that can be stored as data in a memory location because space must be left for the operation code field. This is a particularly convenient method of loading constants into the accumulator.”

A

Immediate addressing

56
Q

“Uses the data in the address field without alteration; this is the simplest method of addressing and the most common.”

A

Direct addressing

57
Q

“In assembly language, a mnemonic is an abbreviation for an operation. It is entered in the operation code (opcode) field of each assembler program instruction.”

A

Mnemonic

58
Q

“An operation that moves the bits held in the shift register to either the left or the right. There are three different types of shift: arithmetic shift, logical shift and cyclic shift. They are distinguished by what happens to the bits shifted out of the register and what is moved in to fill the vacant space.”

A

Bitwise shift

59
Q

“A signal generated by a source such as an input or output device or a systems software routine that causes a break in the execution of the current routine. Control passes to another routine in such a way that the original routine can be resumed after the interrupt.”

A

Interrupt

60
Q

“A software routine that hardware invokes in response to an interrupt. ISRs examine an interrupt and determine how to handle it.”

A

Interrupt Service Routine

61
Q

“A part of a multi-core processor. A multi-core processor is a single component with two or more independent actual CPUs, which are the units responsibly for the fetch-decode-execute cycle.”

A

Multiple cores

62
Q

“A part of the main store between the central processor and the rest of the memory. It has extremely fast access, so sections of a program and its associated data are copied there to take advantage of its short fetch cycle.”

A

Cache memory

63
Q

“Measured in hertz, the clock speed is the frequency at which the internal clock generates pulses. The higher the clock rate, the faster the computer may work. The ‘clock’ is the electronic unit that synchronises related components by generating pulses at a constant rate.”

A

Clock speed

64
Q

“The number of bits in a word.”

A

Word length

65
Q

“Determines the amount of memory a system can address. For example, a system with a 32-bit address bus can address 232 (4,294,967,296) memory locations. If each memory location holds one byte, the addressable memory space is 4 GB.”

A

Address bus width

66
Q

“The width of the data bus is directly related to the largest number that the bus can carry. For example, an 8-bit bus can represent 2 to the power of 8 unique values; this equates to the numbers 0 to 255. A 16-bit bus can carry the values 0 to 65535, and so on.”

A

Data bus width