Name: Per: Date: Intermediate Computers - Standard 5 Programming Checklist. again" if they got it wrong. Pay attention to the IF/THEN

Size: px
Start display at page:

Download "Name: Per: Date: Intermediate Computers - Standard 5 Programming Checklist. again" if they got it wrong. Pay attention to the IF/THEN"

Transcription

1 Name: Per: Date: Intermediate Computers - Standard 5 Programming list Completed Assignment Assignment Description Commands & Hints Start-off Commands 5 quiz - Write a program that asks the user 5 Example: s and tests their answers. Your program should say, 10 Input "who is pres";p$ A "Correct, move on" if they got it right and "You missed it, try if p$="whoever" then 20 else 10 again" if they got it wrong. Pay attention to the IF/THEN statements to make sure you are jumping to the right spots. 20 Print Correct, whoever is pres so move on Formulas and Variables Mpg-Write a program that calculates how many miles per Math operators are: gallon the user got on a trip. Use input to get "miles ( ) ^ / * - + B In that order. traveled" and "gallons used" from the user. C D E F Count to 25 - Write a program that counts to 25 then stops and asks if you'd like to do that again. Then restarts if the user says, "yes" or says, "Ok, fine" if the user says no. Average Numbers-Write a program that lets the user input any number of numbers and computes the average of the set of numbers. A loop and counter will be needed. See the example for #3. Basic Menu Use Easy, mid. hard-write a program that starts with a menu that gives the user a choice of answering 5 easy s, 5 mid. Questions or 5 hard s. You may use the #1 program above for your easy quiz and just put the menu above it to get started. Watch your line numbering to stay organized. Write a program that starts with a menu and uses subroutines to organize your code. The program should calculate the area and circumference of a circle, a square, and a triangle. Use input to get length, width, base, height, etc. from the user. Let the user return to the menu after each section. Remember: miles per gallon means miles/gallons Example of a counter: 10 C=C+1 (adds 1 to C each time it's touched) Goto 10 (jumps up to line 10) Example for menu: Print "1-easy" Print 2-medium Input "which do you choose";ch If ch=1 then goto easy If ch=2 then goto medium Example for subroutine: If choice = 1 then gosub square Print Area end square: Input what is the length of a side ; aside Area=aside * aside return

2 Note: no mark at end, automatically added $

3 Note: no mark at end, automatically added $

4 Note: no mark at end, automatically added $

5 Note: no mark at end, automatically added $

6 Note: no mark at end, automatically added $

7 Note: no mark at end, automatically added $

8 Name: Period: Date: Flowchart of MPG Program Your code for MPG Program Ask how many miles traveled Ask how many gallons of gas used Calculate MPG miles/gallons Print answer If yes Would like to do this again? If no

9 Name: Period: Date: Flowchart of MPG Program Your code for MPG Program Ask how many miles traveled Ask how many gallons of gas used Calculate MPG miles/gallons 100 MPG = miles/gallons Print answer If yes Would like to do this again? If no

10 Name: Period: Date: Flowchart of Counter Program Your code for Counter Program Increment counter, C = C + 1 Print C (current value of counter) Is counter value at 25? If yes Would like to do again? If no

11 Name: Period: Date: Flowchart of Average Program Your code for Average Program Ask how many numbers you want to average Ask for a number Add number to the total, T = T + N Increment counter, C = C + 1 If no Have all numbers been collected? If yes Calculate average Print answer If yes Would like to do again? If no

Question. Insight Through

Question. Insight Through Intro Math Problem Solving October 10 Question about Accuracy Rewrite Square Root Script as a Function Functions in MATLAB Road Trip, Restaurant Examples Writing Functions that Use Lists Functions with

More information

[Page 177 (continued)] a. if ( age >= 65 ); cout << "Age is greater than or equal to 65" << endl; else cout << "Age is less than 65 << endl";

[Page 177 (continued)] a. if ( age >= 65 ); cout << Age is greater than or equal to 65 << endl; else cout << Age is less than 65 << endl; Page 1 of 10 [Page 177 (continued)] Exercises 4.11 Identify and correct the error(s) in each of the following: a. if ( age >= 65 ); cout

More information

QUIZ: What is the output of this MATLAB code? >> A = [2,4,10,13;16,3,7,18; 8,4,9,25;3,12,15,17]; >> length(a) >> size(a) >> B = A(2:3, 1:3) >> B(5)

QUIZ: What is the output of this MATLAB code? >> A = [2,4,10,13;16,3,7,18; 8,4,9,25;3,12,15,17]; >> length(a) >> size(a) >> B = A(2:3, 1:3) >> B(5) QUIZ: What is the output of this MATLAB code? >> A = [2,4,10,13;16,3,7,18; 8,4,9,25;3,12,15,17]; >> length(a) >> size(a) >> B = A(2:3, 1:3) >> B(5) QUIZ Ch.3 Introduction to MATLAB programming 3.1 Algorithms

More information

10-2 Circles. Warm Up Lesson Presentation Lesson Quiz. Holt Algebra2 2

10-2 Circles. Warm Up Lesson Presentation Lesson Quiz. Holt Algebra2 2 10-2 Circles Warm Up Lesson Presentation Lesson Quiz Holt Algebra2 2 Warm Up Find the slope of the line that connects each pair of points. 1. (5, 7) and ( 1, 6) 1 6 2. (3, 4) and ( 4, 3) 1 Warm Up Find

More information

SYMMETRY v.1 (square)

SYMMETRY v.1 (square) Symmetry with Code - v1 George Gadanidis 2017 researchideas.ca/sym 1 SYMMETRY v.1 (square) What is symmetry? I can t remember. Help! SQUARE PUZZLE My teacher loves puzzles I do too! Here is the latest

More information

Effect of Scaling on Perimeter, Area, and Volume

Effect of Scaling on Perimeter, Area, and Volume Effect of Scaling on Perimeter, Area, and Volume Reteaching 9 Math Course 3, Lesson 9 If the dimensions of a figure or object are to be changed proportionally, use these ratios between the two figures:

More information

Math-2 Lesson 6-3: Area of: Triangles, rectangles, circles and Surface Area of Pyramids

Math-2 Lesson 6-3: Area of: Triangles, rectangles, circles and Surface Area of Pyramids Math- Lesson 6-3: rea of: Triangles, rectangles, circles and Surface rea of Pyramids SM: Lesson 6-3 (rea) For the following geometric shapes, how would you answer the question; how big is it? Describe

More information

Chapter 2. The Midpoint Formula:

Chapter 2. The Midpoint Formula: Chapter 2 The Midpoint Formula: Sometimes you need to find the point that is exactly between two other points. For instance, you might need to find a line that bisects (divides into equal halves) a given

More information

Plot the points (-1,9) (4,-3), estimate (put a dot) where you think the midpoint is

Plot the points (-1,9) (4,-3), estimate (put a dot) where you think the midpoint is Algebra Review while 9 th graders are at Club Getaway 1-1 dist and mid pt cw. p. 4 (1,3,5,6,7,8, Hw p. 5 (1-10) Plot the points (-1,9) (4,-3), estimate (put a dot) where you think the midpoint is Find

More information

Unit 5. Area & Volume. Area Composite Area Surface Area Volume. Math 6 Unit 5 Calendar 1/14 1/15 1/16 1/17 1/18. Name: Math Teacher:

Unit 5. Area & Volume. Area Composite Area Surface Area Volume. Math 6 Unit 5 Calendar 1/14 1/15 1/16 1/17 1/18. Name: Math Teacher: Math 6 Unit 5 Calendar 1/14 1/15 1/16 1/17 1/18 Name: Unit 5 Area & Volume Area Composite Area Surface Area Volume Review Or Computer Lab Unit 5 Test Or Computer Lab Unit 5 Test Or Computer Lab Unit 5

More information

Real Numbers. Rational Numbers (0, 3, -1, ½⅔,.524, etc..) Fractions (1/2, -4/3, 10%,.25, etc..) Negative Integers {.

Real Numbers. Rational Numbers (0, 3, -1, ½⅔,.524, etc..) Fractions (1/2, -4/3, 10%,.25, etc..) Negative Integers {. All Numbers in the Universe Real Numbers Imaginary Numbers 1, etc.. Rational Numbers (0, 3, -1, ½⅔,.524, etc..) Irrational Numbers, 2, 3, etc.. Integers (.-3,-2,-1,0,1,2,3..) Fractions (1/2, -4/3, %,.25,

More information

QUADRATIC FUNCTIONS TEST REVIEW NAME: SECTION 1: FACTORING Factor each expression completely. 1. 3x p 2 16p. 3. 6x 2 13x 5 4.

QUADRATIC FUNCTIONS TEST REVIEW NAME: SECTION 1: FACTORING Factor each expression completely. 1. 3x p 2 16p. 3. 6x 2 13x 5 4. QUADRATIC FUNCTIONS TEST REVIEW NAME: SECTION 1: FACTORING Factor each expression completely. 1. 3x 2 48 2. 25p 2 16p 3. 6x 2 13x 5 4. 9x 2 30x + 25 5. 4x 2 + 81 6. 6x 2 14x + 4 7. 4x 2 + 20x 24 8. 4x

More information

UNIT 3 CIRCLES AND VOLUME Lesson 5: Explaining and Applying Area and Volume Formulas Instruction

UNIT 3 CIRCLES AND VOLUME Lesson 5: Explaining and Applying Area and Volume Formulas Instruction Prerequisite Skills This lesson requires the use of the following skills: understanding and using formulas for the volume of prisms, cylinders, pyramids, and cones understanding and applying the formula

More information

Surface Area and Volume

Surface Area and Volume Surface Area and Volume Day 1 - Surface Area of Prisms Surface Area = The total area of the surface of a three-dimensional object (Or think of it as the amount of paper you ll need to wrap the shape.)

More information

1.4 Perimeter, Area and Surface Area of Similar Figures

1.4 Perimeter, Area and Surface Area of Similar Figures Foundations of Math Section.4 Perimeter, rea and Surface rea of Similar Figures 35.4 Perimeter, rea and Surface rea of Similar Figures The squares shown below are similar. The corresponding sides are in

More information

Administrativia. CS107 Introduction to Computer Science. Readings. Algorithms. Expressing algorithms

Administrativia. CS107 Introduction to Computer Science. Readings. Algorithms. Expressing algorithms CS107 Introduction to Computer Science Lecture 2 An Introduction to Algorithms: and Conditionals Administrativia Lab access Searles 128: Mon-Friday 8-5pm (unless class in progress) and 6-10pm Sat, Sun

More information

MATH Ms. Becker

MATH Ms. Becker MATH 1-23-17 Ms. Becker Warm-Up: Write down 2 goals you wish to complete in Unit 5. (Area and Volume) When finished, either prepare yourself to correct your test or prepare yourself for taking notes. Agenda:

More information

Fractions. 7th Grade Math. Review of 6th Grade. Slide 1 / 306 Slide 2 / 306. Slide 4 / 306. Slide 3 / 306. Slide 5 / 306.

Fractions. 7th Grade Math. Review of 6th Grade. Slide 1 / 306 Slide 2 / 306. Slide 4 / 306. Slide 3 / 306. Slide 5 / 306. Slide 1 / 06 Slide 2 / 06 7th Grade Math Review of 6th Grade 2015-01-14 www.njctl.org Slide / 06 Table of Contents Click on the topic to go to that section Slide 4 / 06 Fractions Decimal Computation Statistics

More information

Math 8 Summer Assignment 2017 DUE: SEPTEMBER 13 TH, 2017

Math 8 Summer Assignment 2017 DUE: SEPTEMBER 13 TH, 2017 Math 8 Summer Assignment 2017 DUE: SEPTEMBER 13 TH, 2017 Name: As an incoming 8th grade math student, it is important that you are proficient in several skills from previous math courses. This assignment

More information

Counter argument against Archimedes theory

Counter argument against Archimedes theory Counter argument against Archimedes theory Copyright 007 Mohammad-Reza Mehdinia All rights reserved. Contents 1. Explanations and Links. Page 1-. Facts: Page 3-4 3. Counter argument against Archimedes

More information

Shanghai Xixun-----professional supplier of Led sign control system. Quick Guide Book of M-series control card take M10 controller for example

Shanghai Xixun-----professional supplier of Led sign control system. Quick Guide Book of M-series control card take M10 controller for example Quick Guide Book of M-series control card ------take M10 controller for example 1 1. Hardware connection as show in image 1-1 in below: a. Connect M10 controller with HUB via 50pin cable, make sure the

More information

Volume and Surface Area Unit 28 Remember Volume of a solid figure is calculated in cubic units and measures three dimensions.

Volume and Surface Area Unit 28 Remember Volume of a solid figure is calculated in cubic units and measures three dimensions. Volume and Surface Area Unit 28 Remember Volume of a solid figure is calculated in cubic units and measures three dimensions. Surface Area is calculated in square units and measures two dimensions. Prisms

More information

Essential Questions. Key Terms. Algebra. Arithmetic Sequence

Essential Questions. Key Terms. Algebra. Arithmetic Sequence Linear Equations and Inequalities Introduction Average Rate of Change Coefficient Constant Rate of Change Continuous Discrete Domain End Behaviors Equation Explicit Formula Expression Factor Inequality

More information

You MUST know the big 3 formulas!

You MUST know the big 3 formulas! Name: Geometry Pd. Unit 3 Lines & Angles Review Midterm Review 3-1 Writing equations of lines. Determining slope and y intercept given an equation Writing the equation of a line given a graph. Graphing

More information

CCBC Math 081 Geometry Section 2.2

CCBC Math 081 Geometry Section 2.2 2.2 Geometry Geometry is the study of shapes and their mathematical properties. In this section, we will learn to calculate the perimeter, area, and volume of a few basic geometric shapes. Perimeter We

More information

Adobe InDesign CC Tutorial Part 1. By Kelly Conley

Adobe InDesign CC Tutorial Part 1. By Kelly Conley Adobe InDesign CC Tutorial Part 1 By Kelly Conley 1 Table of Contents Overview Overview 3 Interface Overview 4 Documents 5 Creating and Setting a New Document 5 Text 6 Creating a Text Frame and Entering

More information

CS 1803 Individual Homework 1 Python Practice Due: Wednesday, January 26th, before 6 PM Out of 100 points

CS 1803 Individual Homework 1 Python Practice Due: Wednesday, January 26th, before 6 PM Out of 100 points CS 1803 Individual Homework 1 Python Practice Due: Wednesday, January 26th, before 6 PM Out of 100 points Files to submit: 1. HW1.py This is an INDIVIDUAL assignment! Collaboration at a reasonable level

More information

AP Computer Science Unit 3. Programs

AP Computer Science Unit 3. Programs AP Computer Science Unit 3. Programs For most of these programs I m asking that you to limit what you print to the screen. This will help me in quickly running some tests on your code once you submit them

More information

Name ANSWER KEY Date Period Score. Place your answers in the answer column. Show work clearly and neatly. FOCUS ON WHAT IS NECESSARY FOR SUCCESS!

Name ANSWER KEY Date Period Score. Place your answers in the answer column. Show work clearly and neatly. FOCUS ON WHAT IS NECESSARY FOR SUCCESS! OAKS Test Review PRACTICE Name ANSWER KEY Date Period Score Place your answers in the answer column. Show work clearly and neatly. FOCUS ON WHAT IS NECESSARY FOR SUCCESS! Solve:. n = 5. 4(4x ) = (x + 4)

More information

3. Area and perimeter.notebook November 13, All rectangles with area 12cm 2 have the same perimeter. True or false?

3. Area and perimeter.notebook November 13, All rectangles with area 12cm 2 have the same perimeter. True or false? All rectangles with area 12cm 2 have the same perimeter. True or false? Find the perimeter of the shape: Draw another shape with area a smaller perimeter. but with x y Write an expression for the perimeter

More information

Section 3.1 Objective 1: Plot Points in the Rectangular Coordinate System Video Length 12:35

Section 3.1 Objective 1: Plot Points in the Rectangular Coordinate System Video Length 12:35 Section 3.1 Video Guide The Rectangular Coordinate System and Equations in Two Variables Objectives: 1. Plot Points in the Rectangular Coordinate System 2. Determine If an Ordered Pair Satisfies an Equation

More information

Note: The last command (10-5) will generate an error message. Can you see why the calculator is having difficulty deciphering the command?

Note: The last command (10-5) will generate an error message. Can you see why the calculator is having difficulty deciphering the command? Arithmetic on the TI 8/84 Your calculator is incredibly powerful and relatively easy to use. This activity will touch on a small part of its capabilities. There are two keys that look very much alike,

More information

Math 202: Homework 6 Solutions

Math 202: Homework 6 Solutions Math 202: Homework 6 Solutions 1. ( 11.3 #6) (a) 10 in 4 in 4 in 4 in Notice that each of the bases is a square, so each of the four lateral sides are congruent. Hence, S = 2(4 2 ) + 4(4 10) = 32 + 160

More information

Algorithms (continued)

Algorithms (continued) Algorithms (continued) QUIZ What are the 3 (or 4) fundamental control structures that we use as building blocks for algorithms? Building blocks for algorithms Sequential Actions (input, output, computations)

More information

Computer Programming, I. Laboratory Manual. Experiment #2. Elementary Programming

Computer Programming, I. Laboratory Manual. Experiment #2. Elementary Programming Think Twice Code Once The Islamic University of Gaza Engineering Faculty Department of Computer Engineering Fall 2017 ECOM 2005 Khaleel I. Shaheen Computer Programming, I Laboratory Manual Experiment #2

More information

The figures below are all prisms. The bases of these prisms are shaded, and the height (altitude) of each prism marked by a dashed line:

The figures below are all prisms. The bases of these prisms are shaded, and the height (altitude) of each prism marked by a dashed line: Prisms Most of the solids you ll see on the Math IIC test are prisms or variations on prisms. A prism is defined as a geometric solid with two congruent bases that lie in parallel planes. You can create

More information

Math 7 Notes - Unit 4 Pattern & Functions

Math 7 Notes - Unit 4 Pattern & Functions Math 7 Notes - Unit 4 Pattern & Functions Syllabus Objective: (.) The student will create tables, charts, and graphs to etend a pattern in order to describe a linear rule, including integer values. Syllabus

More information

Introduction to Computer Science Unit 3. Programs

Introduction to Computer Science Unit 3. Programs Introduction to Computer Science Unit 3. Programs This section must be updated to work with repl.it Programs 1 to 4 require you to use the mod, %, operator. 1. Let the user enter an integer. Your program

More information

Chapter 1: Symmetry and Surface Area

Chapter 1: Symmetry and Surface Area Chapter 1: Symmetry and Surface Area Name: Section 1.1: Line Symmetry Line of symmetry(or reflection): divides a shape or design into two parts. Can be found using: A mirra Folding Counting on a grid Section

More information

422 UNIT 12 SOLID FIGURES. The volume of an engine s cylinders affects its power.

422 UNIT 12 SOLID FIGURES. The volume of an engine s cylinders affects its power. UNIT 12 Solid Figures The volume of an engine s cylinders affects its power. 422 UNIT 12 SOLID FIGURES Gas-powered engines are driven by little explosions that move pistons up and down in cylinders. When

More information

Dale s Freight Fuel Report Assignment. Objectives By the end of this lesson, you will be able to:

Dale s Freight Fuel Report Assignment. Objectives By the end of this lesson, you will be able to: Dale s Freight Fuel Report Assignment Objectives By the end of this lesson, you will be able to: Set up a worksheet Navigate an Excel Window Enter labels and values Create formulas using math operators

More information

10-2. Warm Up Lesson Presentation Lesson Quiz. Holt McDougal Geometry

10-2. Warm Up Lesson Presentation Lesson Quiz. Holt McDougal Geometry Warm Up Lesson Presentation Lesson Quiz Geometry Warm Up Find the unknown side lengths in each special right triangle. 1. a 30-60 -90 triangle with hypotenuse 2 ft 2. a 45-45 -90 triangle with leg length

More information

Geometric Sequences. Geometric Sequences. Warm Up Lesson Presentation Lesson Quiz. Holt McDougal Algebra 1

Geometric Sequences. Geometric Sequences. Warm Up Lesson Presentation Lesson Quiz. Holt McDougal Algebra 1 Warm Up Lesson Presentation Lesson Quiz Algebra 1 Warm Up Find the value of each expression. 1. 2 5 32 2. 2 5 3. 3 4 81 4. ( 3) 4 81 5. (0.2) 3 0.008 6. 7( 4) 2 112 7. 8. 12( 0.4) 3 0.768 Objectives Recognize

More information

Tips Use parentheses ( ) if the start or end of an interval is not included in the domain or range. o This happens when there is an open circle at a p

Tips Use parentheses ( ) if the start or end of an interval is not included in the domain or range. o This happens when there is an open circle at a p SM 2 Date: Section: Objective: Domain: The set of all (the x-values) of a relation. If a relation is represented by a graph, the domain is the set of all of points on the graph. You can think of it as

More information

Assignment: 1. (Unit-1 Flowchart and Algorithm)

Assignment: 1. (Unit-1 Flowchart and Algorithm) Assignment: 1 (Unit-1 Flowchart and Algorithm) 1. Explain: Flowchart with its symbols. 2. Explain: Types of flowchart with example. 3. Explain: Algorithm with example. 4. Draw a flowchart to find the area

More information

Measurement 1 PYTHAGOREAN THEOREM. The area of the square on the hypotenuse of a right triangle is equal to the sum of the areas of

Measurement 1 PYTHAGOREAN THEOREM. The area of the square on the hypotenuse of a right triangle is equal to the sum of the areas of Measurement 1 PYTHAGOREAN THEOREM Remember the Pythagorean Theorem: The area of the square on the hypotenuse of a right triangle is equal to the sum of the areas of the squares on the other two sides.

More information

Attendance Questions: Find the area of each shape. Round your answer to the nearest tenth. 1. An equilateral triangle with edge length 20 cm.

Attendance Questions: Find the area of each shape. Round your answer to the nearest tenth. 1. An equilateral triangle with edge length 20 cm. Page 1 of 17 Attendance Questions: Find the area of each shape. Round your answer to the nearest tenth. 1. An equilateral triangle with edge length 20 cm. Page 1 of 17 Page 2 of 17 2. A regular hexagon

More information

Area rectangles & parallelograms

Area rectangles & parallelograms Area rectangles & parallelograms Rectangles One way to describe the size of a room is by naming its dimensions. So a room that measures 12 ft. by 10 ft. could be described by saying its a 12 by 10 foot

More information

Unit 5 Day 4: Law of Sines & Area of Triangles with Sines

Unit 5 Day 4: Law of Sines & Area of Triangles with Sines Unit 5 Day 4: Law of Sines & Area of Triangles with Sines Warm-up: Draw a picture and solve. Label the picture with numbers and words including the angle of elevation/depression and height/length. 1. A

More information

Introduction to Computer Science, Winter Term Practice Assignment 3 Discussion:

Introduction to Computer Science, Winter Term Practice Assignment 3 Discussion: German University in Cairo Faculty of Media Engineering and Technology Prof. Dr. Slim Abdennadher Dr. Rimon Elias Introduction to Computer Science, Winter Term 2013-2014 Practice Assignment 3 Discussion:

More information

CSCI 111 Midterm 1, version A Exam Fall Solutions 09.00am 09.50am, Tuesday, October 13, 2015

CSCI 111 Midterm 1, version A Exam Fall Solutions 09.00am 09.50am, Tuesday, October 13, 2015 QUEENS COLLEGE Department of Computer Science CSCI 111 Midterm 1, version A Exam Fall 2015 10.13.15 Solutions 09.00am 09.50am, Tuesday, October 13, 2015 Problem 1 Write a complete C++ program that does

More information

TEACHER: CREATE PRACTICE QUIZ

TEACHER: CREATE PRACTICE QUIZ TEACHER: CREATE PRACTICE QUIZ Table of Contents Select Questions... 3 Create Practice Test: 1. Select questions... 4 Create Practice Test: 2. Add to an Existing Test... 6 Create versions & Editing Tabs...

More information

Math Mealy Mountain Collegiate. Sample Midterm Exam. Name:

Math Mealy Mountain Collegiate. Sample Midterm Exam. Name: Math 2202 Mealy Mountain Collegiate Sample Midterm Exam Name: Formulas Square Rectangle A = s 2 A = l x w P 2l 2 w Triangle C 2 r A b h 2 Circle A r 2 C d or Cube Rectangle Prism SA = 6s 2 SA =2(l x w)+2(lxh)+2(wxh)

More information

Math 7 Notes - Unit 4 Pattern & Functions

Math 7 Notes - Unit 4 Pattern & Functions Math 7 Notes - Unit 4 Pattern & Functions Syllabus Objective: (3.2) The student will create tables, charts, and graphs to extend a pattern in order to describe a linear rule, including integer values.

More information

Review for Applications of Definite Integrals Sections

Review for Applications of Definite Integrals Sections Review for Applications of Definite Integrals Sections 6.1 6.4 Math 166 Iowa State University http://orion.math.iastate.edu/dstolee/teaching/15-166/ September 4, 2015 1. What type of problem: Volume? Arc

More information

UNDERSTANDING PROBLEMS AND HOW TO SOLVE THEM BY USING COMPUTERS

UNDERSTANDING PROBLEMS AND HOW TO SOLVE THEM BY USING COMPUTERS UNDERSTANDING PROBLEMS AND HOW TO SOLVE THEM BY USING COMPUTERS INTRODUCTION TO PROBLEM SOLVING Introduction to Problem Solving Understanding problems Data processing Writing an algorithm CONTINUE.. Tool

More information

MINI LESSON. Lesson 1a Introduction to Functions

MINI LESSON. Lesson 1a Introduction to Functions MINI LESSON Lesson 1a Introduction to Functions Lesson Objectives: 1. Define FUNCTION 2. Determine if data sets, graphs, statements, or sets of ordered pairs define functions 3. Use proper function notation

More information

Properties of a Circle Diagram Source:

Properties of a Circle Diagram Source: Properties of a Circle Diagram Source: http://www.ricksmath.com/circles.html Definitions: Circumference (c): The perimeter of a circle is called its circumference Diameter (d): Any straight line drawn

More information

Assignment Guide: Chapter 11 Geometry (L3)

Assignment Guide: Chapter 11 Geometry (L3) Assignment Guide: Chapter 11 Geometry (L3) (136) 11.1 Space Figures and Cross Sections Page 692-693 #7-23 odd, 35 (137) 11.2/11.4 Surface Areas and Volumes of Prisms Page 703-705 #1, 2, 7-9, 11-13, 25,

More information

Exercise 1. Exercise 2. MAT 012 SS218 Worksheet 9 Sections Name: Consider the triangle drawn below. C. c a. A b

Exercise 1. Exercise 2. MAT 012 SS218 Worksheet 9 Sections Name: Consider the triangle drawn below. C. c a. A b Consider the triangle drawn below. C Exercise 1 c a A b B 1. Suppose a = 5 and b = 12. Find c, and then find sin( A), cos( A), tan( A), sec( A), csc( A), and cot( A). 2. Now suppose a = 10 and b = 24.

More information

Geometry Solids Identify Three-Dimensional Figures Notes

Geometry Solids Identify Three-Dimensional Figures Notes 26 Geometry Solids Identify Three-Dimensional Figures Notes A three dimensional figure has THREE dimensions length, width, and height (or depth). Intersecting planes can form three dimensional figures

More information

Rational Numbers and the Coordinate Plane

Rational Numbers and the Coordinate Plane Rational Numbers and the Coordinate Plane LAUNCH (8 MIN) Before How can you use the numbers placed on the grid to figure out the scale that is used? Can you tell what the signs of the x- and y-coordinates

More information

Here is Instructions on reading your METRIC ruler!

Here is Instructions on reading your METRIC ruler! Name Hr Length Lab Using a metric ruler or meter stick, find the length of all the items in both centimeters, and millimeters. Make sure to include the UNITS on all your answers or they will be wrong!

More information

Unit 4 End-of-Unit Assessment Study Guide

Unit 4 End-of-Unit Assessment Study Guide Circles Unit 4 End-of-Unit Assessment Study Guide Definitions Radius (r) = distance from the center of a circle to the circle s edge Diameter (d) = distance across a circle, from edge to edge, through

More information

REPRESENTING ALGORITHMS. REPRESENTING ALGORITHMS IB DP Computer science Standard Level ICS3U

REPRESENTING ALGORITHMS. REPRESENTING ALGORITHMS IB DP Computer science Standard Level ICS3U C A N A D I A N I N T E R N A T I O N A L S C H O O L O F H O N G K O N G 2.1 Introduction 2.2 Representing Algorithms algorithm should be clear, precise, and unambiguous one possibility is to use the

More information

Complete Assignment #1 listed below on WK #1 in packet. Textbook required!!!

Complete Assignment #1 listed below on WK #1 in packet. Textbook required!!! 400Algebra 2H ASSIGNMENT SHEETrev14 CHAPTER 3: Linear Functions with Review of Chapter 1 and 2 (3-1 to 3-4 Highlights on reverse side) Directions: 1. Review classwork and read each section in textbook

More information

Chapters 1.18 and 2.18 Areas, Perimeters and Volumes

Chapters 1.18 and 2.18 Areas, Perimeters and Volumes Chapters 1.18 and.18 Areas, Perimeters and Volumes In this chapter, we will learn about: From Text Book 1: 1. Perimeter of a flat shape: 1.A Perimeter of a square 1.B Perimeter of a rectangle 1.C Perimeter

More information

Perimeter, Area, Surface Area, & Volume

Perimeter, Area, Surface Area, & Volume Additional Options: Hide Multiple Choice Answers (Written Response) Open in Microsoft Word (add page breaks and/or edit questions) Generation Date: 11/25/2009 Generated By: Margaret Buell Copyright 2009

More information

1. AREAS. Geometry 199. A. Rectangle = base altitude = bh. B. Parallelogram = base altitude = bh. C. Rhombus = 1 product of the diagonals = 1 dd

1. AREAS. Geometry 199. A. Rectangle = base altitude = bh. B. Parallelogram = base altitude = bh. C. Rhombus = 1 product of the diagonals = 1 dd Geometry 199 1. AREAS A. Rectangle = base altitude = bh Area = 40 B. Parallelogram = base altitude = bh Area = 40 Notice that the altitude is different from the side. It is always shorter than the second

More information

I can position figures in the coordinate plane for use in coordinate proofs. I can prove geometric concepts by using coordinate proof.

I can position figures in the coordinate plane for use in coordinate proofs. I can prove geometric concepts by using coordinate proof. Page 1 of 14 Attendance Problems. 1. Find the midpoint between (0, x) and (y, z).. One leg of a right triangle has length 1, and the hypotenuse has length 13. What is the length of the other leg? 3. Find

More information

Math 366 Chapter 13 Review Problems

Math 366 Chapter 13 Review Problems 1. Complete the following. Math 366 Chapter 13 Review Problems a. 45 ft = yd e. 7 km = m b. 947 yd = mi f. 173 cm = m c. 0.25 mi = ft g. 67 cm = mm d. 289 in. = yd h. 132 m = km 2. Given three segments

More information

PIC PROGRAMMING START. The next stage is always the setting up of the PORTS, the symbol used to indicate this and all Processes is a Rectangle.

PIC PROGRAMMING START. The next stage is always the setting up of the PORTS, the symbol used to indicate this and all Processes is a Rectangle. PIC PROGRAMMING You have been introduced to PIC chips and the assembly language used to program them in the past number of lectures. The following is a revision of the ideas and concepts covered to date.

More information

(a) Calculate the size of angle AOB. 1 KU. The length of arc AB is 120 centimetres. Calculate the length of the clock hand.

(a) Calculate the size of angle AOB. 1 KU. The length of arc AB is 120 centimetres. Calculate the length of the clock hand. Problem Solving Questions 3 1. Contestants in a quiz have 5 seconds to answer a question. This time is indicated on the clock. The tip of the clock hand moves through the arc AB as shown. (a) Calculate

More information

The triangle

The triangle The Unit Circle The unit circle is without a doubt the most critical topic a student must understand in trigonometry. The unit circle is the foundation on which trigonometry is based. If someone were to

More information

Expressions and Variables

Expressions and Variables Expressions and Variables Expressions print(expression) An expression is evaluated to give a value. For example: 2 + 9-6 Evaluates to: 5 Data Types Integers 1, 2, 3, 42, 100, -5 Floating points 2.5, 7.0,

More information

RightStart Mathematics

RightStart Mathematics Most recent update: March 27, 2019 RightStart Mathematics Corrections and Updates for Level G/Grade 6 Lessons and Worksheets, second edition LESSON / WORKSHEET / SOLUTIONS CHANGE DATE CORRECTION OR UPDATE

More information

Solution Guide for Chapter 20

Solution Guide for Chapter 20 Solution Guide for Chapter 0 Here are the solutions for the Doing the Math exercises in Girls Get Curves! DTM from p. 351-35. In the diagram SLICE, LC and IE are altitudes of the triangle!sci. L I If SI

More information

`Three sides of a 500 square foot rectangle are fenced. Express the fence s length f as a function of height x.

`Three sides of a 500 square foot rectangle are fenced. Express the fence s length f as a function of height x. Math 140 Lecture 9 See inside text s front cover for area and volume formulas Classwork, remember units Don t just memorize steps, try to understand instead If you understand, every test problem will be

More information

RoboStamp Basic Software (A tutorial by Technotutorz)

RoboStamp Basic Software (A tutorial by Technotutorz) RoboStamp Basic Software (A tutorial by ) The Robostamp robotic kit is one of the robots used as standard in the workshops. Two versions can be built up: the izebot and the RoboTank. The Robostamp can

More information

3.1 Deepening Understandings of Volume Parts 1_2.notebook. September 05, 2018 M Jun 27 10:28 AM

3.1 Deepening Understandings of Volume Parts 1_2.notebook. September 05, 2018 M Jun 27 10:28 AM M1 115 Jun 27 10:28 AM 1 Learning Targets Jun 20 10:53 AM 2 9/4 /18 # Glue pages 1 & 2 into notebook M1: 3.1 Deepening Understanding of Volume Essential Question: How can you use what you know to calculate

More information

Find the area and perimeter of these shapes: Draw another shape with area a smaller perimeter. a larger perimeter.

Find the area and perimeter of these shapes: Draw another shape with area a smaller perimeter. a larger perimeter. Find the area and perimeter of these shapes: Draw another shape with area a smaller perimeter. Draw another shape with area a larger perimeter. but with but with Page 1 Perimeter 10cm 2cm 5cm An equilateral

More information

h b LEVEL 4 GEOMETRY

h b LEVEL 4 GEOMETRY h b LEVEL 4 GEOMETRY To the Student This resource covers topics from the British Columbia Ministry of Education s Literacy Foundations Math Level 4. You may find this resource useful if you re a Literacy

More information

Introduction to Computer Science Unit 4B. Programs: Classes and Objects

Introduction to Computer Science Unit 4B. Programs: Classes and Objects Introduction to Computer Science Unit 4B. Programs: Classes and Objects This section must be updated to work with repl.it 1. Copy the Box class and compile it. But you won t be able to run it because it

More information

Making and Editing a Table in Microsoft Word 2007

Making and Editing a Table in Microsoft Word 2007 Making and Editing a Table in Microsoft Word 2007 Table of Contents Introduction... 2 Creating a Table... 2 1. Finding the "Table" button... 2 2. Methods for making a table... 3 Editing Table Dimensions...

More information

Study Guide for Exam 2

Study Guide for Exam 2 Math 233A Intermediate Algebra Fall 202 Study Guide for Exam 2 Exam 2 is scheduled for Wednesday, October 3 rd. You may use a 3" 5" note card (both sides) and a scientific calculator. You are expected

More information

Test Booklet. Subject: MA, Grade: 10 TAKS Grade 10 Math Student name:

Test Booklet. Subject: MA, Grade: 10 TAKS Grade 10 Math Student name: Test Booklet Subject: MA, Grade: 10 TAKS Grade 10 Math 2009 Student name: Author: Texas District: Texas Released Tests Printed: Saturday July 14, 2012 1 The grid below shows the top view of a 3-dimensional

More information

Feedback Solutions THERMAL SETUP AND CONFIGURATION VERIFICATION INSTRUCTIONS

Feedback Solutions THERMAL SETUP AND CONFIGURATION VERIFICATION INSTRUCTIONS Feedback Solutions THERMAL SETUP AND CONFIGURATION VERIFICATION INSTRUCTIONS Thermal Imaging Sensors The thermal sensors are array based People Counters, with IP connectivity. This allows for direct connection

More information

CIRCLES ON TAKS NAME CLASS PD DUE

CIRCLES ON TAKS NAME CLASS PD DUE CIRCLES ON TAKS NAME CLASS PD DUE 1. On the calculator: Let s say the radius is 2. Find the area. Now let s double the radius to 4 and find the area. How do these two numbers relate? 2. The formula for

More information

1.6 Modeling with Equations

1.6 Modeling with Equations 1.6 Modeling with Equations Steps to Modeling Problems with Equations 1. Identify the variable you want to solve for. 2. Express all unknown quantities in terms of this variable. 3. Set up the model by

More information

Math 1201 Unit 5: Relations & Functions. Ch. 5 Notes

Math 1201 Unit 5: Relations & Functions. Ch. 5 Notes Math 1201 Unit 5: Relations & Functions Read Building On, Big Ideas, and New Vocabulary, p. 254 text. 5.1 Representing Relations (0.5 class) Read Lesson Focus p. 256 text. Outcomes Ch. 5 Notes 1. Define

More information

4 th Six Weeks Geometry PAP

4 th Six Weeks Geometry PAP Name Period Teacher MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY Jan 4 Student Holiday Teacher Workday Radicals Review HW: Wksht Radicals Review day 1 & Watch Video Pythagorean Theorem.1 Working with Pythagorean

More information

Short question # 01 LONG QUESTION

Short question # 01 LONG QUESTION Short question # 01 1. Define Algorithm 2. What is syntax error? 3. Explain Bug in Computer Program? 4. Write two advantages of flowchart 5. Define problem solving 6. Define the process of Analyzing 7.

More information

CP1 Math 2 Cumulative Exam Review

CP1 Math 2 Cumulative Exam Review Name February 9-10, 2016 If you already printed the online copy of this document, there are answer corrections on pages 4 and 8 (shaded). Deductive Geometry (Ch. 6) Writing geometric proofs Triangle congruence

More information

12.4 Volume of Prisms, Cylinders, Pyramids, and Cones. Geometry Mr. Peebles Spring 2013

12.4 Volume of Prisms, Cylinders, Pyramids, and Cones. Geometry Mr. Peebles Spring 2013 12.4 Volume of Prisms, Cylinders, Pyramids, and Cones Geometry Mr. Peebles Spring 2013 Geometry Bell Ringer Find the volume of the cylinder with a radius of 7 in. and a height of 10 in. Please leave your

More information

Write down a formula for the surface area of a Prism and a Cylinder

Write down a formula for the surface area of a Prism and a Cylinder Write down a formula for the surface area of a Prism and a Cylinder Quiz Thursday Naming Figures Cross Sections Nets Lateral Area, Surface Area Prisms and cylinders have 2 congruent parallel bases. A lateral

More information

Guided Problem Solving

Guided Problem Solving -1 Guided Problem Solving GPS Student Page 57, Exercises 1 1: Match each rule with the correct translation. A. (x, y) (x, y 1 ) I. P(, 1) P (3, ) B. (x, y) (x 1 3, y) II. Q(3, 0) Q (3, ) C. (x, y) (x 1,

More information

Instructor s Manual. Perl How to Program

Instructor s Manual. Perl How to Program Instructor s Manual for Perl How to Program Harvey M. Deitel Paul J. Deitel Tem R. Nieto David C. McPhie 2001 Deitel & Associates, Inc. and Prentice Hall. All Rights Reserved. Contents Preface iv 1 Introduction

More information

Measurement Unit. This booklet belongs to:

Measurement Unit. This booklet belongs to: Measurement Unit This booklet belongs to: LESSON # DATE QUESTIONS FROM NOTES 1 2 3 4 5 6 7 8 Questions to review This booklet is homework and will be collected on the test day. Your teacher has important

More information

Stratford upon Avon School Mathematics Homework Booklet

Stratford upon Avon School Mathematics Homework Booklet Stratford upon Avon School Mathematics Homework Booklet Year: 7 Scheme: 1 Term: 1 Name: Show your working out here Homework Sheet 1 1: Write 7:43 pm using the 24 hour clock 11: Find the area of this shape.

More information

Dataflow Testing. Definitions 2

Dataflow Testing. Definitions 2 Dataflow Testing Dataflow Analysis Can reveal interesting bugs Dataflow Testing Chapter 9 Testing All-Nodes and All-Edges in a control flow graph may miss significant test cases Testing All-Paths in a

More information