Section 3 Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Binary base?

A

Binary has base 2 of just two numbers 0 and 1
0=off 1=on

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

State all the numbers of binary

A

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

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

Denary base?

A

Base 10, 0–9

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

Hexadecimal numbers

A

0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F

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

Hexadecimal base?

A

Base 16 numbers 0-F

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

What do the letters starting from A-F represent?

A

10,11,12,13,14,15

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

Binary to hexadecimal

A

Split eight bit binary into 2 parts and workout the 8421 number for each and put them together

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

Hexadecimal to binary

A

Do same as we would for the other way round except find values of them in binary

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

Decimal number into Hexadecimal

A

Divide the number by 16 for 1 hex number then use the remainder as the other hex number

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

Hexadecimal into decimal number

A

Multiply left number by 16 right number 1

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

Why use Hexadecimal?

A

Easier to remember and easier to read than binary

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

Hexadecimal is used to represent:

A

-Colour values in photo editing software and HTML
-MAC addresses
-Memory address locations in assembly language

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

Binary arithmetic

A

1+1=0 CARRY 1
1+0= 1 SAME OTHER WAY ROUND
0+0=0
1+1+1= 1 CARRY 1
ETC

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

Binary Shift

A

Is when a binary number and all its bits are moved a certain number of places left or right
A shift left is multiplied by 2

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

How many characters does an ASCII set have?

A

contains 128 each using 7 bits

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

What is Bitmap image?

A

made up of picture elements in pixels

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

What is a Pixel?

A

Represents smallest identifiable area of an image, each appearing as a square of a single colour

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

Image size

A

Width x Height

19
Q

Colour depth

A

in bits per pixel
considering the number of colours
2 colours= 1 bit per pixel. 1 0
4 colours= 2 bit per pixel. 01 10 11 00

20
Q

As number of bits per pixel increases so does the …….

However this significantly increases the …. ….

A

Quality(be able to see better with naked eye)

file size

21
Q

How to calculate file size:

A

Width in pixels x height in pixels x colour depth

Dividing by 8 will give the size in bytes

22
Q

Increasing number of pixels in image will also increase its ….

A

Size

23
Q

Density of pixels in same sized area

A

Resolution

24
Q

More pixels per inch(PPI)
the effect is

A

Smooth edges and improve overall quality
Increasing size of image file
possible to enlarge the image without visible loss of quality
improved resolution comes at the expense of either increasing the number of pixels in an image(increasing file size) or reducing the pixel size and therefore the visible size of the image

24
Q

Analogue sounds

A

digitally recorded in binary

25
Q

to record sound

A

amplitude or height of sound wave emitted must be measured and recorded at regular intervals

26
Q

Frequency or sampling rate

A

How often height is recorded

27
Q

bit depth or sample resolution

A

accuracy to which the height is recorded
affects file size and quality of sound played back

28
Q

duration of recording affects the …. ….

A

File size

29
Q

What is Sampling rate measured in?

A

Hertz(hz)
e.g. CD quality playback is recorded at 44.1 kHz

30
Q

Compression software

A

Uses algorithms to remove repeated or unnecessary data

31
Q

Advantages of compression software

A

-reduces size of file on disk (useful for when there are things like email attachment limits)
-useful for data over internet(smaller files transported in less time)-meaning takes less time to download

bitmap is uncompressed

32
Q

Lossy compression

A

Lossy compression is a form of data compression that uses inexact approximations and partial data discarding to reduce the size of a file.
Lossy compression is used to store, handle, and transmit content more efficiently,

33
Q

Lossless compression

A

Lossless compression is a type of media compression that shrinks a file’s size without any quality loss. A file shrunk with lossless compression is indistinguishable from the original.

34
Q

Lossy formats

A

JPG, MP3, WMV, MPG

35
Q

Lossless formats

A

TIF, PDF, GIF, PNG, MOV, ZIP

36
Q

ADV Lossy

A

Smaller file sizes
Least transmission time
Reduces internet traffic and collisions

37
Q

DISADV Lossy

A

Detail is permanently lost

38
Q

Example Lossy

A

Music Streaming
Online images and Video images
Image libraries on devices or in the cloud

39
Q

ADV Lossless

A

Original quality is preserved/no info loss

40
Q

DISADV Lossless

A

Less significant reduction in the file size

41
Q

Example Lossless

A

Text documents
Electronic books
High resolution print documents

42
Q

Run length encoding(RLE)

A

Data particularly image data, can be represented using frequency/ data pairs. E.g. a black and white 5x5 image with a colour depth of i may be represented by the binary string:
00000111: represented as “five zeros three ones”