They are the same as registers since they store binary numbers. Called shifting registers since they shift (left or right) the binary number stored in.

Slides:



Advertisements
Similar presentations
How to Convert Decimal Numbers to Binary EXAMPLES.
Advertisements

Physics Rules for using Significant Figures. Rules for Averaging Trials Determine the average of the trials using a calculator Determine the uncertainty.
Thinking Mathematically Consumer Mathematics and Financial Management 8.1 Percent.
Binary & Decimal numbers = 3* * *10 + 5*1 = 3* * * *10 0 Decimal system: Ten digits: 0,1,2,3,…,9 Example:
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:
Mathematics with Binary. Question  Below is a binary string  Which is the least significant bit (LSB)?  Which is the most significant bit (MSB)? 0.
Fractions, Decimals, & Percent Conversions
Registers and Counters
Shift Micro operations
Converting binary to decimal decimal to binary
Multiplying and Dividing in Scientific Notation
Revision Introductory Lesson
Calculations with Significant Figures
Binary and Hexadecimal Numbers
The Binary Number System
Fraction Jeopardy LCMGCF It’s the same thing Add it up What’s left Multiply $100 $200 $300 $400 $500 $600 $700.
Number Systems Part 2 Numerical Overflow Right and Left Shifts Storage Methods Subtraction Ranges.
Computer Science: A Structured Programming Approach Using C1 Objectives ❏ To be able to use the bitwise logical operators in programs ❏ To be able to use.
Ordering Fractions and Decimals. Steps:  Change all decimals to fractions by dividing  Write all decimals vertically aligning the decimal  Begin comparing.
Multiplying and Dividing Decimals by 10, 100, and 1,000
Chapter 4 Register Transfer and Micro -operations
Conversion of Number System Conversion Among Bases The possibilities: Hexadecimal DecimalOctal Binary
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.
Introduction to Numerical Analysis I MATH/CMPSC 455 Binary Numbers.
CPS120: Introduction to Computer Science Computer Math: Converting to Decimal.
Number Systems Binary to Decimal Octal to Decimal Hexadecimal to Decimal Binary to Octal Binary to Hexadecimal Two’s Complement.
Lesson 4-7 Example Example 1 Find 4.32 × Multiply the factors, ignoring the decimal points for now. 432 × 6 = 2592.
Ms. Nixon-Williams Grade 6 Honors Fractions, Decimals, Percent, Ratios Grade 6 Honors Fractions, Decimals, Percent, Ratios.
Octal to Decimal Hexadecimal DecimalOctal Binary.
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
Dividing a Decimal by a Decimal. Dividing Whole Numbers 12 ÷ 2 = 120 ÷ 20 = 1200 ÷ 200 = ÷ 2000 = Multiply both 12 and 2 by 10 Multiply.
Decimal Operations Jeopardy
RULE #1: Standard Scientific Notation is a number from 1 to 9 followed by a decimal and the remaining significant figures and an exponent of 10 to hold.
Integer Operations Computer Organization and Assembly Language: Module 5.
Significant Figures. Significant Figure Rules 1) ALL non-zero numbers (1,2,3,4,5,6,7,8,9) are ALWAYS significant. 1) ALL non-zero numbers (1,2,3,4,5,6,7,8,9)
Number Systems. There are 10 kinds of people in the world, those who understand binary and those who don’t.
Significant Figures Box and Dot Method. Step 1  Draw a box around all nonzero digits, beginning with the leftmost nonzero digit and ending with the rightmost.
Order of Operations ~ Use Order of Operations.
Binary Numbers Press any key to begin.. In order to understand the binary numbering system lets first look at our decimal system. The decimal numbering.
Programmable Logic Controller
Binary & Decimal numbers
Introduction To Number Systems
Part 2 Significant Figures with Calculations
Fraction Jeopardy LCM GCF $100 $200 $300 $400 $500 $600 $700 Add it up
Negative numbers: Week 10 Lesson 1
Octal to Decimal Decimal Octal Binary Hexadecimal.
Percentages Mr. Hendy Industries.
Tutorial 7.
Location in course textbook
Multiplying by powers of 10 Decimals
Chapter 1 Number Systems & Conversions
King Fahd University of Petroleum and Minerals
SCIENTIFIC NOTATION.
1. Number Systems.
Multiplying and Dividing Decimals by 10, 100, and 1,000
Multiplying & Dividing by Powers of Ten
Binary Numbers Press any key to begin..
Significant Digits Calculations.
Chapter 2 Number Systems.
Multiplying and Dividing in Scientific Notation
Chapter 2 Number Systems.
Percents and Decimals Objective:
Binary to Decimal Conversion
Chapter 2 Number Systems.
Multiplying and Dividing Decimals by 10, 100, and 1,000
Chapter 2 Number System.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.3 Logical and Arithmetic Shifts.
Chapter 2 Number Systems.
1. Number Systems Chapt. 2.
Presentation transcript:

They are the same as registers since they store binary numbers. Called shifting registers since they shift (left or right) the binary number stored in them in order to multiply or divide, by powers of 2 (2, 4, 8, 16, etc.) the binary number They are the same as registers since they store binary numbers. Called shifting registers since they shift (left or right) the binary number stored in them in order to multiply or divide, by powers of 2 (2, 4, 8, 16, etc.) the binary number 2 Operations 2 Operations: Shift-Left Operation and Shift-Right Operation

Shift-Left Operation Assume we want to multiply the decimal number 6 10 by 2 calculate the binary number equivalent to 6 10 which is: shift the binary number to the left and add 0 to the least significant bit (LSB)

Shift-Left Example Multiply the decimal number 4 10 by 4 1.Calculate the binary number equivalent to 4 10 which is: Move one shift to the left to multiply by 2 3.Move another one shift to the left to multiply again by = = =

Shift-Right Operation Assume we want to divide the decimal number by 2 calculate the binary number equivalent to which is: shift the binary number to the right

Shift-Right Example Divide the decimal number by 4 1.Calculate the binary number equivalent to which is: Move one shift to the right to divide by 2 3.Move another one shift to the right to divide again by = = = 6 10