Data Representation Flashcards

(14 cards)

1
Q

Common needs

Computer

A

To store and view data

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

Define

Data

A

Units of information.In computing there can be different data types including integers, characters and Boolean. Data is often acted on by instructions.

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

What do computers use to “see” everything?

A

Electrical signals that are on or off, represented by binary numbers

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

Define

Binary

A

A number system that contains two symbols, 0 and a 1.Aslo known as Base 2.

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

True or False

All data that we want a computer to process must be converted to binary?

A

True

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

Why is binary known as ‘Base 2’?

A
  • There are only two digits to select from (1 and 0)
  • When using the binary system, data is converted using the power of two
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Define

Denary

A

The number system most commonly used by people.It contains 10 unique digits 0-9. Aslo known as decimal or base 10.

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

Define

Place value

A

The value of the place or position of a digit in a number

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

Place value

Binary

A

1,2,4,8,16,32,64,128 and so on

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

Place value

Denary

A

1,10,100,1000 and so on

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

How would you work out this decimal value?

1024

A

(1×1000) + (0×100) + (2×10) + (4×1)=1024

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

How would you work out this binary value?

1010 1000

A

(1×128) + (0×64) + (1×32) + (0×16) + (0×8) + (0×4) + (0×2) + (0×1) = 168

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

How to convert from binary to denary

Divide method

A
  1. Divide the number by two
  2. If it is without remainer then add 0 to next place value else add 1 and floor number
    3.Repeat until number == 0, and write answer formally
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Addition rules

Binary

A
  • 0+0=0
  • 1+0=1
  • 1+1=10(for 1+1=2)
  • 1+1+1=11(for 3 ones make 3)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly