Search Header Logo
N5 Computer Systems

N5 Computer Systems

Assessment

Presentation

Computers

10th Grade

Easy

Created by

Sarah Lyon

Used 41+ times

FREE Resource

17 Slides • 27 Questions

1

N5 Computing Science

Computer Systems

By Miss Lyon

2

Computer Systems

  • Data Representation ​

  • Computer Structure

  • ​Security Precautions

  • ​Environmental Impact

media

3

Using 8-bit extended ASCII to represent text in a computer system.

Text

Converting binary numbers to denary and vice versa

Describing ​floating point representation

Numbers

Data Representation

4

Binary to Denary

Each bit in a binary number has a place value. The right-most bit always has the value - 1. Each bit after is found by doubling the value on the right.

Take your 8 bit binary number and place under each of the column headings. Add up the values with a 1 in that column.

media

5

Multiple Choice

What denary number is being represented in binary? 0000  1010 

1
6
2
8
3
10
4
12

6

Multiple Choice

What is 1111 1111 in denary?

1

225

2

244

3

255

4

222

7

Denary to Binary

Begin with the same column headings (place values)

Then determine if the denary number greater than or equal to the place value

​Yes:

  • enter a 1 below the place value

  • subtract the place value from the denary number - this is the remainder

No:​

  • enter a 0 below the place value

Repeat these steps working from left to right until the remainder equals 0

media

8

Multiple Choice

How is the number 5 represented in binary?
1
00000001
2
00000011
3
00000101
4
00001001

9

Multiple Choice

How is the number 128 represented in binary?

1

1000 0000

2

0000 0001

3

1111 1111

4

1100 0000

10

Floating Point Representation​

Real numbers are numbers with a decimal point.

To store a real number the computer moves the decimal point to the left hand side.

The number is then stored in 2 parts, the mantissa and the exponent.

media

11

Multiple Choice

0.100101 x 25

What is the mantissa?

1

100101

2

2

3

5

12

Multiple Choice

0.100101 x 25

What is the exponent?

1

100101

2

2

3

5

13

Extended ASCII (8 bit)

Extended ASCII uses 8 bits to represent each character and can represent 256 characters.

  • ​Some characters are printable (A, b, !, 2)

  • Some characters are control (​ctrl, backspace, escape)

  • You can calculate the storage requirement of a word by assigning 8 bits to every character​

    E.g. DOG 3 characters x 8 bits = 24 bits

14

Multiple Choice

This is a printable character

1

shift

2

alt

3

delete

4

A

15

Multiple Choice

How many bits are used per character in extended ASCII?

1

6

2

8

3

7

4

4

16

Multiple Choice

How many bits are required to store the word HELLO ?

1

5 bits

2

40 bits

3

8 bits

4

48 bits

17

Describe common vector objects and attributes

Graphics - Vector

Describe how bitmapped method of graphics representation

Graphics - Bitmap

Data Representation

18

Bitmapped Graphics

  • A bit-mapped graphic is stored as a 2D array of pixels

  • The resolution of a bit-mapped graphic is its total number of pixels

  • The colour of each pixel is stored as a binary value

  • The bit depth of the image is the number of bits used to store each colour - as bit-depth increases, file size increases

media

19

Vector Graphics

​Objects:

  • rectangle

  • ellipse

  • line

  • polygon

media

​Attributes:

  • co-ordinates

  • fill colour

  • line colour

​​

Vector graphics represent images using shape objects.

Each object has attributes which describe how it is to be drawn.

20

Multiple Choice

An image made up of pixels
1
Bitmapped
2
Vector

21

Multiple Choice

Line colour, fill colour, x/y coordinates are vector...

1

attributes

2

objects

3

things

4

items

22

Multiple Choice

An advantage of using a bitmap graphic

1

can be edited at pixel level

2

they can be pixelated

23

Multiple Choice

Question image

What vector object is this an example of?

1

circle

2

ellipse

3

line

4

rectangle

24

Describe the purpose of computer buses:

  • data bus

  • address bus​

Buses

Describe the purpose of processor components:

  • ALU

  • Control Unit

  • ​Registers

Processor

Computer Structure

25

Processor Components

Manages the flow of data around the computer, sends control signals to other parts of the system

Control Unit

Arithmetic and Logic Unit - carries out any calculations, comparisons and logic

ALU

Registers

Fast temporary storage locations on the processor,

stores data being used by the CPU

26

Multiple Choice

Which of the following is not part of the processor?

1

ALU

2

Control Unit

3

Registers

4

RAM

27

Multiple Choice

Which part of the processor stores data?

1

ALU

2

Registers

3

Control Unit

4

RAM

28

Multiple Choice

Which part of the processor carries out comparisons

1

Control Unit

2

Arithmetic and Logic Unit

3

Registers

4

RAM

29

Multiple Choice

Which part of the processor sends out control signals?

1

Control Unit

2

Arithmetic and Logic Unit

3

Registers

4

RAM

30

Multiple Choice

Which part of the processor is responsible for carrying out mathematical calculations

1

ALU

2

Control Unit

3

CPU

4

Registers

31

Buses and Memory

Each memory location has its own unique address which is used by the address bus to read/write data to the correct place.

Memory Locations

  • Carries data to and from memory to the processor

  • is bi-directional because data can travel in both directions

Data Bus

Address Bus

  • Tells memory which memory location is being read from and written to

  • only goes in one direction

32

media

33

Multiple Choice

What bus is used to carry data to and from the processor from memory?

1

Data Bus

2

Control Bus

3

First Bus

4

Address Bus

34

Multiple Choice

This is used to carry the unique memory location of data from the processor to memory

1

Address Bus

2

Control Bus

3

Data Bus

4

First Bus

35

Translators

Translators (interpreters and compilers) translate high level language code to binary (machine code)

Compiler: translates in one go.

Advantages:

  • Program only needs to be compiled once

  • The compiler does not need to remain in memory once compiled, as the object code can run independently

Disadvantage:

  • Harder to debug because all of the errors are reported once the program has been compiled

Interpreter: translates one line at a time.

Advantage:

  • Errors are flagged after each line has been interpreted making debugging easier

Disadvantages:

  • Slower - statements in a loop are translated repeatedly

  • Interpreter must remain in memory to allow the program to run

36

Multiple Choice

What is this description of " this translates the whole program only after every line has been written"

1

Compiler

2

interpreter

3

translator

4

HLL

37

Multiple Choice

Translators are used to convert High Level Language code to Machine Code

1

True

2

False

38

Multiple Choice

Machine code is another name for...

1

binary

2

High Level Language

3

Python

4

Java

39

Multiple Choice

Which of the following is NOT an example of a high level language

1

binary

2

Python

3

Java

4

Visual Basic

40

Encryption is the process of scrambling data so that it is unreadable by any unauthorised person.

​A key is requried to decrypt the data

Encryption

A firewall protects a network against unauthorised access by monitoring network traffic and deciding what gets through

Firewalls

Security Precautions

41

Multiple Choice

What is the name of the security precaution that makes data unreadable to anyone without the key?

1

firewall

2

encryption

3

anti-virus

4

encipher

42

Fill in the Blanks

Type answer...

43

Environmental Impact

Energy Use

Energy use of computer systems can be reduced through:

  • ​monitor settings

  • ​power down settings

  • ​computers on stand-by

44

Multiple Choice

Which of the following would not be a method of saving energy

1

using a screensaver

2

turning down the brightness on the monitor

3

activate stand by mode

4

use power saving settings on the hard drive

N5 Computing Science

Computer Systems

By Miss Lyon

Show answer

Auto Play

Slide 1 / 44

SLIDE