1.4) Organisation And Structure Of Data Flashcards

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

What is bit?

A

Either 1 or 0.

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

Can sound be sampled and stored digitally?

A

Yes.

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

What is the sample rate?

A

Number of audio samples captured every second.

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

What is bit depth?

A

Number of bits available for each clip.

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

What is bit rate?

A

Number of bits used per second of audio.

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

What does ‘metadata’ refer to?

A

‘Data about data’. Key properties that are needed to display image correctly as stored as metadata. Data such as image’s height, width + colour depth.

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

What can a character be?

A

Letter, digit, space, punctuation mark or various other symbols.

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

What is unicode?

A

Standard character set that has combined + replaced many others. Originally extension to ASCII character set + contains many characters used around the world.

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

What are the data types?

A
Integer.
Real.
Boolean.
Character.
String.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is an integer?

A

Whole numbers, positive or negative.

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

What is the ‘real’ data type?

A

Numbers, including fractions or decimal points.

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

What is the boolean data type?

A

True or false.

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

What is the string data type?

A

Sequence of characters.

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

What is a list?

A

Data structure that has data items stored in order originally added to memory. If list made up of set number of data items. If list can very in number of data items then it is a dynamic data structure.

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

What is an array?

A

Data structure that can hold fixed number of data items, which must be of same data type e.g. real. Integer, string etc.

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

What are the data items in an array known as?

A

Elements.

17
Q

What is an array an example of?

A

A static list.