Chapter 1 Data Representation Flashcards

1
Q

What is the Denary Number System?

A

A number system based on 10 thus uses 10 unique values from 0 to 9.

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

What is the Binary Number System?

A

A number system based on 2, thus only has the values 0 or 1.

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

What is the Hexadecimal Number System?

A

A number System Based on the number 16 thus having numbers 0 to 9 and letters A to F.

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

What is a bit?

A

A basic unit of information for computers. The word bit comes from the words “Binary Digit”. Binary means Two . 1 or 0 are the only values

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

What is a byte?

A

8 bits or 2 nibbles

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

Each keyboard character is stored as…

A

A byte
(Example, A=01000001)

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

What does each letter of the hexadecimal number system represent in denary?

A

A= 10
B= 11
C= 12
D=13
E=14
F=15

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

Uses of the hexadecimal number system

A

MAC Addresses
Color codes for HTML
IPv6 addresses
Assembly code
Memory Dumps
Error codes

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

MAC Address

A

Media-Access Control Address is a 48-bit unique number that identifies the device connected to the internet.
(NN-NN-NN-DD-DD-DD)
The first half is the identity number of the manufacturer
The second is the serial number of the device.

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

HTML

A

Hyper-Test Markup Language- is a markup language that is used design, write and develop webpages.

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

What is a Markup Language?

A

A markup language is a language use in the processing, definition and presentation of text ( for example, specifying the color of the text)

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

IP address

A

An Internet protocol address which gives a unique address for a device connected to the internet.

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

Difference between IPv4 and IPv6

A

IPv4 is a 32-bit number written in either denary or hexadecimal
IPv6 is a 128-bit number broken into 16-bit chinks written in hexadecimal.

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

Overflow Error

A

The result of carrying out a calculation that results in a value that is too large for the computer’s allocated word size (8-bit, 16-bit, 32-bit, and so on).

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

Two’s complement

A

A method of representing negative numbers in binary, when applied to the 8-bit system; the leftmost bit (most significant bit) is given the value -128.

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

What is meant by Logical shift?

A

An operation that shifts bits to the left or the right on a register. Any bits that are shifted to the left or right are replaced with zeroes.

17
Q

Character Set

A

A list of characters that have been defined by the computer Hardware and software. The character set is necessary so that the computer can understand human characters

18
Q

ASCII code

A

A character set for all the characters on a standard keyboard and control codes.

19
Q

Unicode

A

A character set that represents all the languages of the world (The first 128 characters are the same as the ASCII code)

20
Q

Sampling Resolution

A

The number of bits used to represent sound amplitude in a digital sound recording.

21
Q

Bit depth

A

The number of bits used to represent the smallest unit in a sound file.

22
Q

Sampling rate

A

Is the number of samples taken per seconds

23
Q

Bitmap images

A

An Image made up of pixels.

24
Q

Color depth

A

The number of bits used to represent the colors of a pixel.

25
Pixel
Derived from the word "picture element", This is the smallest element used to make up an image on a display.
26
Image resolution
The number of pixels in the X-Y direction of an image. (Example 4096x3192)
27
Pixelated (image)
This is the result of zooming into a bitmap image, on zooming out the pixel density becomes so diminished to such a degree that the actual pixels themselves can be seen.
28
Pixel density
The number of pixels per square inch
29
Compression
The reduction of the size of a file by removing repeated and redundant pieces of data.
30
Bandwidth
The maximum rate of transfer of data across the internet. Measured in kilobits per second (kbps) or megabit per second (Mbps)
31
Lossy (file compression)
A file compression method in which parts of the original files cannot be recovered during the decompression process, for example, JPEG, mp3
32
Lossless (file compression)
A file compression method that allows the original file to be fully restored during the decompression process, for example, Run- Length Encoding (RLE).
33
Audio compression
A method of reducing the size of a sound file by using perceptual music shaping.
34
MP3
A lossy file compression method for music files
35
MP4
A lossy file compression method for multimedia files
36
JPEG
From Joint Photographic Expert Group: A form of lossy file compression used with image files that rely on the inability of the human eye to distinguish between certain color changes and hues.
37
Run length Encoding (RLE)
A lossless file compression technique used to reduce the size of text and photo files in particular.