Bits and Bobs Flashcards

1
Q

Why do we use Hexadecimal?

A
  • Simpler to remember than binary
  • Quicker to write
  • Less room for error (fewer characters)
  • Easy enough to covert
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Where do we see Hexadecimal?

A

On the firmware

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

Where do we see Binary?

A

Hardware

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

Where do we see Python?

A

Software

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

What does ASCII Stand for?

A

American Standard Code for Information Interchange

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

How many bits does ASCII use?

A

7 bits usually, to encode 128 characters

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

Why isn’t 8-bit ASCII still not enough?

A

It can encode 256 characters, but not enough for characters in other languages

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

How do bitmap images make up an image?

A

Each pixel (picture element) is given a binary value which is assigned to a colour

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

What would happen if you increase the number of bits in a bitmap image?

A

The more bits, the more colour combinations and the better the image will look

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

What is Bit/Colour Depth?

A

The number of colour combinations/amount of colours that can be seen

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

How to calculate image size?

A

Colour Depth x Resolution (Width x Height)

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

How many bits does UNICODE use?

A

16 bits, 136,755 characters

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

If you use more bits per sample of audio…

A

It means that there are more options for the height of the wave (increases sample RESOLUTION), meaning that it can be more accurately measured when converting analogue sound to digital. However, it does increase the file size of the image

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

What is sample rate measured in?

A

Hertz (Hz)

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

So in sample rate, what does 1Hz mean?

A

1 Sample per second

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

What is another word for Sample Rate?

A

Frequency

17
Q

What does the frequency affect in audio?

A

It affects the level of detail in the digital representation

18
Q

How to measure the file size for sound?

A

Sample resolution x Sample rate x Seconds

19
Q

How to calculate the image size?

A

Width x Height (Pixels) - Resolution

20
Q

What does lossy compression in sound mean?

A
  • Permanently removes some data in order to compress
  • Then creates a file with the remaining data and uses algorithms to guess lost data
  • The uncompressed data will not be the same as the original, Quality will be removed from the upper and lower frequencies
21
Q

Lossy Compression in an Image?

A
  • Some data is permanently removed
  • Bit Depth is lowered (Similarly coloured pixels will be made the same colour)
  • Smaller file size, but loss of quality
22
Q

Lossless Compression?

A
  • No data is permanently removed
  • Just finds a better way of saving storage, by grouping repeated data together in Run Length Encoding
23
Q

Huffman trees?

A
  • Analyses the frequency at which characters in a text are used
  • Characters are placed in a binary tree, where the most frequently used are placed near the top
  • It is a representation of an algorithm that compresses data without losing it
24
Q

What does the Operating System manage?

A
  • Manages how programs use RAM
  • Manages Peripherals
  • Manages Applications
  • Provides Security
  • CPU Management
25
Q

Examples of OS?

A

Windows, IOS

26
Q

RAM?

A
  • Can be read from and written to
  • Fast Access
  • Contains things rnnn
27
Q

ROM?

A
  • Data that needs to be permanently held in memory
  • (BIOS)
28
Q

When is virtual memory used?

A

When RAM is filled up, it is uploaded to into secondary storage (Virtual Memory), but the access will be smm slowerrrrr

29
Q

What affects CPU speed?

A
  • Number of Cores
  • Clock Speed
  • Cache Size
30
Q

Embedded Systems?

A
  • Has a single microprocessor
  • Carries out very specific tasks
  • Bespoke operating system
  • No Secondary Storage
  • Program held in ROM
  • RAM is used to accept user input