Storage And Data Organisation Flashcards

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

Storage size order

A

Bit,nybble,byte,kilobyte,megabyte,gigabyte,terabyte,petabyte,exabyte,zettabyte,yottabyte

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

How many bits in a nybble?

A

4

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

How many megabytes in a gigabyte?

A

1024.
Divide by 1000

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

How many bits in a byte?

A

8

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

What is lossy compression?

A

With lossy compression, some data is removed and discarded, thereby reducing the overall amount of data and the size of the file.

An image can be compressed by reducing its colour depth.This reduces the range of colours that the image contains. In practice, this results in an averaging of shades of colours.

For example, a very light shade of green could be averaged with a not so light shade - the very light shade might be discarded and the pixels affected by it re-coloured with the darker shade.

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

What are some lossy standards?

A

JPEG

MPEG- file format compresses audio and video, making it more suitable for streaming media

MP3-lossy format for audio including music

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

What is lossless compression?

A

With lossless compression, files are reduced in size without the loss of data. However, lossless compression does not usually achieve the same file size reduction as lossy compression.

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

What is a one dimensional array?

A

Consists of a fixed number of elements of the same data type, stored in contiguous memory locations.

Computers tend to count from 0, so in the example above ‘Ivan Weber’ is 0, ‘Sue Thompkins’ is 1, and so on. This would be referenced in a program or pseudocode using the name of the array, in this case ‘Employees’, with the index in square brackets.

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

What is a 2 dimensional array?

A

a collection of data elements arranged in a grid-like structure with rows and columns

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

Key fact on arrays

A

A one-dimensional array can store only a single item of data about each record in the array. A two-dimensional array can store multiple items for each record.

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