Section 2 Flashcards

(57 cards)

1
Q

What is a bit?

A

A binary digit - a single 1 or 0

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

What is a byte?

A

A group of 8 bits

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

What is a nibble?

A

4 bits (half a byte)

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

How many bytes are in 1 kilobyte (kB)?

A

10³ bytes

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

How many bytes are in 1 gigabyte (GB)?

A

10⁹ bytes

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

How many bytes are in 1 terabyte (TB)?

A

10¹² bytes

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

How many bytes are in 1 petabyte (PB)?

A

10¹⁵ bytes

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

What is the denary value of binary 10110?

A

22

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

What is the denary value of binary 11111111?

A

255

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

How to convert from denary to binary?

A

Find the highest column heading which can be taken out of the number, and continue

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

Convert denary 128 to binary

A

10000000

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

What happens when adding 1 + 1 in binary?

A

10 (0 in that column, 1 passed to next)

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

What is an overflow error?

A

When a calculation results in a number too large to be stored in the allocated number of bits

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

What happens when you shift a binary number left by 1 place?

A

The number is multiplied by 2

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

What happens when you shift a binary number right by 1 place?

A

The number is divided by 2

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

What is hexadecimal?

A

A base 16 number system using digits 0-9 and letters A-F

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

What does A represent in hexadecimal?

A

10 in denary

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

Why is hexadecimal used in computing?

A

It’s easier for humans to read and remember than long binary strings; each hex digit represents 4 bits

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

What is ASCII?

A

American Standard Code for Information Interchange - a character encoding standard

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

How many bits does standard ASCII use per character?

A

7 bits

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

How many characters can 7-bit ASCII represent?

A

128 characters (2⁷)

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

How many bits does extended ASCII use?

A

8 bits per character

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

How many characters can extended ASCII represent?

A

256 characters (2⁸)

24
Q

Are ASCII codes for uppercase and lowercase letters the same?

A

No - lowercase letters have higher ASCII values than uppercase

25
What is Unicode?
A universal character encoding standard that can represent characters from all world languages
26
How many bits does 16-bit Unicode use per character?
16 bits
27
How many characters can 16-bit Unicode represent?
65
28
What is a pixel?
A picture element - the smallest single point in a digital image
29
What is image resolution?
The number of pixels that make up an image
30
What is colour depth?
The number of bits used to represent the colour of each pixel
31
How many colours can be represented with 1 bit colour depth?
2 colours (2¹)
32
How many colours can be represented with 8 bit colour depth?
256 colours (2⁸)
33
What is the formula for calculating image file size?
(Width × Height × Colour Depth) ÷ 8 bytes
34
What is metadata?
Data about data - information stored about a file such as creation date
35
What could metadata include?
- File type - Time and date of creation - Creator or author of data - File Size
36
What is an Analogue-to-Digital Converter (ADC)?
A device that converts analogue signals (like sound waves) into digital format
37
What is sample rate?
The number of times per second that the amplitude of a sound wave is measured
38
What is sample resolution?
The number of bits used to store each audio sample
39
What is 1 Hertz (Hz)?
1 sample per second
40
What is the formula for calculating sound file size?
(Sample Rate × Sample Resolution × Duration in seconds) ÷ 8 bytes
41
How does increasing sample rate affect sound quality?
Higher sample rate = better quality playback (more accurate representation of the sound wave)
42
How does increasing sample resolution affect sound quality?
Higher resolution = better accuracy (more precise amplitude measurements)
43
What is compression?
Reducing the size of a file to save storage space or reduce transmission time
44
What is lossy compression?
Compression that permanently removes some data from the file
45
What is lossless compression?
Compression where no data is lost and the original file can be perfectly reconstructed
46
Give examples of lossy compression
JPEG (.jpg) - Photos Windows Media Player (.wmv) - Window Media Compression MP3 (.mp3) - Audio Files MPEG-1 & MPEG-2 (.mpg/.mp2) - Video Files (low -resolution on CD/ high-resolution on DVD)
47
Give examples of lossless compression?
ZIP (.zip) - Any files or folders of files Portable Network Graphic (.png) Graphic Interchange Format (.gif) - Good for images with large areas for colour, ideal for web graphics
48
Why would you use lossy compression?
To achieve smaller file sizes when some loss of quality is acceptable (photos
49
Why would you use lossless compression?
When all original data must be preserved (text files
50
What are the benefits of file compression?
Reduced storage space needed; faster transmission over networks; allows large files to be sent as email attachments
51
What is the difference between PPI and DPI?
PPI (pixels per inch) measures screen resolution; DPI (dots per inch) measures print resolution
52
What is the largest number that can be stored in 8 bits?
255 (11111111 in binary)
53
What is a bitmap image?
An image made up of individual pixels
54
What is a vector graphic?
An image made up of lines and shapes with specific properties (not made of pixels)
55
Why can't you calculate with numbers input as strings?
Because the ASCII code for a digit character (e.g. '5') is different from the pure binary value for that number
56
What would metadata about a digital image include?
- Dimensions of the Image - Image Resolution - Colour Depth
57
How many bytes are in 1 megabyte (MB)?
10⁶ bytes