OCR GCSE ComSci glossary of terms Flashcards

1
Q

Abstraction

A

The act of filtering out unimportant aspects aspects of a complicated problem and concentrating on only the aspects that are important.

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

Accumulator (Acc)

A

a REGISTER in the PROCESSOR that stores data from calculations as they are taking place, before results are sent back to the CACHE or RAM

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

Adress

A

The location of a BYTE of MEMORY. Some SECONDARY STORAGE devices can have multiple TERABYTES of memory- each byte will have an address.

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

Adware

A

A piece of MALWARE that, once installed on a COMPUTER, will show adverts or other spam to the user.

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

AI

A

Artificial Intelligence- the next generation of COMPUTER PROGRAMS that are so advanced they seem to be capable of independent thought and reasoning.

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

algorithm

A

A set of step-by-step instructions for solving a problem or completing a task.

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

Alpha-testing

A

Early-stage testing of a program by it’s developers to find BUGS and issues that need fixing.

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

ALU

A

Arithmetic & Logic unit: the part of the PROCESSOR that performs calculations, comparisons and logic.

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

Analogue

A

Representing DATA as a continuous quantity, e.g. recording a sound as a wave on a record or magnetising tape in a cassette.

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

Analogue-to-digital converter

A

A device that takes an ANALOGUE signal, e.g. a sound wave, and converts it to a DIGITAL recording.

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

Anti-malware

A

A program usually included in an OPERATING SYSTEM’S UTILITY SYSTEM SOFTWARE designed to protect a COMPUTER against MALWARE.

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

Application Layer

A

The first layer of the TCP/IP PROTOCOLS. Contains information about the APLICATION the PACKET of data
is for, e.g. email, web browser, file transfer etc.

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

Application software:

A

PROGRAMS installed on a COMPUTER such as email programs, web browsers or games. They rely on the OPERATING SYSTEM and SYSTEM MANAGERS for resources to run.

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

Append

A

To add data to something, especially LISTS, ARRAYS and TEXT FILES.

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

Argument

A

A piece of DATA given to a SUBROUTINE to use in place of a PARAMETER. The subroutine must be CALLED with the
same number of arguments as the number of parameters it is coded with.

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

Arpanet

A

The precursor to the INTERNET, built in the 1960’s. It became the internet when it switched over to using the TCP/IP PROTOCOLS in 1983.

17
Q

Array

A

A structure that contains many items of data, often of the same type. The data is INDEXED so that a particular item
can be easily found. An alternative to arrays are LISTS, which work in a similar way.

18
Q

ASCII

A

American Standard Code for Information Interchange, a 7-bit CHARACTER SET used by all devices for representing text in COMPUTERS. See also EXTENDED ASCII & UNICODE

19
Q

Assembler

A

A type of TRANSLATED that converts ASSEMBLY into MACHINE CODE. OFTEN A HIGH-LEVEL PROGRAMMING LANGAUGE’S translator will first convert code into assembly, before using an assembler to convert into machine code.

20
Q

Assembly

A

A LOW LEVEL PROGRAMMING LANGUAGE similar in structure to MACHINE CODE, but which uses MNEMONICS in place of OPCODES. Assembly is converted into machine code by an ASSEMBLER.

21
Q

Audio file

A

A FILE that stores sound. The size of the file is calculated by Duration x Sample FREQUENCY x BIT DEPTH x CHANNELS

22
Q

Authenticate

A

The logging in to an account with a username and password. Note that this does not confirm someone’s identity- it just means they know the account details.

23
Q

Back-door access

A

When MALWARE that has infected a COMPUTER creates a connection for a HACKER to access the COMPUTER’S FILES and sensitive information without authorisation.

24
Q

Backup

A

COMPUTER FILES saved elsewhere in the event of a computer failure. Backups can either be full or incremental. Backups often occur in the CLOUD. Backing-up is part of the UTILITY SYSTEMS SOFTWARE.

25
Q

Bandwidth

A

A measure of the speed of data transmission across a NETWORK connection. Measured in MegabitsPerSecond (MbPS)

26
Q

Beta-testing

A

Testing done by a select group of individuals when the program is almost ready to be published. Done to give feedback to a PROGRAM’S developers about how well it performs.

27
Q

Binary

A

A base-2 counting system that uses only two digits
(BITS), 0 and 1.

28
Q

BINARY SEARCH

A

An ALGORITHM that searches through a LIST of DATA to find a search criteria. It will only work on a list that has been sorted first, either with the BUBBLE, INSERTION or MERGE sort algorithm. Binary search looks at the middle element of the list, discards the half that does not contain the search criteria and repeats until it has been found.

29
Q

BIOS

A

Basic Input/Output System: ROM that is run on COMPUTER start-up. Its main purpose is to load the OPERATING SYSTEM.

30
Q

Bit (b)

A

a BINARY digit; 0 or 1.

31
Q

Bit depth

A

How many BITS are used to encode a sound wave’s
amplitude. The higher the bit depth, the more accurately a
sample can be represented

32
Q
A