Topic 1 -Data rapresentation Flashcards

(48 cards)

1
Q

what is denary

A

a base 10 number system with 10 digit

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

why do computers use binary

A

computers can only undestand binary as it is the simplest language and computers can’t count double figures

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

what is hexadecimal

A

it is a number system which uses base 16
As we only have 10 digits, it uses 0-9 and then letters A to F(represent 10 to 15)

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

why is hex good

A

Easier to read and interpret
It uses fewer digits to represent the same value
Less likely that digit will be written down incorrectly

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

how is data processed

A

using logig gates and stored in registers

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

what is analogue data and digital data

A

contineous data, data that has only 2 values

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

0+0 in binary

A

0

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

0+1 in binary

A

1

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

1+1 in binary

A

10

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

1+1+1 in binary

A

11

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

what is an overflow error

A

result of an addition is too large for the number of bits the computer works with

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

when will an overflow error occur

A

if the value is greater than 255 in an 8 bit register

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

how do you multiply in binary

A

to multiply by 2 all digits shift one place to the left

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

how do you divide in binary

A

to divide by 2 all digits shift one place to the right

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

conversion from hex to denary

A

Multiply the left-hand digit by 16, then add the units

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

Denary to hex conversion

A

Divide the denary number by 16 to get the number of 16s (the left-hand hex digit)
The remainder gives you the units

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

Binary to hex conversion

A

Convert each nibble into its hex value and rejoin

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

Hex to binary conversion

A

Split the two hex characters

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

what are check digits

A

an additional digit at the end of a string of other numbers designed to check for mistakes in input or transmission

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

formula for Determining the number of combinations

A

2n where n = the number of bits

21
Q

what is a character set

A

complete collections of characters

22
Q

what does ASCII stand for

A

american standard code for infomation interchange

23
Q

what is each character on keyboard rapresented by?

A

binary number

24
Q

what happen when you press a character on the keyboard

A

number is sent to the CPU which will check the ASCII table

25
how many bits did the ASCII use?
7, thiis allows 128 different character to be rapresented
26
how many bits does the ASCII use now?
8, 7 was to little
27
what is unicode
16 bits, more than enough for every language
28
how can sound be rapresented as binary in a computer
sound is captured, usualy by a microphone and converted into a digital signal
29
what is a picture
series of pixels that are cnverted into binary, which is processed by a computer
30
what is the resolution
number of pixels in image
31
what is the colour depth
number of bits used to rapresent each colour
32
when do file size and quality increase
as resolution and colour depth increase
33
how can each pixel be rapresented
by a bit
34
main drawback of using high resolution
increase in file size
35
what is a bit
a single 0 or 1
36
what is a nibble
4 bits, half a byte
37
byte
8 bits
38
1 KB
1000 BYTES
39
1 MB
1000 KB
40
1 GB
1000 MB
41
1 TB
1000 GB
42
1 PB
1000 TB
43
formula for calculating the size of a sound file is
Sample rate x Sample resolution x Duration
44
what is lossy compression
always results in a loss of data . Data is permanently removed from the file to aid in compression. Reduces quality but still viewable, gest rid of redundacy
45
what is losless compression
Lossless compression has no loss of data. When a file that has been compressed using lossless compression is decompressed, it will be identical to the original
46
example of losses
JPEG MP3
47
examples of losless compression
PNG, zip files
48
what is run lenght encoding
t’s a common type of lossless compression. it works by finding “runs” of repeated bit patterns, and replacing them with a single instance of the pattern and a number that specifies how many times the pattern is repeated