Topic 13: Low Level Operations (Representing Text and Whole Numbers) Flashcards

1
Q

Binary means

A

base 2, only two digits are possible and these are 1 or 0

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

What are the three reasons computers use binary?

A
  • All computers are 2 state machines.
  • Arithmetic rules are simpler
  • Circuitry of computers less complex to construct
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does it mean by computers being two state machines?

A

In their simplest form they represent a 1 by a voltage of 5v passed across a wire(on) and no voltage as a 0 (off)

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

A bit is

A

a binary digit i.e. 1 or 0

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

Byte is

A

8 bits (bits are stored in groups of 8)

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

Kilobyte (Kb) is

A

1024 bytes

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

Megabyte (Mb) is

A

1024 Kilobytes

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

Gigabyte (Gb) is

A

1024 Megabytes

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

terabyte (Tb) is

A

1024 Gigabytes

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

Petabyte (Pb) is

A

1024 Terabytes

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

A character is an

A

item of text. 1 byte = 1 letter

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

ASCII stands for and is

A

American Standard Code for Information Interchange and is coding used to store each character

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

ASCII can be broken down into 4 groups of character sets, these are;

A
  • Letters: a,b,Z
  • Numbers: 0,7,2
  • Symbols: £,$,*
  • Control Characters: shift, space, enter
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Control characters also known as

A

invisible characters or non-printable characters do not appear on screen but will have an effect

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

Integers are

A

numbers with no fractional part. e.g. 4, -2

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

Depending on its size an integer will be stored in its

A

binary form using 8 bytes or 16 bytes.

17
Q

An example of storing the number 37 in binary would be:

A

128, 64, 32, 16, 8, 4, 2, 1

37
=32+5
=32 + 4 + 1
= 00100101

18
Q

All computer programs consist of a set of instructions. For the computer to understand the instructions they must be written in

A

binary code, this binary code is called machine code.