Alevel OCR CompSci flashcards

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

1/274

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.

275 Terms

1
New cards

Arithmetic and Logic Unit (ALU)

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

2
New cards

Control Unit (CU)

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.

3
New cards

Register

Tiny areas of extremely fast memory located in the CPU normally designed for a specific purpose, where data or control information is stored temporarily.

4
New cards

Program Counter (PC)

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

5
New cards

Accumulator (ACC)

A special register within the ALU. It is used to hold the data currently being processed by the central processor. Any data to be processed is stored temporarily in the accumulator, the results ending up back in the accumulator being stored in the memory unit.

6
New cards

Memory Address Register (MAR)

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.

7
New cards

Memory Data Register (MDR)

A register that contains the data to be stored in the computer storage, or the data after a fetch from the computer storage. It acts like a buffer and holds anything that is copied from the memory ready for the processor to use it.

8
New cards

Current Instruction Register (CIR)

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

9
New cards

Buses

A common physical pathway shared by signals to and from several components of a computer.

10
New cards

Data Bus

The part of the bus which carries the actual information.

11
New cards

Address Bus

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

12
New cards

Control Bus

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

13
New cards

Fetch Decode Execute

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

14
New cards

CPU

The main part of the computer, consisting of the registers, ALU and control unit.

15
New cards

Clock Speed

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.

16
New cards

Cores

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.

17
New cards

Cache

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.

18
New cards

Pipelining

The concurrent decoding of two or more machine instructions. While part of one instruction (for example, an address field) is being decoded, another part of a second instructions (for example, an operation code) may also be decoded.

19
New cards

Von Neumann Architecture

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

20
New cards

Harvard Architecture

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.

21
New cards

Contemporary Architecture

Any modern set of disciplines that describes the functionality, the organisation and the implementation of computer systems.

22
New cards

Complex Instruction Set Computer (CISC)

A design that produces a complicated and expensive integrated circuit capable of performing a large variety of complex instructions. Complex instructions can be executed with few machine cycles.

23
New cards

Reduced Instruction Set Computer (RISC)

A design that produces a simple, cheap integrated circuit with a basic range of machine instructions. Relies on speed as complex instructions take many machine cycles.

24
New cards

Graphics Processing Unit

Designed to rapidly manipulate and alter memory to accelerate the creation of images in a frame buffer intended for output to a display.

25
New cards
26
New cards

Modern GPUs have a highly parallel structure that makes them more effective than CPUs for algorithms where processing of large blocks of data is done in parallel.

27
New cards

Multicore System

Development of CISC architecture with several sets of CPU components in one microprocessor.

28
New cards

Parallel Processor System

The simultaneous use of several processors to perform a single job. A job may be split into a number of tasks each of which may be processed by any available processor.

29
New cards

Input Device

Any peripheral device that can accept data, presented in the appropriate machine-readable form, decode it and transmit it as electrical pulses to the CPU

30
New cards

Output Device

Any peripheral device that translates signals from the computer into a human-readable form or into a form suitable for reprocessing by the computer at a later stage.

31
New cards

Storage Device

Any medium (optical, magnetic, solid state and even paper which holds data or programs

32
New cards

Magnetic Storage

Storage medium which uses surfaces coated with a layer of magnetic material on which data can be stored by magnetically setting the arrangement of the magnetic material. This is done by electromagnetic read/write heads.

33
New cards

Flash Storage

Collection of memory chips that is controlled by its own software to make the collection of chips act like a disk drive.

34
New cards

Optical Storage

Storage medium that uses plastic discs on which the data is stored as patterns on the surface in pits and lands.

35
New cards

Random Access Memory (RAM)

Volatile main memory. Access times are very fast. It can be used in main areas of computing and computing storage. When used as main memory it typically can be thought of as containing the OS, programs in use and the data those programs are using while the computer is running.

36
New cards

Read Only Memory (ROM)

Memory for which the contents may be read by cannot be written to by the computer system. Software in ROM is fixed during manufacturing. It typically holds system boot up instructions. ROM is non-volatile.

37
New cards

Virtual Storage

A means of apparently extending main storage by using backing storage (such as a hard disk) as if it were main memory.

38
New cards

Operating System

Collection of systems software that manages the computer. Usually supplied with the computer. Examples include Windows, Linux, Unix, MacOS, iOS.

39
New cards

Memory Management

The process of organising the flexible use of the computer's main memory.

40
New cards

Paging

The organisation of memory into fixed-sized units, called pages. The immediate-access store is organised as a number of physical pages. The logical pages used by the SPU can be assigned by the memory management unit to any page in physical memory.

41
New cards

Segmentation

Splitting of a large program into a number of smaller segments. Each segment is a complete program that is executed separately. The function of the large program is achieved by running segments consecutively. This allows a large program to be executed on a computer with insufficient memory.

42
New cards

Interrupt

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.

43
New cards

Interrupt Service Routine (ISR)

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

44
New cards

Scheduling

The method by which central processor time is allocated in a multi-access system.

45
New cards

Round Robin (RR)

A scheduling algorithm that deals with each user or task to be processed in turn.

46
New cards

First Come First Serve (FCFS)

A scheduling algorithm that deals with each user or task in the order in which they arrive, this can be thought of as a queue.

47
New cards

Multi Level Feedback Queue

A complex scheduling algorithm that deals with tasks based on a set of priorities and rules across different league tables, jobs in a certain table get promoted up or down their table based on these rules and can then end up in totally different tables if they relegated.

48
New cards

Shortest Job First

A scheduling algorithm that deals with each user or task based on the getting the smaller ones out of the way.

49
New cards

Shortest Remaining Time

A scheduling algorithm that deals with each user or task based on a calculating an estimated time remaining to complete.

50
New cards

Distributed OS

An operating system where the software is spread over a collection of independent, networked, communicating, and physically separate nodes.

51
New cards

Embedded OS

Highly specialised OS designed to control a machine. In contrast to an operating system for a general-purpose computer, an this type of OS is typically quite limited, often running a single application. However, that single application is crucial to the device's operation.

52
New cards
53
New cards
54
New cards

e.g. Washing machine OS

55
New cards

Multi tasking OS

Any type of system that is capable of running or appearing to run more than one program at a time.

56
New cards

Multi user OS

Any operating system designed to allow multiple users to log in and connect to it from different locations / machines at the same time. Specially designed for the sharing of resources such as files, programs or hardware (printers, scanners etc).

57
New cards

Real Time OS

An operating system intended to serve real-time application process data as it comes in, typically without buffering delays.

58
New cards

Basic Input Output System (BIOS)

Part of the operating system that handles the input and output of the computer. It enables the operating system to use the particular features of the hardware being used.

59
New cards

Device Drivers

A computer program that operates or controls a particular type of device that is attached to a computer.

60
New cards

Virtual Machine

An emulator of a particular computer system. Virtual machines operated based on the computer architecture and functions of a real or hypothetical computer, and their implementations may involve specialised hardware, software, or a combination of both.

61
New cards

Intermediate Code

Half-way type of code which is standard across machine types. Runs on a virtual machine.

62
New cards

Application

Any program, routine or procedures (together with their associated documentation) that can be run on a computer system.

63
New cards

Utilities

A systems program that performs some specific task in the operation of the computer, for example file backup, virus checking or a compression program.

64
New cards

Open Source

Software for which the original source code is made freely available and may be redistributed and modified.

65
New cards
66
New cards
  • Open source file types are often able to be opened on many different types of applications.
67
New cards

Closed Source

Often called Proprietary is a type of computer program for which the software code is not shared with the public for anyone to look at or make changes to

68
New cards
69
New cards
  • Closed / Proprietary file types are often only able to be opened if you own a version of the software they were originally made in.
70
New cards

Source Code

Original code typed in by the programmer in the native language. This is the code as it appears before it is compiled or interrupted.

71
New cards

Translator

A program that translates a program written in assembly language into machine code.

72
New cards

Interpreter

Translates and executes a program one statement at a time.

73
New cards

Compiler

A program that translates a high-level language program, source code, into a computer's machine code.

74
New cards

Assembler

A program that translates (assembles) a program written in assembly language into machine code.

75
New cards

Compilation

The translation process that produces an equivalent program in a low-level language. This involves analysing the language structure of the source program, determining if it is valid, and proceeding suitable machine code.

76
New cards

Syntax Analysis

The stage in compilation where language statements are checked against the rules of the language, errors being reported if a statement is not valid.

77
New cards

Code Generation

The stage in compilation that produces a machine-code program that is equivalent to the source program.

78
New cards

Optimisation

The stage of compilation that ensures that the executable program if optimised at least as much as the compiler can predict. e.g. removing reference to unused variables or routines.

79
New cards

Linker

Software tool that allows already compiled object code files or modules to be combined with the compiled program.

80
New cards

Loader

A program that copies an object program held on backing store into main store ready for execution.

81
New cards

Libraries

A collection of pre-compiled routines which can be incorporated into a program.

82
New cards

Software Development Life Cycle (SDLC)

The various stages in designing and implementing a new computer system.

83
New cards
84
New cards

Stages:

85
New cards
  • analysis
86
New cards
  • design
87
New cards
  • implementation
88
New cards
  • testing
89
New cards
  • installation
90
New cards
  • maintenance
91
New cards

Waterfall Model

An earlier abstract description of the system lifecycle where each identified stage of development flows from the previous one and down to the next one. Feedback from each to the previous takes place independently of the forward flow.

92
New cards

Agile Methodologies

Describes the responsive development of a system made of small software modules (often web-based applications) by a group of collaborators who work concurrently and closely under a leader who ensures engineering best practice and delivery of the customer requirements.

93
New cards

Extreme Programming

Type of agile methodology intended to improve software quality and responsiveness to changing customer requirements. It advocates frequent releases in short development cycles, which is intended to improve productivity and introduce checkpoints at which new customer requirements can be adopted.

94
New cards

Spiral Model

An abstract description of the systems life cycle where there are four defined quadrants - planning, risk analysis, use of design methods, client and management evaluation. Once one stage of development has gone full circle, the next please takes place, and so on until completion.

95
New cards

Rapid Application Development (RAD)

A design strategy that includes online development and repeated prototyping and evaluation. It is particularly suited to interactive systems.

96
New cards

Programming Paradigm

To describe an example or pattern. In a Computing context, this means to describe a computational way of doing things. So a Programming _ is a style or way of programming. E.g. Low-Level languages, High-Level languages, Declarative languages are all examples.

97
New cards

Assembly Language

A language which is related very closely to the computer's own machine code.

98
New cards

Machine Code

Set of all possible instructions made available by the hardware design of a particular processor. Closest to pure binary.

99
New cards

Low Level Language

A language which is close to machine code. Related closely to the design of the machine.

100
New cards

High Level Language

A language designed to help a programmer express a computer program in a way that reflects the problem that is being solved, rather than the details of how the computer will produce the solution.