Hardware Flashcards

1
Q

What is the central processing unit (CPU)?

A

Responsible for the execution or processing of all the instructions and data in a computer.

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

What is an integrated circuit?

A

Usually a chip made from a semiconductor material which carries out the same tasks as a larger circuit made from individual components.

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

What is von Neumann architecture?

A

A type of computer architecture which introduced the concept of the stored program in the 1940s.

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

What is the Arithmetic & Logic Unit (ALU)?

A

The component of the CPU that carries out all arithmetic and logical operations.

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

What is an accumulator (ACC)?

A

A temporary general-purpose register that stores numerical values at any part of a given operation.

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

What is a memory address register (MAR)?

A

A register that stores the address of the memory location currently being read from or written to.

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

What is a current instruction register (CIR)?

A

A register that stores the current instruction being decoded and executed.

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

What is a memory data register (MDR)?

A

A register that stores data that has just been read from memory or data that is about to be written to memory.

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

What is a program counter (PC)?

A

A register that stores the address where the next instruction to be read can be found.

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

What is the control unit?

A

The component of a computer’s CPU that ensures synchronisation of data flow and programs throughout the computer by sending out control signals along the control bus.

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

What is the system clock?

A

Produces timing signals on the control bus to ensure synchronisation takes place.

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

What is a clock cycle?

A

Clock speeds are measured in terms of GHz; this is the vibrational frequency of the system clock which sends out pulses along the control bus.

For example, a 3.5 GHZ clock cycle means 3.5 billion clock cycles a second.

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

What is an immediate access store (IAS)?

A

Memory that holds all data and programs needed to be accessed by the control unit.

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

What is a backing store?

A

A secondary storage device (such as HDD or SSD) used to store data permanently even when the computer is powered down.

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

What is cache?

A

Temporary memory using static RAM to hold frequently used data/instructions by the CPU thereby increasing CPU performance. More generally, cache means any area of storage used to quickly access frequently-used data.

Other examples include web cache, database cache, DNS cache.

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

What is a register?

A

A temporary component in the CPU which can be general or specific in its use; it holds data or instructions as part of the Fetch-Decode-Execute cycle.

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

What is an address?

A

A label for a memory location used by the CPU to track data.

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

What is a memory location?

A

A numbered place in memory where values can be stored.

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

What are system buses?

A

A connection between major components in a computer that can carry data, addresses or control signals.

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

What is an address bus?

A

The system bus that carries the addresses throughout the computer system.

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

What is a data bus?

A

The system bus that allows data to be carried from CPU to memory (and vice versa or to and from input/output devices).

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

What is a control bus?

A

The system bus that carries signals from control unit to all other computer components.

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

What is unidirectional?

A

Can travel in one direction only; used to describe data. Address Bus is Unidirectional

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

What is bidirectional?

A

Can travel in both directions; used to describe data. Data and Control Buses are bidirectional

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

What is a word?

A

A group of bits used by a computer to represent a single unit.

For example, modern computers often use 64-bit word lengths.

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

What is overclocking?

A

Changing the clock speed of a system clock to a value higher than the factory/recommended setting.

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

What is a core?

A

A unit on a CPU made up of an ALU, control unit and registers; a CPU may contain a number of cores.

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

What is a dual core?

A

A CPU containing two cores.

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

What is a quad core?

A

A CPU containing four cores.

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

What is the Fetch-Execute-Decode cycle?

A

A cycle in which instructions and data are fetched from memory, decoded and finally executed.

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

What is the Basic Input/Output System (BIOS)?

A

A suite of programs on firmware that are used to perform the initialisation of a computer system during the boot-up process.

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

What is an opcode?

A

Part of a machine code instruction that identifies what action the CPU has to perform.

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

What is an operand?

A

Part of a machine code instruction that identifies what data is to be used.

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

What is an instruction set?

A

The complete set of machine code instructions used by a particular microprocessor.

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

What is an embedded system?

A

A combination of hardware and software designed to carry out a specific set of functions.

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

What is a barcode?

A

A series of dark and light lines of varying thickness used to represent data; the code has to be scanned using laser or LED light source.

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

What is a key field?

A

The field that uniquely identifies a record in a file.

38
Q

What is a quick response (QR) code?

A

A matrix of dark and light squares which represent data; the pattern can be read and interpreted using a smartphone camera and QR app.

39
Q

What is a frame QR code?

A

A type of QR code that includes a space for advertising.

40
Q

What does a digital to analogue converter (DAC) do?

A

It converts digital data into electric currents that can drive motors, actuators, and relays.

41
Q

What is an analogue to digital converter (ADC)?

A

A device that converts analogue data into a form understood by a computer.

42
Q

What is a charge couple device (CCD)?

A

A light sensitive cell made up of millions of tiny sensors acting as photodiodes.

43
Q

What is a virtual keyboard?

A

An onscreen keyboard which uses the features of the touch screen to emulate a physical keyboard.

44
Q

What is a touch screen?

A

A screen that allows the user to select or manipulate a screen image using the touch of a finger or stylus.

45
Q

What is repetitive strain injury (RSI)?

A

Pain felt in the muscles, nerves and tendons caused by a repetitive action.

46
Q

What is an optical mouse?

A

A pointing device that uses a red LED to track the movement of the device and then relays its coordinates to a computer.

47
Q

What is a pointing device?

A

An input device that allows the user to control the movement of an onscreen cursor or to allow onscreen selection by clicking a button on the device.

48
Q

What is a complementary metal oxide semi-conductor (CMOS)?

A

A chip that generates an electric current (or pulses) when light falls on its surface.

49
Q

What is a digital signal processor (DSP)?

A

A processor that calculates the coordinates of a pointing device based on the pulses of electricity received.

50
Q

What is optical character recognition?

A

Technology that can convert hard copy text or images into a digital format to be stored in a computer memory.

51
Q

What is computer aided design (CAD)?

A

Software used to create drawings, for example, to send to a 3D printer or to produce blueprints of a microprocessor design.

52
Q

What is a computed tomographic (CT) scanner?

A

Technology that can create a 3D image of a solid object by slicing up the object into thin layers.

53
Q

What is a capacitive touch screen?

A

A type of touch screen that uses the change in the screen’s capacitance when it is touched by a finger or stylus.

54
Q

What is an infra-red touch screen?

A

A type of touch screen that uses infra-red beams and sensors to detect where the screen has been touched.

55
Q

What is a resistive touch screen?

A

A type of touch screen that uses two conductive layers which make contact where the screen has been touched.

56
Q

What is an actuator?

A

An output device that converts electrical energy into mechanical movement.

57
Q

What is a digital micromirror device (DMD)?

A

A chip that uses millions of tiny mirrors on its surface to create a video display.

58
Q

What is thermal bubble technology?

A

Inkjet printer technology whereby tiny resistors create heat and form an ink bubble which is ejected onto paper.

59
Q

What is a piezoelectric crystal?

A

A crystal located in an ink reservoir within an inkjet printer; the crystal vibrates and forces ink out onto paper.

60
Q

What is direct 3D printing?

A

A 3D printing technique in which the print head moves in the x, y and z directions.

61
Q

What is binder 3D printing?

A

A 3D printing method that uses a two-stage pass; the first stage uses dry powder and the second stage uses a binding agent.

62
Q

What is a cathode?

A

A negative electrode.

63
Q

What is an anode?

A

A positive electrode.

64
Q

What is an organic LED (OLED)?

A

A light-emitting diode that uses the movement of electrons between a cathode and an anode to produce an on-screen image.

65
Q

What is a loudspeaker?

A

An output device that converts electric current into sound.

66
Q

What is memory in a computer?

A

The devices within the computer that are directly accessible by the CPU; there are two types of memory - RAM and ROM.

67
Q

What is random access memory (RAM)?

A

Primary memory that can be written to or read from.

68
Q

What is read only memory (ROM)?

A

Primary memory that cannot be written to (changed) and can only be read.

69
Q

What is dynamic RAM (DRAM)?

A

A type of RAM chip that needs to be constantly refreshed.

70
Q

What is static RAM (SRAM)?

A

A type of RAM chip that uses flip flops and doesn’t need to be constantly refreshed.

71
Q

What does volatile mean in terms of memory?

A

Describes memory that loses its contents when the power is turned off.

72
Q

What does refresh mean in electronics?

A

Recharge every few seconds in order to maintain charge.

73
Q

What is a flip flop?

A

An electronic circuit with only two stable conditions.

74
Q

What is latency in a system?

A

The lag in a system; for example, the time it takes to find a track on a hard disk.

75
Q

What does a temperature sensor measure?

A

It measures the temperature of the surroundings and can control or monitor temperature in various settings such as greenhouses and heating systems.

76
Q

What does a moisture sensor measure?

A

It measures water levels in soil and can monitor moisture levels in food processing factories.

77
Q

What does a humidity sensor measure?

A

It measures the amount of water vapor in the air and can monitor humidity levels in greenhouses and factories.

78
Q

What is the function of light sensors?

A

They switch street lights on or off and can automatically turn on car headlights when it gets dark.

79
Q

What is an active infrared sensor?

A

It uses an invisible beam of infrared radiation and detects changes when the beam is broken.

80
Q

What is a passive infrared sensor?

A

It measures the heat radiation given off by objects, such as intruders or temperatures in fridges.

81
Q

What does a pressure sensor do?

A

It generates different electric currents based on the pressure applied and can be used for weighing lorries or measuring gas pressure.

82
Q

What is the purpose of acoustic/sound sensors?

A

They convert detected sound into electric signals and can detect footsteps or dripping liquids.

83
Q

What do gas sensors measure?

A

They measure levels of gases like oxygen and carbon dioxide and produce outputs that vary with gas concentrations.

84
Q

What does a pH sensor measure?

A

It measures acidity through changes in voltages, applicable in soil and chemical processes.

85
Q

What do magnetic field sensors detect?

A

They measure changes in magnetic fields, useful in devices like mobile phones and CD players.

86
Q

What is the function of an accelerometer?

A

It measures acceleration and motion, used in anti-lock braking systems and to change phone orientations.

87
Q

What do proximity sensors detect?

A

They detect the presence of nearby objects, such as switching off a phone screen when held to the ear.

88
Q

What do flow rate sensors measure?

A

They measure the flow rate of liquids or gases, used in respiratory devices and gas flow measurement.

89
Q

What do level sensors monitor?

A

They monitor liquid levels using ultrasonics or capacitance, applicable in tanks and leak detection.

90
Q

What is the difference between monitoring and control applications ?

A

Control Applications: If the new data is outside the acceptable range, the computer/microprocessor sends signals to control valves, motors, etc. The output from the system affects the next set of inputs from the sensors ( Feedback Loop )
Eg: Street Lighting, Anti-Lock Braking Systems ( Cars ), Central Heating Systems, Chemical Process Control, Greenhouse Environment Control.

Monitoring Applications: If the new data is outside the acceptable range, a warning is sent to a screen or an alarm is activated. The microprocessor/computer has no effect on what is being monitored — it is simply watching the “process”.
Eg: Security Systems, Monitoring of Patients in a Hospital