返回卡包市场

Chapter 1: Data Representation

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

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

卡片预览 (19 张)

#1
正面 (问题)

How and why computers use binary to represent data

背面 (解答)

the binary number system is chosen because because it only consists of ones and zeros

#2
正面 (问题)

What is binary

背面 (解答)

Binary is a bunch of ones and zeros effectively switches which have two positions : on and off

#3
正面 (问题)

How to convert to binary to denary

背面 (解答)

Each time one value appears in a binary number column e.g 128 64 32 16 8 4 2 1. The column value is added to a total.

#4
正面 (问题)

converting denary to binary

背面 (解答)

Subtraction of power of two e.g. 142 - 128 = 14 14 - 8 = 6 6 - 4 = 2 2 - 2 = 0 1 0 0 0 1 1 1 0

#5
正面 (问题)

Why is hexadecimal number system used?

背面 (解答)

Easier for humans to remember and work with, since a hex digit represent four binary digits

#6
正面 (问题)

Examples of using hexadecimal system

背面 (解答)

• Error codes • Media Access Control (MAC) Addresses • Internet Protocol (IP) Address • HTML colour codes

#7
正面 (问题)

How to add two positive 8 bit numbers

背面 (解答)

Carry and sum method.

卡片背面图片
#8
正面 (问题)

What are logical binary shifts on positive 8-bit integers?

背面 (解答)

The logical shift means moving the binary number to the left or to the right. • Each shift left is equivalent to multiplying the binary number by 2. • Each shift right is equivalent to dividing the binary number by 2.

#9
正面 (问题)

What is two’s complement?

背面 (解答)

A way of representing negative integers in binary. A 1-value in the left-most bit (ie. -128) indicates a negative number and a 0-value in the leftmost bit indicates a positive number

卡片背面图片
#10
正面 (问题)

Convert kilobyte, megabyte, gigabyte, terabyte and petabyte to bits

背面 (解答)

卡片背面图片
#11
正面 (问题)

1 GB is equal to ………. MB

背面 (解答)

1024 MB

#12
正面 (问题)

what are the uses of binary

背面 (解答)

Used to represent transistor states in computers used to represent numbers in digital displays used in CPU registers

#13
正面 (问题)

file formats examples

背面 (解答)

MIDI(music) JPEG(image) MP3(Sound) MP4(video)

#14
正面 (问题)

Lossy vs lossless

背面 (解答)

lossless- restores and rebuilds file data in its original form Lossy - the file has been slightly compressed which saves space

#15
正面 (问题)

Parity check

背面 (解答)

even parity - must be an even amount of ones odd parity - must be an odd amount of ones

#16
正面 (问题)

What is the purpose of compression?

背面 (解答)

Make data smaller, reduce file size

#17
正面 (问题)

Give examples of a lossy compressed file

背面 (解答)

mp4, mp3, jpeg

#18
正面 (问题)

Give examples of a lossless compressed file

背面 (解答)

MIDI, WAV, ZIP

#19
正面 (问题)

Name 1 advantage and 1 disadvantage of using Unicode compared to ASCII

背面 (解答)

Advantage - represent more characters and non-Western languages Disadvantage - takes up more space (up to 4 bytes) than ASCII (1 byte)