Introducing
Your new presentation assistant.
Refine, enhance, and tailor your content, source relevant images, and edit visuals quicker than ever before.
Trending searches
A number system is a way to represent numbers.
We are already familiar with the decimal number system.It has 10 unique digits but the computer understands only 0s and 1s (binary data).
Data is stored in computers in long strings of 0s and 1s, which becomes confusing to read and interpret.
To make it easier for the programmers, data is represented using other number systems.
There are multiple number systems with different base.But the 4 common number systems are:
Base is the number of unique digits in a particular number system.
It is a number system using which the computer saves its data. It consists of 2 digits 0 & 1. Hence the base becomes 2.
eg: 110,1011,111011
An expanded binary number would look as follows:
The digits 0 and 1 are known as binary digits or bits.
In binary numbers, the bit farthest to the left is called MSB (Most Significant Bit) as it has the highest place value and the bit farthest to the right is called LSB (Least Significant Bit) as it has the lowest place value.
This number system uses 8 digits(0-7) to represent data.Its base is 8.
eg: 327,443,110
It was devised for compact representation of binary numbers.
eg: 176,DA1,110,AC
Conversions
- from decimal to the other number systems
This conversion uses repeated division method. Steps to be followed:
This conversion also uses repeated division method.
This conversion also uses repeated division method.
Conversions
- from Binary to Decimal
- from Binary to Octal
- from Octal to Binary
For this example lets convert the binary number (10011011)2 to decimal number.
Multiply the individual numbers in the binary number from right to left with 2 and increasing the power from right to left starting from the power 0. After multiplying all add the products and you will obtain the converted decimal number.
Following rules are followed by a computer for binary addition
Following rules are followed by a computer for binary subtraction
Following rules are followed by a computer for binary multiplication