Fundamentals of Data Representation Flashcards

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

Binary

A

The language of the computer, consisting of 0s and 1s.

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

Bits

A

Individual units of binary, represented as 0 or 1.

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

Real numbers

A

Positive or negative numbers, including fractions and numbers with infinite decimal expansions.

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

Rational numbers

A

The ratio between two integers, can be written as a fraction or decimal.

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

Irrational numbers

A

Numbers with infinite decimal expansions that cannot be represented as fractions.

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

Ordinal numbers

A

Numerical positions used for ordering, such as in enumeration or array pointers.

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

Hexadecimal

A

A number system with 16 digits (0-9, A-F), used as a shorthand for binary.

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

ASCII

A

A character encoding standard that assigns binary values to characters.

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

Nibble

A

A group of 4 bits.

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

Byte

A

A group of 8 bits.

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

Kilobyte

A

1024 bytes.

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

Megabyte

A

1024 kilobytes.

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

Gigabyte

A

1024 megabytes.

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

Terabyte

A

1024 gigabytes.

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

Petabyte

A

1024 terabytes.

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

Real number example

A

A number like -3 or 7.

17
Q

Rational number example

A

A fraction like 1/2 or 3/4.

18
Q

Irrational number example

A

A number with infinite decimal places, like Pi.

19
Q

Ordinal number example

A

The position of a value, like the alphabetical order of characters.

20
Q

Hexadecimal example

A

A number in base 16, like DF.

21
Q

Binary to hex conversion

A

Split the 8-bit binary into 2 nibbles, convert each nibble to denary, then to hex.

22
Q

Hex to binary conversion

A

Split the hex into 2 characters, convert each character to denary, then to binary.

23
Q

Denary to hex conversion

A

Convert the denary to binary, then follow the binary to hex method.

24
Q

Hex to denary conversion

A

Multiply the first hex digit by 16, then add the second digit.

25
Q

Data types

A

Different types of data that can be stored and processed by computers.

26
Q

ASCII value

A

The binary value assigned to a character in the ASCII encoding standard.

27
Q

Binary error

A

Errors that can occur when binary numbers are too long.

28
Q

Binary representation

A

The representation of data using only 0s and 1s.

29
Q

Binary conversion

A

The process of converting data to binary.

30
Q

Binary decoding

A

The process of converting binary back to its original form, such as text.