返回卡包市场

Fundamentals of Data representation

暂无描述。系统推荐的高质量记忆内容,适合每天坚持背诵学习。

卡片总数: 24内容版本: v3公开卡包更新时间: 8/1/2026

卡片预览 (24 张)

#1
正面 (问题)

Natural numbers (N)

背面 (解答)

The set of positive integers and 0. They can be used as cardinal(counting) or ordinal(ordering) numbers. N = {0, 1, 2, 3, …}.

#2
正面 (问题)

Integers (Z)

背面 (解答)

The set of numbers with no fractional part. The natural numbers are a subset of the integers. {…, -3, -2, -1, 0, 1, 2, 3, …}.

#3
正面 (问题)

Rational numbers (Q)

背面 (解答)

The set of numbers that can be expressed as the ratio of two integers. The integers are a subset of the rational numbers since all integers can be expressed as a ratio with 1. Q = {0, 1/2, 0.75, 0.11111…, 300.5, -42, …}.

#4
正面 (问题)

Irrational numbers

背面 (解答)

Numbers which cannot be expressed as a ratio of two integers, and hence do not lie within the set of rational numbers. {π , √2, e, …}.

#5
正面 (问题)

Real numbers (R)

背面 (解答)

The set of numbers that can represent real world quantities and have an imaginary part of 0. Rational and irrational numbers are all members of the real numbers. R = {π , 1.5, -7, 3/4, 2, 10000000, -11.3432, …}.

#6
正面 (问题)

Ordinal numbers

背面 (解答)

Natural numbers used to describe numerical position or order of objects.

#7
正面 (问题)

Binary

背面 (解答)

A number system that only uses ones and zeros to represent numbers (a base 2 system).

#8
正面 (问题)

Decimal

背面 (解答)

A number system that only uses 10 characters (0 to 9) to represent numbers 9a base 10 system).

#9
正面 (问题)

Hexadecimal

背面 (解答)

A number system that only uses 16 characters (0 to 9 and A to F) to represent numbers (a base 16 system).

#10
正面 (问题)

Number base

背面 (解答)

The number of unique digits used by a particular number system to represent numbers.

#11
正面 (问题)

Bit

背面 (解答)

A binary digit used by computers as the fundamental unit of information.

#12
正面 (问题)

Byte

背面 (解答)

A group of 8 bites.

#13
正面 (问题)

Binary prefix

背面 (解答)

A prefix to a unit representing a power of 2. (Kibi=2^10, mebi=2^20, gibi=2^30, tebi=2^40).

#14
正面 (问题)

Decimal prefix

背面 (解答)

A prefix to a unite representing a power of 10. (Kilo=10^3, mega=10^6, giga=10^9, tera=10^12).

#15
正面 (问题)

Signed binary

背面 (解答)

A binary number system that can represent both positive and negative numbers.

#16
正面 (问题)

Unsigned binary

背面 (解答)

A binary number system that can only represent positive numbers.

#17
正面 (问题)

Two’s complement

背面 (解答)

A coding scheme used in signed binary to represent negative as well as positive numbers. A negative number is represented by flipping all its digits and adding 1 to the most significant bit.

#18
正面 (问题)

Exponent

背面 (解答)

A component of floating point form that stores the number of positions to move the decimal point.

#19
正面 (问题)

Fixed point form

背面 (解答)

A form used to represent numbers with a fractional part in any number system. Digits after the fixed point are multiplied by the base raised to a negative power.

#20
正面 (问题)

Mantissa

背面 (解答)

A component of floating point form that stores the non-zero significant digits of a number.

#21
正面 (问题)

Rounding errors

背面 (解答)

Errors inherently introduced to any calculations with fixed or floating point numbers since they cannot store numbers with infinite precisions.

#22
正面 (问题)

Absolute error

背面 (解答)

The difference between the exact correct value and rounded value.

#23
正面 (问题)

Relative error

背面 (解答)

The percentage difference between the exact correct value and rounded value.

#24
正面 (问题)

Normalisation

背面 (解答)

The process of ensuring a float point number is represented as efficiently as possible by adjusting the position of the radix point and exponent.