You are on page 1of 1

NUMBER SYSTEM

Computer Represents various types of number system for its data.

1. BCD = Binary coded Decimal


2. EBCDIC = Extended Binary Coded Decimal Interchange Code
3. ASCII = American Standard Code for Information Interchange

These Codes are represented by various types of number system


1. Binary Number System (0,1) Base 2
2. Octal Number System (0,1,2,3,4,5,6,7) Base 8
3. Decimal Number System (0,1,2,3,4,5,6,7,8,9) Base 10
4. Hexa Decimal Number System (0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F)
Base 16

CONVERSION TABLE

Decimal Binary Octal Hexa


0 0000 000 0
1 0001 001 1
2 0010 010 2
3 0011 011 3
4 0100 100 4

5 0101 101 5
6 0110 110 6
7 0111 111 7

8 1000 - 8
9 1001 - 9
10 1010 - A

11 1011 - B
12 1100 - C
13 1101 - D
14 1110 - E
15 1111 - F

Binary Calculation
==========================

Binary to Decimal, Octal & Hexa


Decimal to Binary, Octal & Hexa
Octal to Binary, Decimal & Hexa
Hexa to Binary, Decimal & Octal

Binary to Decimal
=> 101011
=> 100111011
=> 101101010 = 263
=> 111111111 = 115
Binary to Octal
=> 101 10 10 10 101 0101 0 10 10 1 10
=> 101 0 101 0101 010101 1111 1011 1010 101
Binary to Hexa
=> 101 11 11 011 011 010
=> 1100111011011010

You might also like