Back to 课程

Computer-science_A-level_Cie

0% Complete
0/0 Steps
  1. computers-and-components
    6 主题
  2. logic-gates-and-logic-circuits
    2 主题
  3. central-processing-unit-cpu-architecture
    6 主题
  4. assembly-language-
    4 主题
  5. bit-manipulation
    1 主题
  6. operating-systems
    3 主题
  7. language-translators
    2 主题
  8. data-security
    3 主题
  9. data-integrity
    1 主题
  10. ethics-and-ownership
    3 主题
  11. database-concepts
    3 主题
  12. database-management-systems-dbms-
    1 主题
  13. data-definition-language-ddl-and-data-manipulation-language-dml
    1 主题
  14. computational-thinking-skills
    1 主题
  15. algorithms
    14 主题
  16. data-types-and-records
    2 主题
  17. arrays
    2 主题
  18. files
    1 主题
  19. introduction-to-abstract-data-types-adt
    1 主题
  20. programming-basics
    1 主题
  21. constructs
    2 主题
  22. structured-programming
    1 主题
  23. program-development-life-cycle
    2 主题
  24. program-design-
    2 主题
  25. program-testing-and-maintenance
    3 主题
  26. user-defined-data-types
    1 主题
  27. file-organisation-and-access-
    3 主题
  28. floating-point-numbers-representation-and-manipulation
    3 主题
  29. protocols
    2 主题
  30. circuit-switching-packet-switching
    1 主题
  31. processors-parallel-processing-and-virtual-machines
    5 主题
  32. boolean-algebra-and-logic-circuits
    4 主题
  33. purposes-of-an-operating-system-os
    3 主题
  34. translation-software
    3 主题
  35. encryption-encryption-protocols-and-digital-certificates
    3 主题
  36. artificial-intelligence-ai
    4 主题
  37. recursion
    1 主题
  38. programming-paradigms
    4 主题
  39. object-oriented-programming
    7 主题
  40. file-processing-and-exception-handling
    2 主题
  41. data-representation
    5 主题
  42. multimedia
    3 主题
  43. compression
    2 主题
  44. networks-and-the-internet
    11 主题
课 Progress
0% Complete

Number bases

What is a number base?

  • A number base is the number of different digits or symbols a number system uses to represent values

  • Each place in a number represents a power of the base, starting from the right

Denary

  • Denary is a number system that is made up of 10 digits (0-9)

  • Denary is referred to as a base-10 number system

  • Each digit has a weight factor of 10 raised to a power, the rightmost digit is 1s (100), the next digit to the left 10s (101) and so on

  • Humans use the denary system for counting, measuring and performing maths calculations

  • Using combinations of the 10 digits we can represent any number

Diagram showing denary number 3268 with column headings
  • In this example, (3 x 1000) + (2 x 100) + (6 x 10) + (8 x 1) = 3268

  • To represent a bigger number we add more digits

Binary

  • Binary is a number system that is made up of two digits (1 and 0) 

  • Binary is referred to as a base-2 number system

  • Each digit has a weight factor of 2 raised to a power, the rightmost digit is 1s (20), the next digit to the left 2s (21) and so on

  • Each time a new digit is added, the column value is multiplied by 2

  • Using combinations of the 2 digits we can represent any number

Diagram showing binary 1101 using binary column headings
  • In this example, Binary 1100 = (1 x 8) + (1 x 4) = 12

  • To represent bigger numbers we add more binary digits (bits)

32,768

16,384

8,192

4,096

2,048

1,024

512

256

128

64

32

16

8

4

2

1

215

214

213

212

211

210

29

28

27

26

25

24

23

22

21

20

Hexadecimal

  • Hexadecimal is a number system that is made up of 16 digits, 10 numbers (0-9) and 6 letters (A-F)

0

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

0

1

2

3

4

5

6

7

8

9

A

B

C

D

E

F

  • Hexadecimal is referred to as a base-16 number system

  • Each digit has a weight factor of 16 raised to a power, the rightmost digit is 1s (160), the next digit to the left 16s (161)

16s

1s

 

1

3

 

1 x16

3 x 1

 = 19

  • A quick comparison table demonstrates a relationship between hexadecimal and a binary nibble 

  • One hexadecimal digit can represent four bits of binary data

<td class=”border border-dark ContentBlock_tableCe

Denary

Binary

Hexadecimal

0

0000

0

1

0001

1

2

0010

2

3

0011

3

4

0100

4

5

0101

5

6

0110

6

7

0111

7

8

1000

8

9

1001

9

10

1010

A

11

1011

B

12

1100

C

13

1101

D

14

1110

E

Responses

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