Back to Course

JSS2: COMPUTER STUDIES - 1ST TERM

0% Complete
0/0 Steps
  1. Computer Software | Week 1
    4 Topics
    |
    1 Quiz
  2. Operating System | Week 2
    9 Topics
    |
    1 Quiz
  3. Computer Memory: Primary And Secondary Memory | Week 3
    5 Topics
    |
    1 Quiz
  4. Computer Memory II: Secondary Memory (Backing Storage) | Week 4
    2 Topics
    |
    1 Quiz
  5. Number System I | Week 5
    4 Topics
    |
    1 Quiz
  6. Number System II | Week 6
    3 Topics
    |
    1 Quiz
  7. Units of Storage In Computer | Week 7
    2 Topics
    |
    1 Quiz
  8. Problem Solving Skills With Computer | Week 8
    5 Topics
    |
    1 Quiz
  9. Computer Programming Languages | Week 9
    3 Topics
    |
    1 Quiz
  • excellence
  • Follow

Lesson Progress
0% Complete

Topic Content:

  • Meaning of Number System
  • Types of Number Systems
    • binary, decimal, octal, hexadecimal
  • Binary-coded Decimal (BCD)
  • Summary

A computer can understand only a few symbols called digits and these symbols describe different values depending on the position they hold in the number. In general, the binary number system is used in computers. However, the octal, decimal and hexadecimal systems are also used sometimes.

Numbers, alphabets, and symbols that are sent to the CPU must, first of all, be changed to binary digits before any actions can be taken by the CPU. The section of the CPU that does the conversion is called the decoder.

The number system, therefore, is the way in which digital computers handle numerical values.

Types of Number Systems:

There are various types of number systems in mathematics. The most common number system types used are:

  • Binary number system (Base – 2)
  • Octal number system (Base – 8)
  • Decimal number system (Base – 10)
  • Hexadecimal number system (Base – 16)

Binary System:

The binary numeral system is the base 2 number system. It is very important because it is used by computers for numerical calculations. Binary numbers are made up of two digits: 1 and 0. A computer contains a number of switches. Each switch is either ‘on’ or ‘off’. ‘On’ represents ‘1’, and ‘Off’ represents ‘0’.

All computer systems irrespective of their shapes and sizes are based on the binary system.

Octal System:

The octal numeral system is the base-8 number system. It means that it has 8 digits 0, 1, 2, 3, 4, 5, 6, and 7. This is written using eight distinct symbols (0-7)

When counting and the number is up to 7, it implies that we have run out of digits.

Decimal / Denary System:

The system of counting in tens is called the decimal system. It has a base of 10. In the decimal system, there are 10 digits which are 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9. Here, you count up from 0 to 9 and then reset your number to 0, and carry 1 into another column.

Hexadecimal System:

This is a number system with 16 as the base. The 16 digits and characters used in the hexadecimal system (HEX) are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, and F. Symbols A, B, C, D, E, and F are equivalent to decimal 10, 11, 12, 13, 14, and 15 respectively.

Hexadecimal0123456789ABCDEF
Decimal0123456789101112131415

Binary-coded Decimal (BCD):

The following are some decimal numbers with their equivalent binary codes.

Binary-coded Decimal:

Decimal:     Binary Code:
00000
10001
20010
30011
40100
50101
60110
70111
81000
91001
101010

Summary:

Number systems are the technique to represent numbers in the computer system architecture, every value that you are saving or getting into/from computer memory has a defined number system.

There are various types of number systems in mathematics. The four most common number system types are:

  • Decimal number system (Base – 10)
  • Binary number system (Base – 2)
  • Octal number system (Base -8)
  • Hexadecimal number system (Base – 16)
Number system:Base:Used digits:Example:
Binary20,1(11110000)2
Octal80,1, 2, 3, 4, 5, 6, 7(360)8
Decimal100, 1, 2, 3, 4, 5, 6, 7, 8, 9(240)10
Hexadecimal160, 1, 2, 3, 4, 5, 6, 7, 8, 9,
A, B, C, D, E, F
(F0)16