DATA REPRESENTATION CONVERSION.

Slides:



Advertisements
Similar presentations
James Tam Beyond base 10: Non-decimal based number system What exactly is decimal? How do other number systems work (binary, octal and hex) How to convert.
Advertisements

Number Systems. 2 The total number of allowable symbols in a number system is called the radix or base of the system. Decimal Numbers: radix = 10 (symbols:
Data Representation in Computers
Number System Conversions Lecture L2.2 Section 2.3.
Converting Binary to Octal
Number Systems and Arithmetic
 Binary Binary  Binary Number System Binary Number System  Binary to Decimal Binary to Decimal  Decimal to Binary Decimal to Binary  Octal and Hexadecimal.
Binary Numbers.
Binary and Hexadecimal Numbers
Number Systems.
Number systems: binary, decimal, hexadecimal and octal. Conversion between various number systems Number systems: binary, decimal, hexadecimal and octal.
TOPIC 2 NUMBERING SYSTEM.  Many number systems are in use in digital technology. The most common are the decimal, binary, octal, and hexadecimal systems.
Conversion of Number System Conversion Among Bases The possibilities: Hexadecimal DecimalOctal Binary
Lecture 4 Last Lecture –Positional Numbering Systems –Converting Between Bases Today’s Topics –Signed Integer Representation Signed magnitude One’s complement.
CCE-EDUSAT SESSION FOR COMPUTER FUNDAMENTALS Date: Session III Topic: Number Systems Faculty: Anita Kanavalli Department of CSE M S Ramaiah.
Number systems, Operations, and Codes
Number Base Conversions
Number System sneha.
Octal to Decimal Hexadecimal DecimalOctal Binary.
Positional Number Systems Decimal, Binary, Octal and Hexadecimal Numbers Wakerly Section
AEEE2031 Data Representation and Numbering Systems.
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
WEEK #2 NUMBER SYSTEMS, OPERATION & CODES (PART 1)
Digital Fundamentals Tenth Edition Floyd Chapter 2 © 2008 Pearson Education.
Number Representation Lecture Topics How are numeric data items actually stored in computer memory? How much space (memory locations) is.
Computer Number System
Number Systems. Topics  The Decimal Number System  The Binary Number System  Converting from Binary to Decimal  Converting from Decimal to Binary.
Hexadecimal (base 16) BY MAT D. What is hexadecimal  Hexadecimal is a number system like binary or denary that has 16 characters, the numbers 0-9 and.
ECE 2110: Introduction to Digital Systems Number Systems: conversions.
CS151 Introduction to Digital Design Chapter 1: Digital Systems and Information Lecture 2 1Created by: Ms.Amany AlSaleh.
The Hexadecimal System is base 16. It is a shorthand method for representing the 8-bit bytes that are stored in the computer system. This system was chosen.
© 2009 Pearson Education, Upper Saddle River, NJ All Rights ReservedFloyd, Digital Fundamentals, 10 th ed Digital Fundamentals Tenth Edition Floyd.
Chapter 32 Binary Number System. Objectives After completing this chapter, you will be able to: –Describe the binary number system –Identify the place.
Chapter 5 NUMBER REPRESENTATION AND ARITHMETIC CIRCUITS.
Conversions 1)Binary to Denary Method 1 Work out the position values of the binary bits and add those values together So above would be
Number Systems. The position of each digit in a weighted number system is assigned a weight based on the base or radix of the system. The radix of decimal.
ECE 2110: Introduction to Digital Systems Number Systems: conversions.
1. Binary, Decimal, Hexadecimal and Octal. 2. Conversion between various number systems. Number Systems:
Prepared By: Norakmar Binti Mohd Nadzari CHAPTER 2 ARITHMETIC AND LOGIC UNIT.
Introduction To Number Systems
Positional Number Systems Decimal, Binary, Octal and Hexadecimal Numbers Wakerly Section
Number Systems and Codes
Octal to Decimal Decimal Octal Binary Hexadecimal.
NUMBER SYSTEM Prepared by: Engr Zakria.
By: Jonathan O. Cabriana
CHAPTER 1 : INTRODUCTION
ITE102 – Computer Programming (C++)
CSE 102 Introduction to Computer Engineering
Location in course textbook
2.0 COMPUTER SYSTEM 2.2 Number System and Representation
Number System conversions
University of Gujrat Department of Computer Science
Chapter 1 Number Systems & Conversions
Number Systems and Binary Arithmetic
Introduction to IT By: Muhammed s. anwar.
Number Systems and Codes
MMNSS COLLEGE,KOTTIYAM DEPARTMENT OF PHYSICS
Numbering System TODAY AND TOMORROW 11th Edition
Digital Electronics and Microprocessors
Chapter 2: Number Systems
Number Systems created by: S.Shahrukh haider
Chapter 2 Number Systems.
Numeral systems (radix)
Chapter 2 Number Systems.
Decimal / Binary Conversions
Chapter 2 Number Systems.
Chapter 2 Number Systems.
1. Number Systems Chapt. 2.
Presentation transcript:

DATA REPRESENTATION CONVERSION

NUMBER SYSTEM Decimal Number System Binary Number System Octal Number System Hexadecimal Number System

Decimal Number System The decimal system is composed of 1- numerals or symbols (Deca means 10, that is why this is called decimal system). These 10 symbols are 0,1,2,3,4,5,6,7,8,9 ; using these symbols as digit as number, we can express any quantity. The decimal system, also called the base-10 system

Binary Number System Binary System, there are only two symbols or possible digit values, 0 and 1. This base-2 system can be used to represent any quantity that can be represented in decimal or other number systems. The Binary system is also a positional-value system, wherein each binary digit has its own value expressed as a power of 2.

Octal Number System The Octal number system is very important in digital computer work. The octal number system has a base of eight, meaning that it has eight unique symbols : 0,1,2,3,4,5,6,7 . Thus each digit of an octal number can have any value from 0 to 7. The octal system is a positional value system, wherein each octal digit has its own value expressed as a power of 8.

Hexadecimal Number System The Hexadecimal System uses base 16. Thus, it has 16 possible digit symbols. It uses the digits 0 – 9 and the letter A, B, C, D, E & F as the 16 digit symbols. Hexadecimal is a positional value System has its own value expressed as a power of 16.

NUMBER CONVERSIONS CONVERSIONS WITH BINARY Decimal To Binary Decimal Fraction To Binary Binary To Decimal Binary Fraction To Decimal

CONVERSIONS WITH BINARY Decimal To Binary To converting decimal to Binary we use Repeated division method. In this the no. is successively divide by 2 and its remainder recorded. For Example convert decimal to Binary 4310 2 43 2 21 1 2 10 1 2 5 0 2 2 1 2 1 0 1 1 WRITE IN THIS ORDER From Down to Up Your Answer 4310 = 1010112

Decimal Fraction To Binary CONVERSIONS WITH BINARY Decimal Fraction To Binary To Convert a decimal fraction into binary, multiply the decimal fraction by the base that’s 2. Do untill you will get zero at fractional part. For Example Convert 0.37510 to Binary Integer Part Multiply(fractional part)0.375 * 2 = 0.750 0 0.75 * 2 = 1.50 1 0.50 * 2 = 1.00 1 Your Answer is 0.37510 = 0.0112 Write From Up to Down

CONVERSIONS WITH BINARY Binary To Decimal To convert Binary to Decimal, Add positional weights or values with power of 2 start from right side. For Example Convert 11011 to Decimal. 24 23 22 21 20 1 * 24 + 1 * 23 + 0 * 22 + 1 * 21 + 1 * 20 = 16 + 8 + 0 + 2 + 1 = 2710 (decimal) 1

Binary Fraction To Decimal CONVERSIONS WITH BINARY Binary Fraction To Decimal To find binary fraction, take the sum of products of each digit value (0 – 1) and its positional value. Starts from left side. For Example convert 0.0101 to Decimal. 2-1 2-2 2-3 2-4 0 * 2-1 + 1 * 2-2 + 0 * 2-3 + 1 * 2-4 = 0 + 0.25 + 0 + 0.0625 0.01012 = 0.312510 (decimal) . 0 1

NUMBER CONVERSIONS CONVERSIONS WITH OCTAL Decimal To Octal Decimal Fraction To Octal Octal To Decimal Octal To Binary Binary To Octal

CONVERSIONS WITH OCTAL Decimal To Octal A decimal integer can be converted to octal by repeated-division method with division factor of 8. Example Convert 26610 to Octal remainder 8 266 2 8 33 1 8 4 4 26610 = 4128 WRITE IN THIS ORDER From Down to Up

Decimal Fraction To Octal CONVERSIONS WITH OCTAL Decimal Fraction To Octal To convert Decimal fraction into Octal, multiply fractional part with 8 till you get fractional part 0. Example : convert 0.37510 to Octal Integer Part 0.375 * 8 = 3.0 3  0.37510 = 0.38 Write From Up to Down

CONVERSIONS WITH OCTAL Octal To Decimal It can easily converted into decimal by multiplying each octal digit by its positional weight. For Example 3728 to Decimal 82 81 80 3 * 82 + 7 * 81 + 2 * 80 = 3 * 64 + 7 * 8 + 2 * 1 = 25010 3 7 2

CONVERSIONS WITH OCTAL Octal To Binary To convert Octal To Binary is easy. This converting is performed by converting each octal digit to its 3 bit binary. Possible digits converted as indicated in Table Example : 4728 to binary From table , 4 = 100 , 7 = 111 & 2 = 010 We get 4728 = 1001110102 Octal Digit 1 2 3 4 5 6 7 Binary 000 001 010 011 100 101 110 111

CONVERSIONS WITH OCTAL Binary To Octal Its simply the reverse of octal to binary. Make the three bits group starting from LSB. Then convert it with using Table For Example: 110101102 to Octal Make group of three 011 , 010 & 110 011 = 3 , 010 = 2 & 110 = 6 110101102 = 3268 Octal Digit 1 2 3 4 5 6 7 Binary 000 001 010 011 100 101 110 111 Add Zero To Make it group of 3 bit.

NUMBER CONVERSIONS CONVERSIONS WITH HEX Decimal To HEX Decimal Fraction To HEX HEX To Decimal HEX To Binary Binary To HEX

CONVERSIONS WITH HEX Decimal To HEX A decimal integer can be converted to hex by repeated-division method with division factor of 16. Example Convert 26610 to Hex remainder 16 423 7 16 26 A 16 1 1 42310 = 1A716 1010 = A16 WRITE IN THIS ORDER From Down to Up

Decimal Fraction To Hex CONVERSIONS WITH HEX Decimal Fraction To Hex To convert Decimal fraction into Hex, multiply fractional part with 16 till you get fractional part 0. Example : convert 0.0312510 to Hex Integer Part 0. 03125 * 16 =0.5 0 0. 5 * 16 = 8.0 8  0.0312510 = 0.0816 Write From Up to Down

CONVERSIONS WITH HEX HEX To Decimal It can easily converted into decimal by multiplying each Hex digit by its positional weight has power of 16. For Example 2AF16 to Decimal 162 161 160 2 * 162 + A * 161 + F * 160 = 2 * 256 + 10 * 8 + 15 * 1 = 60710 Decimal Hex 1 2 3 4 5 6 7 Decimal Hex 8 9 10 A 11 B 12 C 13 D 14 E 15 F 2 A F

CONVERSIONS WITH HEX HEX To Binary To convert Hex To Binary is easy. This converting is performed by converting each hex digit to its 4 bit binary. Possible digits converted as indicated in Table Example : 3A616 to binary From table, 3 = 0011 , A = 1010 & 6 = 0110 We get 3A616 = 0011101001102 Binary Hex 0000 0001 1 0010 2 0011 3 0100 4 0101 5 0110 6 0111 7 Binary Hex 1000 8 1001 9 1010 A 1011 B 1100 C 1101 D 1110 E 1111 F

CONVERSIONS WITH HEX Binary To HEX Its simply the reverse of Hex to binary. Make the four bits group starting from LSB. Then convert it with using Table For Example: 10101110102 to Hex Make group of four 0010 , 1011 & 1010 0010 = 2 , 1011 = B & 1010 = A 10101110102 = 2BA16 Add Zero to Make it group of 4 bit. Binary Hex 0000 0001 1 0010 2 0011 3 0100 4 0101 5 0110 6 0111 7 Binary Hex 1000 8 1001 9 1010 A 1011 B 1100 C 1101 D 1110 E 1111 F

THANK YOU Submitted by, Anil Yougnath Rakesh and Biswarup.