Week 1: Bits, Bytes & Bygone Eras Flashcards

1
Q

What is an ARM CPU?

Where are they mostly found?

A

It’s the most widely used CPU architecture.

They’re found in small devices like mobile phones and also the Rasberry Pi.

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

What’s the difference between binary and hexadecimal?

A

Binary is based on 0’s and 1’s to represent numbers and letters.

Hexadecimal is an abbreviation of binary and is used to represent 16 symbols: 0-9, A-F

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

What are the main computing paradigms?

BTPNEG

A
Batch mode processing (1950s)
Time-sharing 
PC (1980s)
Networking (1990s)
Embedded systems (last 20 years)
GPU Supercomputers (last decade)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What’s driving the evolution of computers?

A

Military, AI, large amounts of data, entertainment (gaming, GPUs)

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

What is Moore’s law?

Why does this not hold true for uniprocessors?

A

That every year computing power doubles.

This is because we keep adding more cores to CPUs, however this has begun to drop off for single core CPUs.

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

What is information for computers?

A

It’s the things we need to know so that we can analyse and convey them.

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

What is computer information made up of?

RMS

A

Representation: how to encode the info for the PC to use it

Manipulation: how we can transform data into other forms

Storage: where we can put the data

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

Binary Information

A

It consists of two states, on-ff or true-false.

This can determine whether we give a voltage or not.

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

Binary Numbers

How are they different to decimal numbers?

A

A number system which consists of 0s and 1s.

Unlike decimal which are base 10, binary numbers are base 2 (to the power of n where n is all real integers)

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

XOR Gate

A

The result is true if x or y is true, but not both.

It gives a result.

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

AND Gate

A

The result is true if x and y are both true.

This gives a carry.

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

OR Gate

A

The result is true if either x or y is true.

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

NAND Gate

A

A combination of an AND and NOT gate.

The result is true when both x and y are false.

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

NOT Gate

A

The result is inverted. Where 0 is a low, it will be turned into a high and 1 is a high, it will be turned into a low.

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

What do boolean operations output?

A

A singular bit

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

Boolean Algebra

A

Algebra with binary and using gates to manipulate bits.