Back to 课程

Computer Science GCES AQA

0% Complete
0/0 Steps
  1. Representing Algorithms Aqa
    4 主题
  2. Efficiency Of Algorithms Aqa
    1 主题
  3. Searching Algorithms Aqa
    3 主题
  4. Sorting Algorithms Aqa
    3 主题
  5. Data Types Aqa
    1 主题
  6. Programming Concepts Aqa
    5 主题
  7. Arithmetic Relational And Boolean Operations Aqa
    1 主题
  8. Data Structures Aqa
    3 主题
  9. String Manipulation Aqa
    1 主题
  10. Random Number Generation Aqa
    1 主题
  11. Structured Programming Aqa
    2 主题
  12. Robust And Secure Programming Aqa
    4 主题
  13. Number Bases Aqa
    2 主题
  14. Converting Between Number Bases Aqa
    3 主题
  15. Units Of Information Aqa
    9 主题
  16. Hardware And Software Aqa
    4 主题
  17. Boolean Logic Aqa
    3 主题
  18. Programming Languages And Translators Aqa
    2 主题
  19. Cpu Architecture Performance And Embedded Systems Aqa
    4 主题
  20. Memory Aqa
    2 主题
  21. Secondary Storage Aqa
    3 主题
  22. Fundamentals Of Computer Networks Aqa
    8 主题
  23. Fundamentals Of Cyber Security Aqa
    1 主题
  24. Methods Of Preventing Cyber Security Threats Aqa
    1 主题
  25. Relational Databases Aqa
    2 主题
  26. Ethical Legal And Environmental Impacts Aqa
    2 主题
课 Progress
0% Complete

Exam code:8525

Units of Data

  • Computers use binary numbers to represent data

  • Data such as characters, images and sound must be stored as binary

  • The smallest unit of data a computer can store is 1 binary digit, otherwise expressed as 1 bit

  • 1 bit can only hold one value (21), this is not big enough to store all kinds of data, so computers have different ‘Units of Data’

What are units of data?

  • A unit of data is a term given to describe different amounts of binary digits stored on a digital device

  • These are the units you need to know for GCSE:

Unit

Symbol

Binary

Written as

Example

Bit

b

1 or 0

 

 

Byte

B

8 b

 

A single character

Kilobyte

kB

1000 B (210)

Thousand bytes

A small text file

Megabyte

MB

1000 KB (220)

Million byes

A music file

Gigabyte

GB

1000 MB (230)

Billion bytes

A high definition movie

Terabyte

TB

1000 GB (240)

Trillion bytes

A large hard drive

Examiner Tips and Tricks

Binary only contains two digits (1 and 0) so technically larger multiples would be calculated as 2number of bytes

For example, a kilobyte is 210 = 1024 bytes not 1000 bytes

In GCSE we approximate all larger units of storage as multiples of 1000 to make calculations easier

Converting between units

  • It is often a requirement of the exam to be able to convert between different units of data, for example bytes to megabytes (larger) or kilobytes to bytes (smaller)

  • This process involves division, moving up in size of unit and multiplication, moving down in size of unit

  • When dealing with all units bigger than a byte we use multiples of 1000

  • For example, 2000 kilobytes in megabytes would be 2000 / 1000 = 2 MB and 2 terabytes in gigabytes would be 2 * 1000 = 2000 GB

  • When dealing with bits and bytes the same process is used with the value 8 as there are 8 bits in a byte

  • For example, 24 bits in bytes would be 24 / 8 = 3 B and 10 bytes in bits would be 10 * 8 = 80 b

 

Unit

 

Multiply by 8

Bit

Divide by 8

Byte

Multiply by 1000

Kilobyte

Divide by 1000

Megabyte

Gigabyte

Terabyte

Petabyte

Worked Example

Computers represent data in binary form.

Tick one box in each row to identify the binary unit equivalent of each of the given file sizes [4]

A table with a blue header has columns labeled: 4 megabytes, 24 bits, 5 kilobytes, 10 bytes, 2 terabytes. Rows include 2000 gigabytes, 5000 bytes, 6 nibbles, 3 bytes.

Answer

Table with file size and memory size columns. Rows show 2000 gigabytes (2 terabytes), 5000 bytes (5 kilobytes, 10 bytes), 6 nibbles (24 bits), and 3 bytes.

Responses

您的邮箱地址不会被公开。 必填项已用 * 标注