返回卡包市场

1.01 - Number systems

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

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

卡片预览 (14 张)

#1
正面 (问题)

What is the base of denary numbers?

背面 (解答)

10

#2
正面 (问题)

What is the base of the binary numbers?

背面 (解答)

2

#3
正面 (问题)

How is each digit represented in the binary number system?

背面 (解答)

1s and 0s

#4
正面 (问题)

A group of eight bits is called…

背面 (解答)

… a Byte

#5
正面 (问题)

list 2 (to the power 0) - 2 (to the power 8)

背面 (解答)

1 2 4 8 16 32 64 128 256

#6
正面 (问题)

Base of hexadecimals?

背面 (解答)

base 16

#7
正面 (问题)

How are hexadecimal digits represented?

背面 (解答)

0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F A=10, B=11, C=12, D=13, E=14, F=15

#8
正面 (问题)

What is a group of four bits?

背面 (解答)

A nibble

#9
正面 (问题)

How many hexa decimal digits can be used represent a nibble?

背面 (解答)

One. This means that two can be used to represent a byte of binary code

#10
正面 (问题)

Example of when hexadecimal representations of bytes occur

背面 (解答)

When an error has occured during the execution of a program. A memory dump is provided which has a hexadecimal representation of the content of some chosen part of the memory.

#11
正面 (问题)

How to convert Denary to binary?

背面 (解答)

Divide the denary number by 2. Remainders are the binary numbers. Leading zeros are ignored however a binary code must not include blanks

#12
正面 (问题)

How to convert binary to denary?

背面 (解答)

Multiply the binary number with the squares of 2. Add all the answers.

#13
正面 (问题)

How to convert denary to hexadecimal?

背面 (解答)

Divide the denary number by 16. Remainder is the hexadecimals value.

#14
正面 (问题)

How to convert hexadecimal to denary?

背面 (解答)

Multiply the hexadecimal value by the squares of 16. Add all the answers