Labs for week 7 Exploring simple mouse-paint And Primitive base changer.

Slides:



Advertisements
Similar presentations
Lesson 2-1 Example Example 2 Write seven hundred fourteen in standard form. 1.There are 7 hundreds in the number.
Advertisements

Next © Math As A Second Language All Rights Reserved Prime or Composite Numbers 4.OA#4.
Roll Dice Draw Tens Ones Standard Form Expanded Form
Objectives Learn about objects and reference variables Explore how to use predefined methods in a program.
Understanding Value of Places
Objective - To read, write and identify the values of whole numbers.
Project Plan: For my digital library, I will display Rachael Goldstein’s (my sister) pencil drawings.
Graphical User Interfaces A Quick Outlook. Interface Many methods to create and “interface” with the user 2 most common interface methods: – Console –
Place value to thousands
Grade 5 Bop Problem and Directions for Duplicating Submitted by:
Use effective written methods to add whole numbers.
Place Value and Multiplication
PowerPoint Basics Text Box Choose an area or click next to start What is a Text Box? How do I add a Text Box? How to I change the size? How do I change.
Sketchup For 3D Design. Examples.
Percents: both large and small. Remember… Percent means out of one hundred. -You are comparing two numbers as if one is a ‘part’ of an other, ‘original’
$100 $200 $300 $400 $100 $200 $300 $400 $300 $200 $100 Multiply by 1 digit numbers Multiply & estimate results Multiply by 2 digit numbers Multiply.
In Partial sums, we add the digits in the highest place value first. First we add the tens. Like this… = Notice that the “7” is in.
Steps of Addition Move your mouse over each step to see the directions.
What is the distance from Fujairah to Dubai in kilometers?  The distance from Dubai to Fujairah is 127 kilometers. he distance from Dubai to Fujairah.
Adding Two and Three Digit Numbers
Objective: Compare 3-digit numbers using the symbols: ● greater than (>) ● less than (
6 th Grade Math Tara Geidel. What number is in the tens place in 9853?
Objective Use written column addition to add three- or four-digit whole numbers. © Hamilton Trust Stepping Up Term 3 Week 2 Day 1.
© Hamilton Trust Keeping Up Term 3 Week 2 Day 1 Objective: Use written column addition to efficiently add three or four-digit whole numbers.
Math symbols Rounding 2 digit numbers to the nearest tens Rounding 3 digit numbers to the nearest tens Rounding 3 digit numbers to the nearest hundreds.
2 digit addition no regrouping drawing Dienes recap Year 2
Rounding Extra practice.
Week 1 Name ____________________ Day 1 Day 2
4,135,652 Place Value Hundred Thousands Ten Thousands Hundreds
Labs for week 2.
1 Introduction to Algebra: Integers.
Objective - To round whole numbers.
Round to the nearest 100.
Scientific Notation with Positive Powers
Rounding Review Tens and Hundreds
Rounding Review Tens and Hundreds
L l l l l l l l l l l 783.
Comparing Numbers.
Relationship of Numbers in the Place Value System
Remember hundreds, tens and units!
4,135,652 Place Value Hundred Thousands Ten Thousands Hundreds
Activity #17 Modeling Molecules.
Rounding Review Tens and Hundreds
Do Now Sit at a table with your lab group
Understanding Value of Places
Cell Simulation.
Expanded Notation , , , , , , Name: _________________________________
Choose the best answer for each problem.
Place Value and Decimals 1 – Objectives
Solve by drawing: Re-draw answer 1st draw 3 groups and cross out 1 ½
Make Ten Example: Name: ______________________
Place Value.
Divisibility 2,5 and 10.
Three Digit Subtraction
What are the main uses of Microsoft Word?
Objective - To read, write and identify the values of whole numbers.
Multi-digit Multiplication
Year 2 Spring Term Week 2 Lesson 2
Year 2 Spring Term Week 2 Lesson 2
Place Value Name: _____________________
Draw dots using 2 colors to find the “Make 10” fact.
To be able to multiply a number by 10, 100 and 1000
Comparing Numbers.
Scientific Notation with Positive Powers
Year 2 Summer Term Week 2 Lesson 2
Year 2 Summer Term Week 2 Lesson 2
(Type Answer Here) (Type Answer Here) (Type Answer Here)
Presentation transcript:

Labs for week 7 Exploring simple mouse-paint And Primitive base changer

Mousepaint Build a form with mouseup and mousedown coloring like my example that just did dots OR Build a mousepaint form that draws a default color when mouse is dragged (again like an example from the powerpoint for this week)

Primitive Base changer with no error-checking Implement a tiny base changer for 3 digit numbers. Provide a textbox for the old base and a textbox for the original number, as well as a label or textbox for the answer. Suppose b is the variable holding the old base (an integer) and value is the original integer. Go back to your digitizer lab to see how to get the one’s, ten’s and hundred’s digits. Call them x, y and z. The number in the new base is z*b*b+y*b+x.