GCSE Computing - Revision questions, deck 1 Flashcards

1
Q

A school has all its computers on a local area network (LAN). What are two benefits of a LAN.

A

Can share files/can work collaboratively on same filesCan share hardware resources/suitable example (Printer)Can access their files from any computer or classroomCan work together from different computers using instant messaging.Centralised deployment of software to all computers

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

When recording a sound file on a computer, the sound needs to be sampled. What is sampling and how is it used when storing sound?

A

Sampling is a method of converting an analogue sound signal into a digital file containing binary numbers. The height and amplitude of a sound wave is measured at regular intervals and converted to binary.

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

What effect does the sampling interval have on the size and quality of the sound file recorded?

A

If the interval is smaller (if you sample more often) you have more data to store, this results in a larger file. However, as the interval is smaller the sound reproduced is closer to the original audio, resulting in a better quality recording.

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

Why is data stored in computers in a binary format?

A

Circuit only needs to check for two states to determine if electricity flowing or not flowing, e.g. on or off (1 and 0). This results in more reliable circuits.

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

Why is the ASCII character set not suitable for representing text in all the languages of the world?

A

ASCII uses 8 bits and so can only represent 255/256 distinct characters. Many more characters are needed for coping with all languages (e.g. Unicode 16bits).

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

What do we mean by the term logic error?

A

The error does not prevent program running, but does result in the program not producing the expected output.

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

What are two functions of an operating system?

A

Provides interfaces between user and computerDetermines look and feel of the computerProvides a platform for software to run on • e.g. application software such as Microsoft word cannot run without an operating system already installed.Manages peripherals used by the system• e.g. Keyboard, MouseManages memory

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

What is open source software?

A

The source code is distributed with the softwareThe customer can modify the source codeThe customer can redistribute the source code (with the same licence/restrictions)

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

What is meant by a database?

A

A persistent (stored in secondary storage so that it can be accessed later) and structured/organised store of data, that allows data to be queried/interrogated.

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

Describe two tools in an Integrated Development Environment (IDE) that can help a user when creating a program?

A

Editor• Allows Jim to enter the program code• Colour coding keywords• Auto-completes code as you type.Compiler• Transforms the written source code into machine code.Debugging tools• Highlights errors in the code• Suggests possible solutions.

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

What is meant by a peer-to-peer network?

A

All computers have equal status, with no central server controlling the network. Data, Files and devices are shared between each other.

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

What is the system cleanup maintenance utility used for?

A

Searches for and deletes files/programs which are no longer used. For example the software utility could delete temporary files, installation files and registry values which are no longer needed.

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

What is the automatic update system maintenance utility used for?

A

Checks on the (software manufacturer’s site on the) Internet for newer versions of programs which are installed. If found it download / installs the software.

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

Convert the denary number 55 into an 8 bit binary number

A

0011 0111

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

Convert the denary number 55 to hexadecimal

A

37

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

State two tasks which are carried out by the CPU when processing data

A

Fetches instructions (from memory)Fetches data (from memory)Decodes instructionsExecutes instructions

17
Q

How do the clock speed and the cache size of a CPU affect its performance?

A

Clock Speed: The higher the clock speed the faster the CPU will run, as this represents the number of fetch execute cycles / instructions the CPU can process in a given time.Cache size The more cache the CPU has the less time is spent accessing memory, resulting in programs running faster. This is because the cache is faster than memory. The cache is also built into the CPU and contains frequently accessed data.

18
Q

What do the initials DBMS stand for?

A

Database management system

19
Q

Describe how instructions are stored in binary?

A

The instruction consists of an operator/op code and an operand. Both the operator and operand are stored as bit patterns. The op code is from a given instruction set and each op code has a unique bit pattern.Opcodes and Operands (Overview)An opcode is short for ‘Operation Code’.An opcode is a single instruction that can be executed by the CPU. In machine language it is a binary or hexadecimal value such as ‘B6’ loaded into the instruction register.In assembly language mnemonic form an opcode is a command such as MOV or ADD or JMP.For example MOV, AL, 34hThe opcode is the MOV instruction. The other parts are called the ‘operands’. Operands are manipulated by the opcode. In this example, the operands are the register named AL and the value 34 hex.

20
Q

Describe two differences between a high-level code and machine code

A

In high level code Instructions use wordsIn machine code instructions are in binary codeHigh-level code is designed to be read by human programmersMachine code is to be read/executed by the computerHigh level code can be portable/translated for different machinesMachine code is specific to a particular machine