4 - Data Representation Flashcards

Note: Look at WJEC Knowledge organiser for diagrams of the topics discussed. Link: https://drive.google.com/file/d/1bJeC2zswFSr29Z2BDrv8i2GYk_qtPnhD/view

1
Q

What is Denary?

A

Denary is a base 10 numbering system, its the most common form of numbering system used in everyday

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

What is Binary?

A

Binary is a base 2 number system. Uses digits 0 and 1 only

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

What is Hexidecimal?

A

Hexidecimal is a base 16 number system.
Uses digits0 – 9 and characters A(10), B(11), C(12),
D(13), E(14) and F(15)
The notation is used as shorthand for binary numbers to avoid errors

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

Explain Binary Overflow

A

When the number is too large to be stored by the register, the left most bit cannot be stored and therefore cannot be counted.

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

How do you shift Binary digits left?

A

To shift binary digits left by a certain amount of places (x), you could either move all the digits left x amount of times. Or you could times it by 2 to the power of x

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

How do you shift Binary digits right?

A

To shift binary digits right by a certain amount of places (x), you could either move all the digits right x amount of times. Or you could divide it by 2 to the power of x

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

What is a Pixel?

A

A Pixel is a small coloured dot on a computer
display (short for picture elements).

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

What is a Bitmap?

A

Bitmaps are images are stored as an array of pixels.

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

What are Vectors?

A

Vectors are images that do not store the data by
pixels, but are a set of instructions for
drawing a geometric shape.

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

What is the Sample Rate?

A

The Sample Rate is the number of audio samples captured every second

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

What is the Bit rate?

A

The Bit rate is the number of bits used per second of audio

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

What is the Bit depth?

A

The Bit depth is the number of bits available for each clip

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

What is Metadata?

A

Metadata is a set of data that describes and gives information about other data

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

How is a colour Bitmap stored?

A

A colour bitmap image is stored using a longer binary number that represents how much red, green and blue (RGB) is required in the colour of each pixel to produce different colours.

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

How is sound stored?

A

Sound is converted into a digital signal by a process called sampling. This is where hardware, such as a microphone, measures the level of sound many times per second and records this as binary digits.

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

Give 3 Examples of Metadata

A

Genre – the genre that the sound file belongs to
Date Created / Year – the date the graphic was taken
Location – the location where the graphic was taken
Size – the original size of the file
Dimensions

17
Q

What is a Character?

A

A Character is a letter, digit, space, punctuation mark or various other keyboard symbols.

18
Q

Define a Character Set

A

A Character set is a table that maps a character with a unique binary number.

19
Q

Explain Data Structures

A

Data Structures are specific ways of organising
data within memory so it can be processed efficiently.

20
Q

What is a Record?

A

A Record is a data structure of related data of different data types

21
Q

What is a Primary Key?

A

A primary Key is a unique identifier for each record

22
Q

What is an Array?

A

An array is a data structure that can hold a fixed number of data items, which must be of the same data type

23
Q

What is an Integer?

A

An Integer is a whole number, postive or negative

24
Q

What is a Real?

A

Reals are numbers including a fractions or decimal points

25
Q

Explain what a boolean data type is

A

A boolean data type is either true or false

26
Q

What is a String?

A

A String is a sequence of characters

27
Q

What is Validation?

A

Validation ensures hat data entered is reasonable. For example a 30 character limit on a first name