past paper questions Flashcards

1
Q

function of utility software

A

converting files

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

2 items von neumann proposed to store in main memory

A

data
instructions

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

part fo the CPU that semds signals to other components

A

control unit

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

advantages of wireless connectcivity

A

easy to add new device by giving SSID and password
no cable in the way
people can move around without disconnecting

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

penetration testing

A

when networks are put under deliberate attack in oder to identify weaknesses

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

checks carried out during a code review

A

ineffiecient code
logic errors
security vulnerabilities

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

how a router directs data on the internet

A

Reads data to find the address
Has physical connections to at least 2 different networks
Holds a routing table
Stores information about IP
Forwards data

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

latency

A

the amount of time between data being sent and data being recieved

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

how firewall works

A

monitors traffic using a set of rules to decide if data is allowed or not

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

name of email protocol

A

POP3

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

example of low level language

A

assembly language

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

characteristic of low-level language

A
  • each line is 1 instruction only
  • CPU specific so they can manipulate hardware directly
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

how data is stored on optical media

A

laser burns disk which creates pits representing binary

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

how to convert binary to two’s complement

A

flip all the bits and add 1

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

ASCII

A

a standard for representing characters

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

abstraction

A

removing unnecessary data from a problem

17
Q

abstraction

A

removing unnecessary data from a problem

18
Q

decomposition

A

breaks problem down into many sub-problems

19
Q

linear search

A
  • compares each item in a list 1 by 1
  • list doesnt need to be in order
20
Q

binary search

A
  • compares middle item in the list to the target
  • list must be sorted
  • faster than linear search
21
Q

bubble sort

A

sorts all values 1 by 1 by swapping until list is sorted

22
Q

merge sort

A
  • divides list by 2 until each list has 1 item
  • list is then combined in order
  • faster than bubble sort
23
Q

/

A

normal division

24
Q

DIV

A

intiger division

25
Q

MOD

A

mudulus
calculates remainder

26
Q

variables

A

identifiers that hold a value that can be changed

26
Q

variables

A

identifiers that hold a value that can be changed