Bootstrap

ALevel 计算机 (9618) - 2024年Winter Paper 11 - 第1题和第6题讲解

本讲解只是博主个人看法,如果有错误,欢迎指出来哦!勿喷哈

## 题目

### 第一题

(a) State one difference between a tebibyte and a gigabyte.

答案:

1 mark for

  • A tebibyte = 1024 gibibytes / 1048576 kibibytes / $2^40 bytes whereas a gigabyte = 1000 megabytes / 1 000 000 kilobytes / $10^9 bytes
  • Tebi is binary prefix giga is denary prefix 

讲解:这道题主要是让我们答出 tebibyte 和  gigabyte 的区别。

  • 1 TiB = 1024 GiB (Gibibytes), 1 GiB = 1024 MiB (Mebibytes), 1 MiB = 1024 KiB (Kibibytes), 因此 1 TiB = $2^40 字节
  • 1 GB = 1000 MB (Megabytes), 1 MB = 1000 KB (Kilobytes), 因此 1 GB = $10^9 字节。


(b) (i) Convert the unsigned binary integer into hexadecimal.

110001100111

答案:

1 mark for:

C67

讲解:

将110001100111分为3个部分:

  1. 1100
  2. 0110
  3. 0111</
;