返回卡包市场

Data Representation

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

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

卡片预览 (24 张)

#1
正面 (问题)

What is a number base?

背面 (解答)

The amount of symbols, notations it used to represent value How many digits are in it’s number system

#2
正面 (问题)

Describe the binary base

背面 (解答)

Base 2 : 0 and 1 Starts from 1 and double up the column, right to left

#3
正面 (问题)

How do you do binary addition?

背面 (解答)

1+0=1 0+0=0 1+1=0 carried 1 1+ 1+1 = 1 carried 1

#4
正面 (问题)

What are binary shifts used for?

背面 (解答)

Multiplying or dividing by powers of 2 Left shift =✖️ Right shift = ➗ Eg : n shifts left is ✖️2^n

#5
正面 (问题)

What happens when 1s are lost?

背面 (解答)

The answer will be a lot more inaccurate

#6
正面 (问题)

What is hexadecimal?

背面 (解答)

Base 16 0-15 (0-F) Each hexadecimal is represented in nibbles *still not understood by computers

#7
正面 (问题)

Why is hex preferred?

背面 (解答)

💻reduces large binary strings into nibbles 💻 Simpler to remember large number 💻easier to convert between hex and binary than decimal 💻less chance of input errors

#8
正面 (问题)

What is an overflow error?

背面 (解答)

The calculation requires more bits than available

#9
正面 (问题)

What is a bit?

背面 (解答)

Smallest measure of data 0 or 1

#10
正面 (问题)

What is a nibble?

背面 (解答)

4 bits

#11
正面 (问题)

What is a byte?

背面 (解答)

8 bits

#12
正面 (问题)

What is a kilobyte?

背面 (解答)

1000 bytes **3 8000 bits

#13
正面 (问题)

What is a megabyte?

背面 (解答)

1000 kilobytes 1,000,000 bytes 8,000,000 bits 1*10^6

#14
正面 (问题)

What is a gigabyte

背面 (解答)

1000 megabytes 1*10^9 1,000,000,000 bytes

#15
正面 (问题)

What is a terabyte?

背面 (解答)

1000 gigabytes 1*10^12 1,000,000,000,000 bytes

#16
正面 (问题)

How do you calculate how many values can be made from a specific number of bytes?

背面 (解答)

Eg a nibble - 4 bits n = amount of bits 2^n =how many different values can be made

#17
正面 (问题)

What is a character set?

背面 (解答)

A group of characters that a computer recognises from their binary representation

#18
正面 (问题)

Describe ASCII

背面 (解答)

〽️7 bits , 128 characters 〽️represents English alphabet, numbers , symbols, commands 〽️A=65

#19
正面 (问题)

Describe Unicode

背面 (解答)

〽️used for all languages 〽️used 16 bits, 65,000 characters 〽️first 128 codes are the same as ASCII

#20
正面 (问题)

Which is easier dec to hex or binary to hex?

背面 (解答)

Binary to hex as splitting into nibbles is a lot easier

#21
正面 (问题)

How do you convert from hex to decimal?

背面 (解答)

Put it into a 16&1 chart

#22
正面 (问题)

How do you convert from decimal to hex?

背面 (解答)

Divide number by 16 and remainder goes in one’s column

#23
正面 (问题)

How do you convert binary to hex?

背面 (解答)

Split in nibbles In the 8421 column find the decimal value Place it so that it fits in hex Eg 15: F

#24
正面 (问题)

How do you convert hex to binary?

背面 (解答)

Convert to nibbles Add the two nibbles together to forms byte