Number System in Computers | Types of Number System | Use and Importance - Passionate Geekz

Breaking

Where you can unleash your inner geek.

Saturday, 3 August 2019

Number System in Computers | Types of Number System | Use and Importance

In Computer Architecture we have 4 Types of Number System and their Conversions . Computer does not understand English or any language .the only language understand by Computers are Binary Numbers or Binary math’s.

In Binary we have only ZERO(0) and One’s (1) . Binary Numbers are used as primary language for Computer’s because binary is easy to store and manipulate . In English we have  26 Alphabets and 0-9 in Numbers  . Every Alphabet of English has different Binary Representation

[su_row][su_column size=”1/4″ center=”no”]ALPHABETS(UPPER)

A01000001
B01000010
C01000011
D01000100
E01000101
F01000110
G01000111
H01001000
I01001001
J01001010
K01001011
L01001100
M01001101
N01001110
O01001111
P01010000
Q01010001
R01010010
S01010011
T01010100
U01010101
V01010110
W01010111
X01011000
Y01011001
Z01011010

[/su_column]

[su_column size=”1/4″ center=”no”]ALPHABETS(LOWER)

a01100001
b01100010
c01100011
d01100100
e01100101
f01100110
g01100111
h01101000
i01101001
j01101010
k01101011
l01101100
m01101101
n01101110
o01101111
p01110000
q01110001
r01110010
s01110011
t01110100
u01110101
v01110110
w01110111
x01111000
y01111001
z01111010

[/su_column]

[su_column size=”1/4″ center=”no”]DIGITS

00
11
210
311
4100
5101
6110
7111
81000
91001
101010

[/su_column]

[su_column size=”1/4″ center=”no”]SPECIAL

!chr(33)00100001
chr(34)00100010
#chr(35)00100011
$chr(36)00100100
%chr(37)00100101
&chr(38)00100110
chr(39)00100111
(chr(40)00101000
)chr(41)00101001
*chr(42)00101010
+chr(43)00101011
,chr(44)00101100
chr(45)00101101
.chr(46)00101110
/chr(47)00101111
:chr(58)00111010
;chr(59)00111011
<chr(60)00111100
=chr(61)00111101
>chr(62)00111110
?chr(63)00111111
@chr(64)
[chr(91)01011011
chr(92)01011100
]chr(93)01011101
^chr(94)01011110
_chr(95)01011111
`chr(96)01100000

[/su_column]

[/su_row]

Types Of Number System And Conversions

  • Binary Number System
  • Decimal Number System
  • Octal Number System
  • Hexadecimal Number System

Binary Number System

Binary Number System  is Most popular and is a Base 2 Number System . The basic Number System of Computer is Binary Number System.In term of Electronic circuit or current it can be operate as a On Off Switch

[su_table responsive=”yes”]

ON1
OFF0

[/su_table]

Binary Number : (1001)2

[su_table responsive=”yes”]

10012

23+22+21+20

10012

8+0+0+1

10012

9

[/su_table]

Decimal Number System

Decimal Number System  is a Base 10 Number System.it use 10 digits 0-9.reading from left it represents units,ones,tens,hundred,thousand and so on.

[su_table responsive=”yes”]

481910

104+103+102+101

481910

4000+800+10+9

Final Ans

4819

[/su_table]

Octal Number System

Octal Number System is Base 8 Number System. Octal means 8 .Octal Number System is Most Commonly Used By Computers  and its easy to remember in term of computer engineers. it uses 8 digits 0-7.

[su_table responsive=”yes”]

47268

83+82+81+80

47268

4×512+7×16+2×8+6×0

Final Ans

2182

[/su_table]

 

Hexadecimal Number System

Hexadecimal Number system is more Convenient for Computer Engineers as it’s a base 16 Number System and Uses 10 digits and 6 letters

1,2,3,4,5,6,7,8,9,A,B,C,D,E,F

Where is A=10 ,B=11 ………………..F=15

[su_table responsive=”yes”]

45D16

162+161+160

45D16

4×256+5×16+13X0

Final Ans

1117

[/su_table]

 

Number Conversions

[su_row][su_column size=”1/4″ center=”no” class=””]Binary Conversions

  • Binary To Decimal
  • Binary To Octal
  • Binary To HexaDecimal

[/su_column]

[su_column size=”1/4″ center=”no” class=””]Decimal Conversions

 

  • Decimal To Binary
  • Decimal To Octal
  • Decimal To HexaDecimal

[/su_column]

[su_column size=”1/4″ center=”no” class=””]Octal Conversions

 

  • Octal To Binary
  • Octal To Decimal
  • Octal To HexaDecimal

[/su_column]

[su_column size=”1/4″ center=”no” class=””]HexaDecimal Conversions

  • HexaDecimal To Binary
  • HexaDecimal To Octal
  • HexaDecimal To Decimal

[/su_column]

[/su_row]

 

 

Finally we done all the Conversions in Number System .

No comments:

Post a Comment