Skip to main content

NUMBER SYSTEM

 NUMBER SYSTEM 

When we type some letters or words, the computer translates them in numbers as computers can understand only numbers. A computer can understand the positional number system where there are only a few symbols called digits and these symbols represent different values depending on the position they occupy in the number.

The value of each digit in a number can be determined using −

  • The digit

  • The position of the digit in the number

  • The base of the number system (where the base is defined as the total number of digits available in the number system)


DIFFERENT TYPE OF NUMBER SYSTEM;


The classification of numbers systems on the basis of base can be understood from the below diagram.

Number System

Number systemBaseUsed digits
Binary20,1
Octal80,1,2,3,4,5,6,7
Decimal100,1,2,3,4,5,6,7,8,9
Hexadecimal160,1,2,3,4,5,6,7,8,9, A,B,C,D,E,F     

    

1.BINARY NUMBER SYSTEM;

                 The modern computers do not process the decimal numbers.

       . They only work with a binary number system.

       . It uses only two digits 0 and 2. 

       . The base of binary number system is 2  because it has only two digits.  

       . The digital electronics equipment's are works on the binary number system.


EXAMPLE;

Decimal and Binary Number | Notes, Videos, QA and Tests | Grade 10>Computer  Science>Computer Number System | Kullabs


2.DECIMAL NUMBER SYSTEM;

         .The number system is having digit 0,1,2,3,4,5,6,7,8,9.

         . Total ten digits are involved. So that base of the decimal number system is 10.


EXAMPLE;1 Machine Architecture and Number Systems Topics Major Computer Components  Bits, Bytes, and Words The Decimal Number System The Binary Number System  Converting. - ppt download
3.OCTAL NUMBER SYSTEM;

           .Uses eight digits 0,1,2,3,4,5,6,7. 

          . Also called '' base 8 number system''

          . Each position in an octal number represents a 0 power of the base (8)


EXAMPLE; 

What is Octal Number System? - Definition, Octal to Decimal & Decimal to  Octal Conversion - Circuit Globe

  

4.HEXADECIMAL NUMBER SYSTEM;

           .These4 numbers are used extensively in microprocessor.

              .The hexadecimal number system has a base of 16.

               .It consists of the following sixteen numbers of digits ( 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F )

               .Letters represents number starting from

                                        A=10
                                        B=11
                                        C=12
                                        D=13
                                        E=14
                                        F=15
                                        G=16

EXAMPLE;

 What are binary and hexadecimal number systems? | Wirebiters 




A link that describes the above;

                https://youtu.be/32Kwy3GWQWc

  

                               or


Comments

Popular posts from this blog

NUMBER SYSTEM CONVERSION

NUMBER BASE CONVERSION                     In our previous section, we learned different types of number systems such as binary, decimal, octal, and hexadecimal. In this part of the tutorial, we will learn how we can change a number from one number system to another number system. As, we have four types of number systems so each one can be converted into the remaining three systems. There are the following conversions possible in Number System Binary to other Number Systems. Decimal to other Number Systems. Octal to other Number Systems. Hexadecimal to other Number Systems.                                                                                                                                                                                                                                     1.BINARY NUMBER SYSTEM CONVERSION  Number System with base value 2 is termed as Binary number system. It uses 2 digits i.e. 0 and 1 for the creation of numbers. The numbers formed using these

DJANGO

                                                                     TABLE OF CONTENT: What is Django? why use of Django Framework? Features of Django How To   Setup   Django at Glance Advantages and Disadvantages of Django WHAT IS DJANGO? Django is just an open-source web framework that supports high-level python programming. It speeds up the development of web applications that are being built on Python Language. Django helps in “Rapid Development, Pragmatic djangoProjectCarriedand Clean Design”. This is deployed on a web server that helps developers produce a web front-end that is secure, feature-rich, fast, and scalable. Starting from scratch, which involves designing the backend, APIs, javascript, and sitemaps, is a more effective way to create a web app than using the Django web framework. Web developers can concentrate on developing a specific application using the Django web platform, which provides more flexibility than any other web development tool. WHY USE OF DJANGO FRAMEWO

HEXADECIMAL NUMBER SYSTEM CONVERSION

 HEXADECIMAL NUMBER SYSTEM CONVERSION           1.HEXADECIMAL NUMBER CONVERSION Number System with base value 16 is termed as Hexadecimal Number System. It uses 16 digits for the creation of its numbers. Digits from 0-9 are taken like the digits in the decimal number system but the digits from 10-15 are  represented as A-F i.e. 10 is represented as A, 11 as B, 12 as C, 13 as D, 14 as E, and 15 as F. Hexadecimal Numbers are useful for handling memory address locations. * HEXADECIMAL NUMBER SYSTEM TO BINARY NUMBER SYSTEM; Hex numbers are represented in base 16, but the binary numbers are of base 2. Hence, to convert a hexadecimal number to a binary number, the base of that number is to be changed. Follow the steps given below: Step 1:  Convert the Hex symbols into its equivalent decimal values. Step 2:  Write each digit of the Hexadecimal number separately. Step 3:  Convert each digit into an equivalent group of four binary digits. Step 4:  Combine these groups to form the whole binary n