CSCE 212 Quiz 5 – 2/23/11 Write out the steps MIPS uses to do multiplication and say why each is necessary. – An example you might use for your explanation.

Slides:



Advertisements
Similar presentations
Add title Add a picture or a description. Question 1(True) Click to type your question here I have made this an easy True/false question true False Next.
Advertisements

Cosc 2150: Computer Organization Chapter 9, Part 2 Integer multiplication and division.
 Product : the answer to an multiplication problem.  Factor : any of the numbers multiplied together in an problem.  Grouping : the order in which.
Adding and Subtracting By: Jenny Erickson. Adding in Scientific Notation and Subtracting in Scientific Notation.
1 Lecture 4: Arithmetic for Computers (Part 4) CS 447 Jason Bakos.
Multiplying and Dividing Decimals
Multiplication Using Arrays. How many paper clips are here? I could count them, but there is an easier way!
Investigation 2.2 Missing Factors
Scientific Notation Review
Multiplication properties. Multiplication properties.
Fraction Jeopardy LCMGCF It’s the same thing Add it up What’s left Multiply $100 $200 $300 $400 $500 $600 $700.
Adding and Subtracting Fractions Review
Multiplication CPSC 252 Computer Organization Ellen Walker, Hiram College.
Number Systems Part 2 Numerical Overflow Right and Left Shifts Storage Methods Subtraction Ranges.
One step equations Add Subtract Multiply Divide By: Jennifer Del-Castillo John F. Kennedy Middle School.
Quiz Name Here Click to start Question 1 Type question here Wrong Answer Right Answer.
Multiplying and Dividing Decimals by 10, 100, and 1,000
Multiplication of Decimal Fractions
Properties of Operations in Math Lesson 2. Inverse Operations Means: “putting together” a problem and “taking it apart” using the same numbers by + and.
How to Multiply using Lattice. Step 1: How many boxes to you need? 23 X 5 You need 2 boxes on top and 1 on the side.
STEP 1 Multiply the digits in the ones place. Write the product in the ones place of the answer box. If the product is greater than ten, carry the number.
STEPS FOR MULTIPLYING A 2-DIGIT NUMBER BY ANOTHER 2-DIGIT NUMBER With Partial Products.
Divide. Evaluate power – 3 = – 3 EXAMPLE – 3 = 3 2 – – 3 = 6 – 3 Multiply. Evaluate expressions Multiply and divide from.
Digital Logic Design (CSNB163)
Step 1: Place x 2 term and constant into the box 2x 2 2 PROBLEM: 2x 2 + 5x + 2.
Partial Products Multiplication Step by Step 742 X = Expand each number.
Operations with Decimals
Quiz Name Here Click to start Question 1 Type question here Wrong Answer Right Answer.
Addition Multiplication Subtraction Division. 1.If the signs are the same, add the numbers and keep the same sign = = If the.
Fractions V Mixed Numbers. Mixed Number Amixed number has a part that is a whole number and a part that is a fraction. =
Lattice Multiplication. Step 1 1)Draw a set of 2 by 2 boxes. 46 x 79 2) Cut the boxes in half diagonally. 3) Place the numbers on the outside of the boxes.
Laws of Exponents. Exponents The exponent of a number says how many times to use the number in a multiplication.
Introduction to Mathematics This prep course introduces decimals, percents, and fractions. Some reference websites can be found on the last slide of this.
Module 3 Lesson 20 Use place value strategies and the associative property n × (m × 10) = (n × m) × 10 (where n and m are less than 10) to multiply multiples.
Long multiplication – column method
Multiplication Using Arrays. How many paper clips are here? I could count them, but there is an easier way!
♣Multiplying Decimals♣
Multiplying Decimals.
Multiplication
Fraction Jeopardy LCM GCF $100 $200 $300 $400 $500 $600 $700 Add it up
Least Common Multiple.
ADDING AND SUBTRACTING FRACTIONS
Multiplying 2 and 3 Digit Do you remember….?.
CSCI206 - Computer Organization & Programming
Part II : Lecture III By Wannarat.
? 1 ten 1 ten = 10 ones How many ten?
Knowing your math operation terms
ADDING AND SUBTRACTING FRACTIONS
Multiplication
September 25, 2017 Multiple Digit Multiplication Day Warm Up
Multiplication Vocabulary
CprE 583 – Reconfigurable Computing
Multiplication Pages
King Fahd University of Petroleum and Minerals
SCIENTIFIC NOTATION.
Multiplying Decimals.
More Multiplication Properties of Exponents
Multiplication More complicated than addition
L.O. place the learning objective here
Multiplication Multiplying 3 or more digits by 2 digits.
Chapter 7 Test Remediation
Divide the number in C by 10.
Quiz Name Here Click to start.
Quiz Name Here Click to start.
Multiplying and Dividing in Scientific Notation
Percents and Decimals Objective:
LONG MULTIPLICATION is just multiplying two numbers.
How to Multiply using Lattice
Multiple Choice Quiz.
Adding and Subtracting
Presentation transcript:

CSCE 212 Quiz 5 – 2/23/11 Write out the steps MIPS uses to do multiplication and say why each is necessary. – An example you might use for your explanation is: 0110 (Multiplicand) x 0111 (Multiplier) ___ (Product)

CSCE 212 Quiz 5 Answers 1.Test multiplier: determine if it is the right most bit is 0 or 1 to see if you are going to have to add in the multiplicand. a)Add multiplicand to product if right most bit of multiplier is 1.

CSCE 212 Quiz 5 Answers 2.Shift multiplicand to the left: keeps multiplicand lined up with correct positioning in product to do add. 3.Shift multiplier right: puts next test bit in the right most position.