Section 3 Flashcards

(43 cards)

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 ….

23
Q

Density of pixels in same sized area

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
Analogue sounds
digitally recorded in binary
25
to record sound
amplitude or height of sound wave emitted must be measured and recorded at regular intervals
26
Frequency or sampling rate
How often height is recorded
27
bit depth or sample resolution
accuracy to which the height is recorded affects file size and quality of sound played back
28
duration of recording affects the .... ....
File size
29
What is Sampling rate measured in?
Hertz(hz) e.g. CD quality playback is recorded at 44.1 kHz
30
Compression software
Uses algorithms to remove repeated or unnecessary data
31
Advantages of compression software
-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
Lossy compression
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
Lossless compression
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
Lossy formats
JPG, MP3, WMV, MPG
35
Lossless formats
TIF, PDF, GIF, PNG, MOV, ZIP
36
ADV Lossy
Smaller file sizes Least transmission time Reduces internet traffic and collisions
37
DISADV Lossy
Detail is permanently lost
38
Example Lossy
Music Streaming Online images and Video images Image libraries on devices or in the cloud
39
ADV Lossless
Original quality is preserved/no info loss
40
DISADV Lossless
Less significant reduction in the file size
41
Example Lossless
Text documents Electronic books High resolution print documents
42
Run length encoding(RLE)
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"