COMPUTER ORGANIZATION

Slides:



Advertisements
Similar presentations
NUMBER SYSTEM. How to convert hexadecimal numbers to decimal numbers? 230 Working from right to left, MULTIPLY each position with 8 raised to the power.
Advertisements

Number SystemsNumber Systems Modified By: AM. Sihan (Hardware Engineering)
Introduction to Computer Engineering by Richard E. Haskell Number Systems Module M3.1 Sections
Numbers. Number Conversion Convert – Binary number to decimal numbers – Octal numbers to decimal numbers – Hexadecimal to decimal numbers Convert – Decimal.
Decimal Addition What is going on? (carry) (subtract the base)
Prepared By Rama Gaikwad 1. Number Systems. Common Number Systems SystemBaseSymbols Used by humans? Used in computers? Decimal100, 1, … 9YesNo Binary20,
Numbering Systems. CSCE 1062 Outline What is a Numbering System Review of decimal numbering system Binary representation range Hexadecimal numbering system.
Supplemental Chapter Number Bases
Conversion of Number System Conversion Among Bases The possibilities: Hexadecimal DecimalOctal Binary
NUMBER SYSTEM.
INTRODUCTION TO COMPUTING LECTURE#04. TRANSFORMING DATA INTO INFORMATION Understands only two states either On or Off  Makes different patterns of 0s.
NUMBER SYSTEMS Prepared By K.Anitha Associate Professor Dept of ECE PVPSIT.
ENGINEERS FUTURE To optimize things When we type some letters or words, the computer translates them in numbers as computers can understand only numbers.
Introduction to Computing Dr. Nadeem A Khan. Lecture 10.
Numbering System Base Conversion. Number systems Decimal – 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 Binary – 0, 1 Octal – 0, 1, 2, 3, 4, 5, 6, 7 Hexadecimal system.
Number Systems Prepared by Department of Preparatory year.
CPS120: Introduction to Computer Science Computer Math: Converting to Decimal.
Converting From decimal to Binary & Hexadecimal to Binary
Number Systems Binary to Decimal Octal to Decimal Hexadecimal to Decimal Binary to Octal Binary to Hexadecimal Two’s Complement.
AP Computer Science A – Healdsburg High School 1 Unit 1 - Binary Numbers - Hexadecimal Numbers.
Number System sneha.
Octal to Decimal Hexadecimal DecimalOctal Binary.
CS 101 – Aug. 31 Interpreting binary  decimal √ Decimal  binary Shorthand ways of expressing binary –Octal –“Hex” Negative numbers.
Chapter 1  Number Systems Decimal System Binary System Octal System Hexadecimal System  Binary weighted cods Signed number binary order  1’s and 2’s.
Number Base Relationships F451 AS WBGS How to explain the relationship between binary and Octal/Hex values.
DECIMALBINARY a) b) c) d) e) f) Revision Exercise DECIMALBINARY a) b) c)
How Computer Represent Data
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
Computer Programming 12 Mr. Jean February 11 th, 2014.
NUMBER SYSTEM. Number System Number Base B => B symbols – Base 16(Hexa):0, 1,……9, A,…, E, F – Base 10 (Decimal): 0, 1, 2,……, 7, 8, 9 – Base 8(Octal):
8421 Binary Hexadecimal Seven segment display 8421 Binary Hexadecimal Seven segment display 0000.
Programming 12 : Mr. Jean February 8 th, The plan: Video clip of the day Website Introduction to Hexadecimal Converting from Hexadecimal to Decimal.
Jozef Goetz, Converting numbers 1.Converting from the base 2, 5, 8 and 16 numbers to the base 10 number See all a.s for the next slides 2. Converting.
ITEC 1011 Introduction to Information Technologies 1. Number Systems Chapt. 2 Location in course textbook.
ECE 362 Microprocessor Systems and Interfacing ©5-1 Lecture 1 Hexadecimal Computation Outline n Decimal n Binary n Octal n Hexadecimal.
Exercise 1.2 (Chapter 1) Prepared by Dr. Lamiaa Elshenawy
1. Number Systems. Common Number Systems SystemBaseSymbols Used by humans? Used in computers? Decimal100, 1, … 9YesNo Binary20, 1NoYes Octal80, 1, … 7No.
Computer Studies Today Chapter 19 1 Chapter 19. Computer Studies Today Chapter 19 2 »Information stored in a computer is in two states: –ON –OFF.
Chapter 5 NUMBER REPRESENTATION AND ARITHMETIC CIRCUITS.
COMPUTER FUNDAMENTALS David Samuel bhatti
YOUR VIRTUAL WORLD – THE HEXADECIMAL NUMBERING SYSTEM Prepared by Mrs. Christina Morris, July, 2014.
Computer Science 210 Computer Organization
Lecturer: Santokh Singh
Decimal Numbers.
Introduction to Computing
Octal to Decimal Decimal Octal Binary Hexadecimal.
1. Number Systems.
Positional Notation A positional or place-value notation is a numeral system in which each position is related to the next by a constant multiplier, called.
Base ‘b’ number for i = 0 to n – 1 for an n digit quantity
CSE 102 Introduction to Computer Engineering
Location in course textbook
COUNTING IN BINARY Binary weightings 0 x x x x 8
Chapter 1 Number Systems & Conversions
Binary, Octal and Hex Numbers Copyright Thaddeus Konar
Binary Quiz UIN: ____________________
Introduction to IT By: Muhammed s. anwar.
Number Systems Base 2, 10, 16.
Principles of Computing – UFCFA Lecture-3
Binary, Octal and Hex Numbers Copyright Thaddeus Konar
There are 10 types of people of people in this world…
Topic 1: Data Representation
Number Systems created by: S.Shahrukh haider
COUNTING IN BINARY Binary weightings 0 x x x x 8
Binary Addition (1 of 2) Two 1-bit values A B A + B 1
Remember the 10 types of people of people in this world…
Computer Science 1 Review and finish Number base conversion
1. Number Systems Chapt. 2.
Presentation transcript:

COMPUTER ORGANIZATION Topic 2 COMPUTER ORGANIZATION Computer Science Mr. Ricki Zulkifli

2.1.9Binary Representation

2.1.9Binary Representation

2.1.9Binary Representation

2.1.9Binary Representation

2.1.9Binary Representation

2.1.9Binary Representation

2.1.9Binary Representation Binary to Decimal 1 + 8 + 16 + 64 + 128 = 21710

2.1.9Binary Representation

2.1.9Binary Representation

2.1.9Binary Representation Octal To Binary Ex: 5626 Binary: 101 110 010 1102

2.1.9Binary Representation Octal To Decimal (base 10) 1603810

2.1.9Binary Representation Octal To Hexadecimal (16)

2.1.9Binary Representation

2.1.9Binary Representation Hexadecimal to Binary (2) 01001111110101112

2.1.9Binary Representation Hexadecimal to Octal (8) 174148

2.1.9Binary Representation Hexadecimal to Decimal (10) 4239610

2.1.9Binary Representation Exercise : Binary 011111102 = (8) 1100101010102= (8) 10110012 = (10) 100110112 = (10) 10110011101012 = (16) 10111001101010112 = (16) Exercise : Octal 3278 = (2) 6538= (2) 372468 = (10) 712638 = (10) 7528 = (16) Decimal 15610 = (2) 433010= (8) 3175472 = (16) Hexadecimal 4F16 = (2) 1A16= (8) A3716 = (10)