LAB 2 INTRODUCTION TO PROGRAMMING

Size: px
Start display at page:

Download "LAB 2 INTRODUCTION TO PROGRAMMING"

Transcription

1 LAB 2 INTRODUCTION TO PROGRAMMING School of Computer and Communication Engineering Universiti Malaysia Perlis 1

2 OBJECTIVES 1. Clear understanding of sequential, selection and repetition structure to solve programming problem. [Jelas mengenai struktur turutan, pilihan dan gelung untuk menyelesaikan masalah pemprograman.] 2. Able to implement single or combination of the mentioned structures in programming problem solving. [Berupaya menggunakan satu atau kombinasi struktur yang telah dinyatakan di dalam menyelesaikan masalah pemprograman.] NOTES 1. Programming problem can be solved using an algorithm. An algorithm is a method to solve computing problem involving executions of series of actions in specific order. 2. Algorithm can be represented in pseudocode and/or flowchart. 3. Pseudocode is artificial and informal language that helps programmers develop algorithms. For example: if student s mark is greater than or equal to 50 Print Pass else Print Fail 4. Flowchart is a visual form of an algorithm. For example: marks>=50 Print pass Print fail 2

3 5. These are basic symbols in a flowchart. The oval shape denotes the starting or ending of a program. The rectangular shape denotes process that is to be performed. The process can be calculation of a formula or initialization of a value. The skewed rectangular can denote reading input or displaying output. The diamond shape takes up a variable and perform comparison. The result of the comparison is a decision which can be true or false. The arrow shows the flow or direction of actions in an algorithm. The circle shape denotes as a connector to subsequent actions. 6. During problem analysis, programmers have to decide the structure to be used in order to solve the programming problems. The structure can be a simple sequential structure and/or combinations of selection or repetition structures. 7. Sequential structure is a series of steps executed sequentially by default. For example: A program that calculates and prints the sum of two integers A and B. 3

4 8. Selection structure choose or select among alternative courses of actions. For example: A program prints pass if marks entered by user is greater or equal than 50. Otherwise it prints fail. 1. Flowchart Pseudocode 1. Start Start 2. Read mark 3. If mark is greater or equal than 50 Read mark 3.1 print pass else 3.2 print fail 4. End True mark>=50 Print pass False Print fail 4 End

5 9. Repetition structure specifies a block of one or more statements that are repeatedly executed until a condition is satisfied. For example: A program calculates and prints sum of numbers from 1 to 5. Pseudocode 1. Start 2. Initialize counter to 1 and sum to 0 3. While counter is less than 5 a. Calculate sum b. Update counter 4. Print sum 5. End Flowchart Start Initialize counter = 1, sum = 0 False counter <=5 True Calculate sum = sum + counter Update counter by 1 Print sum End 5

6 LAB EXERCISE Produce either a flowchart or pseudocode to these given problems. 1. Your Mathematics lecturer asks you to write a program in C to calculate excess volume of cylinders. The excessive volume is described in the figure given below whereby it is calculated by subtracting bigger cylinder volume with smaller cylinder volume. Given formula to calculate volume of a cylinder: Volume of a cylinder = π * radius * radius * height rbig hsmall hbig rsmall Sample output is given below. This program calculates excess volume of cylinders Enter bigger cylinder radius and height : 4 5 Enter smaller cylinder radius and height : 2 3 Volume bigger cylinder : Volume smaller cylinder : Excess volume : a) Identify how many and what is/are the input and output b) Identify what is to be calculated 6

7 2. A program tasks are to find the equivalent series and parallel resistance for 3 resistor values. Your program should read the 3 resistor values and then compute the equivalent series and parallel resistance for all 3 resistors. For example, if the 3 resistor values are r1=100, r2=200 and r3=300 ohms, respectively, their equivalent series resistance is r1 + r2 + r3 = = 600 ohms and their equivalent parallel resistance = 1 / [1/r1 + 1/r2 + 1/r3] = 1/[ ] = ohms. a) Identify how many and what is/are the input and output b) Identify what is to be calculated 7

8 3. Produce a C program that takes the x-y coordinates of a point in the Cartesian plane illustrated in figure below and displays a message telling either an axis on which the point lies or the quadrant in which it is found. y QI QIII QI QIV Q x Sample lines of output: (-1.0, -2.5) is in quadrant III (0.0, 4.8) is on the y axis a) Identify how many and what is/are the input and output b) Identify what variable that is used to perform comparison c) Is there any calculation involved? 8

9 4. A program identify whether a letter that is entered is a vowel or consonant. a) Identify how many and what is/are the input and output b) Identify what variable that is used to perform comparison c) Is there any calculation involved? 9

10 5. A program containing a loop to display a) Identify how many and what is/are the input and output. Think! Should I need input to display this patterns? b) Identify what variable that is used to perform comparison so that you can perform repetition c) Is there any calculation involved? 10

11 6. A program read marks for 10 students. If marks is greater than 50, student passes else they fail. Count how many students pass and fail and, print the result. a) Identify how many and what is/are the input and output. b) Identify what variable that is used to perform comparison so that you can perform selection and/or repetition c) Is there any calculation involved? 11

12 7. A program mimics a calculator. The program should take as input two integers and the operation to be performed. It should then output the numbers, the operator, and the result. (For division, if the denominator is zero, output an appropriate message.) Some sample outputs as follow : Please enter 2 integers: 4 2 Please enter an operator (+, -, *,/): * Result : 8 Do you want to continue : y or n?y Please enter 2 integers: 2 0 Please enter an operator (+, -, *,/): / ERROR denominator is zero!cannot divide by zero Do you want to continue : y or n?n 12

13 8. Construction engineers use concrete to build high-rise buildings. Since concrete nearly is incapable of resisting tension loads, reinforcing steel, known as rebar, is embedded in concrete to resist tension. The bar is available in a number of sizes. Table 1 shows the ASTM (American Society for Testing and Materials) standard reinforcing bars size, weight, and diameter: Table 1 Size Weight (lb./ft.) Diameter (in.) Write a C program to calculate the total weight of the rebar for 5 sets of data by input value of rebar size and length. Formula: Total Weight = Length* Weight Tips: Use selection to differentiate the size of rebar and loop to repeat the process.. Sample Output: Program to Calculate the Total Weight of the Rebar. Please Enter Size (2,3,4,5 or 6) and Length of Rebar: Rebar Size 4, Diameter inches and Length ft Total Weight lb Please Enter Size (2,3,4,5 or 6) and Length of Rebar: Rebar Size 2, Diameter inches and Length ft Total Weight lb : Please Enter Size (2,3,4,5 or 6) and Length of Rebar: Rebar Size 2, Diameter inches and Length ft Total Weight lb 13

LAB 5: REPETITION STRUCTURE(LOOP)

LAB 5: REPETITION STRUCTURE(LOOP) LAB 5: REPETITION STRUCTURE(LOOP) OBJECTIVES 1. To introduce two means of repetition/loop structures; counter-controlled and sentinelcontrolled. 2. To introduce the repetition structures; for, while, do-while

More information

LAB 5: REPETITION STRUCTURE(LOOP)

LAB 5: REPETITION STRUCTURE(LOOP) LAB 5: REPETITION STRUCTURE(LOOP) OBJECTIVES 1. To introduce two means of repetition/loop structures; counter-controlled and sentinelcontrolled. 2. To introduce the repetition structures; for, while, do-while

More information

Each point P in the xy-plane corresponds to an ordered pair (x, y) of real numbers called the coordinates of P.

Each point P in the xy-plane corresponds to an ordered pair (x, y) of real numbers called the coordinates of P. Lecture 7, Part I: Section 1.1 Rectangular Coordinates Rectangular or Cartesian coordinate system Pythagorean theorem Distance formula Midpoint formula Lecture 7, Part II: Section 1.2 Graph of Equations

More information

C Programming for Engineers Structured Program

C Programming for Engineers Structured Program C Programming for Engineers Structured Program ICEN 360 Spring 2017 Prof. Dola Saha 1 Switch Statement Ø Used to select one of several alternatives Ø useful when the selection is based on the value of

More information

Math 3 Coordinate Geometry part 1 Unit November 3, 2016

Math 3 Coordinate Geometry part 1 Unit November 3, 2016 Reviewing the basics The number line A number line is a visual representation of all real numbers. Each of the images below are examples of number lines. The top left one includes only positive whole numbers,

More information

Sect Volume. 3 ft. 2 ft. 5 ft

Sect Volume. 3 ft. 2 ft. 5 ft 199 Sect 8.5 - Volume Objective a & b: Understanding Volume of Various Solids The Volume is the amount of space a three dimensional object occupies. Volume is measured in cubic units such as in or cm.

More information

Graphs of Equations. MATH 160, Precalculus. J. Robert Buchanan. Fall Department of Mathematics. J. Robert Buchanan Graphs of Equations

Graphs of Equations. MATH 160, Precalculus. J. Robert Buchanan. Fall Department of Mathematics. J. Robert Buchanan Graphs of Equations Graphs of Equations MATH 160, Precalculus J. Robert Buchanan Department of Mathematics Fall 2011 Objectives In this lesson we will learn to: sketch the graphs of equations, find the x- and y-intercepts

More information

Math 2 Coordinate Geometry Part 1 Slope & Transformations

Math 2 Coordinate Geometry Part 1 Slope & Transformations Math 2 Coordinate Geometry Part 1 Slope & Transformations 1 MATH 1 REVIEW: THE NUMBER LINE A number line is a visual representation of all real numbers. Each of the images below are examples of number

More information

Summer Packet 7 th into 8 th grade. Name. Integer Operations = 2. (-7)(6)(-4) = = = = 6.

Summer Packet 7 th into 8 th grade. Name. Integer Operations = 2. (-7)(6)(-4) = = = = 6. Integer Operations Name Adding Integers If the signs are the same, add the numbers and keep the sign. 7 + 9 = 16 - + -6 = -8 If the signs are different, find the difference between the numbers and keep

More information

BIL101E: Introduction to Computers and Information systems Lecture 8

BIL101E: Introduction to Computers and Information systems Lecture 8 BIL101E: Introduction to Computers and Information systems Lecture 8 8.1 Algorithms 8.2 Pseudocode 8.3 Control Structures 8.4 Decision Making: Equality and Relational Operators 8.5 The if Selection Structure

More information

2. The Wheel of Theodorus in Problem 4.1 includes only the first 11 triangles in the wheel. The wheel can go on forever.

2. The Wheel of Theodorus in Problem 4.1 includes only the first 11 triangles in the wheel. The wheel can go on forever. A C E Applications Connections Extensions Applications 1. The hypotenuse of a right triangle is 15 centimeters long. One leg is 9 centimeters long. How long is the other leg? 2. The Wheel of Theodorus

More information

Measurement and Geometry: Area and Volume of Geometric Figures and Objects *

Measurement and Geometry: Area and Volume of Geometric Figures and Objects * OpenStax-CNX module: m35023 1 Measurement and Geometry: and Volume of Geometric Figures and Objects * Wade Ellis Denny Burzynski This work is produced by OpenStax-CNX and licensed under the Creative Commons

More information

Number Sense Third Grade Fourth Grade Fifth Grade MA.4.NS.1.a.1: Read, demonstrate, and write whole numbers up to 500.

Number Sense Third Grade Fourth Grade Fifth Grade MA.4.NS.1.a.1: Read, demonstrate, and write whole numbers up to 500. Number Sense MA.4.NS.1.a.1: Read, demonstrate, and write whole numbers up to 500. MA.3.NS.1.a.1: Read, demonstrate, and write whole numbers up to 200, in standard and word form. MA.3.NS.2.a.1: Compare

More information

Adding Integers. Unit 1 Lesson 6

Adding Integers. Unit 1 Lesson 6 Unit 1 Lesson 6 Students will be able to: Add integers using rules and number line Key Vocabulary: An integer Number line Rules for Adding Integers There are two rules that you must follow when adding

More information

Section 4.1: Introduction to Trigonometry

Section 4.1: Introduction to Trigonometry Section 4.1: Introduction to Trigonometry Review of Triangles Recall that the sum of all angles in any triangle is 180. Let s look at what this means for a right triangle: A right angle is an angle which

More information

Student Outcomes. Classwork. Opening Exercises 1 2 (5 minutes)

Student Outcomes. Classwork. Opening Exercises 1 2 (5 minutes) Student Outcomes Students use the Pythagorean Theorem to determine an unknown dimension of a cone or a sphere. Students know that a pyramid is a special type of cone with triangular faces and a rectangular

More information

LAB 2.1 INTRODUCTION TO C PROGRAMMING

LAB 2.1 INTRODUCTION TO C PROGRAMMING LAB 2.1 INTRODUCTION TO C PROGRAMMING School of Computer and Communication Engineering Universiti Malaysia Perlis 1 1. OBJECTIVES: 1.1 To be able to apply basic rules and structures of C in writing a simple

More information

SENIOR HIGH MATH LEAGUE April 24, 2001 SECTION I: ONE POINT EACH

SENIOR HIGH MATH LEAGUE April 24, 2001 SECTION I: ONE POINT EACH GROUP V OPEN DIVISION TEST A Unless otherwise stated give exact answers. 1. Find the quotient when 8x 3 +1 is divided by 2 x + 1. 2. Given f ( x) = 5x 2b while g (x) = 4bx. If f (g(1)) = 36, what is g

More information

Precalculus 4.1 Notes Angle Measures, Arc Length, and Sector Area

Precalculus 4.1 Notes Angle Measures, Arc Length, and Sector Area Precalculus 4.1 Notes Angle Measures, Arc Length, and Sector Area An angle can be formed by rotating one ray away from a fixed ray indicated by an arrow. The fixed ray is the initial side and the rotated

More information

Name: Target 12.2: Find and apply surface of Spheres and Composites 12.2a: Surface Area of Spheres 12.2b: Surface Area of Composites Solids

Name: Target 12.2: Find and apply surface of Spheres and Composites 12.2a: Surface Area of Spheres 12.2b: Surface Area of Composites Solids Unit 12: Surface Area and Volume of Solids Target 12.0: Euler s Formula and Introduction to Solids Target 12.1: Find and apply surface area of solids 12.1a: Surface Area of Prisms and Cylinders 12.1b:

More information

Outline. Program development cycle. Algorithms development and representation. Examples.

Outline. Program development cycle. Algorithms development and representation. Examples. Outline Program development cycle. Algorithms development and representation. Examples. 1 Program Development Cycle Program development cycle steps: Problem definition. Problem analysis (understanding).

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

Grade 5. Massachusetts Curriculum Framework for Mathematics 48

Grade 5. Massachusetts Curriculum Framework for Mathematics 48 Grade 5 Introduction In grade 5, instructional time should focus on four critical areas: (1) developing fluency with addition and subtraction of fractions, and developing understanding of the multiplication

More information

2. a. approximately cm 3 or 9p cm b. 20 layers c. approximately cm 3 or 180p cm Answers will vary.

2. a. approximately cm 3 or 9p cm b. 20 layers c. approximately cm 3 or 180p cm Answers will vary. Answers Investigation ACE Assignment Choices Problem. Core Other Connections Problem. Core,, Other Applications 7, ; Connections 7 0; unassigned choices from previous problems Problem. Core 7 Other Connections,

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

Basic and Intermediate Math Vocabulary Spring 2017 Semester

Basic and Intermediate Math Vocabulary Spring 2017 Semester Digit A symbol for a number (1-9) Whole Number A number without fractions or decimals. Place Value The value of a digit that depends on the position in the number. Even number A natural number that is

More information

MA 154 Lesson 1 Delworth

MA 154 Lesson 1 Delworth DEFINITIONS: An angle is defined as the set of points determined by two rays, or half-lines, l 1 and l having the same end point O. An angle can also be considered as two finite line segments with a common

More information

CW Middle School. Math RtI 7 A. 4 Pro cient I can add and subtract positive fractions with unlike denominators and simplify the result.

CW Middle School. Math RtI 7 A. 4 Pro cient I can add and subtract positive fractions with unlike denominators and simplify the result. 1. Foundations (14.29%) 1.1 I can add and subtract positive fractions with unlike denominators and simplify the result. 4 Pro cient I can add and subtract positive fractions with unlike denominators and

More information

Example 1: Give the coordinates of the points on the graph.

Example 1: Give the coordinates of the points on the graph. Ordered Pairs Often, to get an idea of the behavior of an equation, we will make a picture that represents the solutions to the equation. A graph gives us that picture. The rectangular coordinate plane,

More information

Three-Dimensional Coordinate Systems

Three-Dimensional Coordinate Systems Jim Lambers MAT 169 Fall Semester 2009-10 Lecture 17 Notes These notes correspond to Section 10.1 in the text. Three-Dimensional Coordinate Systems Over the course of the next several lectures, we will

More information

Volume of Cylinders. Volume of Cones. Example Find the volume of the cylinder. Round to the nearest tenth.

Volume of Cylinders. Volume of Cones. Example Find the volume of the cylinder. Round to the nearest tenth. Volume of Cylinders As with prisms, the area of the base of a cylinder tells the number of cubic units in one layer. The height tells how many layers there are in the cylinder. The volume V of a cylinder

More information

Section 7.2 Volume: The Disk Method

Section 7.2 Volume: The Disk Method Section 7. Volume: The Disk Method White Board Challenge Find the volume of the following cylinder: No Calculator 6 ft 1 ft V 3 1 108 339.9 ft 3 White Board Challenge Calculate the volume V of the solid

More information

Integer Operations. Summer Packet 7 th into 8 th grade 1. Name = = = = = 6.

Integer Operations. Summer Packet 7 th into 8 th grade 1. Name = = = = = 6. Summer Packet 7 th into 8 th grade 1 Integer Operations Name Adding Integers If the signs are the same, add the numbers and keep the sign. 7 + 9 = 16-2 + -6 = -8 If the signs are different, find the difference

More information

Geometry: Notes

Geometry: Notes Geometry: 11.5-11.8 Notes NAME 11.5 Volumes of Prisms and Cylinders Date: Define Vocabulary: volume Cavalieri s Principle density similar solids Examples: Finding Volumes of Prisms 1 Examples: Finding

More information

Mapping Common Core State Standard Clusters and. Ohio Grade Level Indicator. Grade 5 Mathematics

Mapping Common Core State Standard Clusters and. Ohio Grade Level Indicator. Grade 5 Mathematics Mapping Common Core State Clusters and Ohio s Grade Level Indicators: Grade 5 Mathematics Operations and Algebraic Thinking: Write and interpret numerical expressions. Operations and Algebraic Thinking:

More information

Praxis Elementary Education: Mathematics Subtest (5003) Curriculum Crosswalk. Required Course Numbers. Test Content Categories.

Praxis Elementary Education: Mathematics Subtest (5003) Curriculum Crosswalk. Required Course Numbers. Test Content Categories. Page 1 I. Numbers and Operations (40%) A. Understands the place value system 1. Writes numbers using base-10 numerals, number names, and expanded form 2. Composes and decomposes multi-digit numbers 3.

More information

Grade K 8 Standards Grade 5

Grade K 8 Standards Grade 5 Grade 5 In grade 5, instructional time should focus on three critical areas: (1) developing fluency with addition and subtraction of fractions, and developing understanding of the multiplication of fractions

More information

Practice A Introduction to Three-Dimensional Figures

Practice A Introduction to Three-Dimensional Figures Name Date Class Identify the base of each prism or pyramid. Then choose the name of the prism or pyramid from the box. rectangular prism square pyramid triangular prism pentagonal prism square prism triangular

More information

Lesson 9. Three-Dimensional Geometry

Lesson 9. Three-Dimensional Geometry Lesson 9 Three-Dimensional Geometry 1 Planes A plane is a flat surface (think tabletop) that extends forever in all directions. It is a two-dimensional figure. Three non-collinear points determine a plane.

More information

Mathematics Grade 5. grade 5 33

Mathematics Grade 5. grade 5 33 Mathematics Grade 5 In Grade 5, instructional time should focus on three critical areas: (1) developing fluency with addition and subtraction of fractions, and developing understanding of the multiplication

More information

ALGORITHMS AND FLOWCHARTS

ALGORITHMS AND FLOWCHARTS ALGORITHMS AND FLOWCHARTS ALGORITHMS AND FLOWCHARTS A typical programming task can be divided into two phases: Problem solving phase produce an ordered sequence of steps that describe solution of problem

More information

Franklin Math Bowl 2008 Group Problem Solving Test Grade 6

Franklin Math Bowl 2008 Group Problem Solving Test Grade 6 Group Problem Solving Test Grade 6 1. The fraction 32 17 can be rewritten by division in the form 1 p + q 1 + r Find the values of p, q, and r. 2. Robert has 48 inches of heavy gauge wire. He decided to

More information

Defns An angle is in standard position if its vertex is at the origin and its initial side is on the -axis.

Defns An angle is in standard position if its vertex is at the origin and its initial side is on the -axis. Math 335 Trigonometry Sec 1.1: Angles Terminology Line AB, Line segment AB or segment AB, Ray AB, Endpoint of the ray AB is A terminal side Initial and terminal sides Counterclockwise rotation results

More information

Course Outlines. Elementary Mathematics (Grades K-5) Kids and Numbers (Recommended for K-1 students)

Course Outlines. Elementary Mathematics (Grades K-5) Kids and Numbers (Recommended for K-1 students) Course Outlines Elementary Mathematics (Grades K-5) Kids and Numbers (Recommended for K-1 students) Shapes and Patterns. Grouping objects by similar properties. Identifying simple figures within a complex

More information

Achievement Level Descriptors Mathematics Grade 5

Achievement Level Descriptors Mathematics Grade 5 Achievement Level Descriptors Mathematics Grade 5 ALD Standard Level 2 Level 3 Level 4 Level 5 Policy demonstrate a below satisfactory level of success with the challenging content of the Florida Standards.

More information

MATHEMATICS FOR ENGINEERING TUTORIAL 5 COORDINATE SYSTEMS

MATHEMATICS FOR ENGINEERING TUTORIAL 5 COORDINATE SYSTEMS MATHEMATICS FOR ENGINEERING TUTORIAL 5 COORDINATE SYSTEMS This tutorial is essential pre-requisite material for anyone studying mechanical engineering. This tutorial uses the principle of learning by example.

More information

C++ Programming Language Lecture 2 Problem Analysis and Solution Representation

C++ Programming Language Lecture 2 Problem Analysis and Solution Representation C++ Programming Language Lecture 2 Problem Analysis and Solution Representation By Ghada Al-Mashaqbeh The Hashemite University Computer Engineering Department Program Development Cycle Program development

More information

Mathematics - LV 6 Correlation of the ALEKS course Mathematics MS/LV 6 to the State of Texas Assessments of Academic Readiness (STAAR) for Grade 6

Mathematics - LV 6 Correlation of the ALEKS course Mathematics MS/LV 6 to the State of Texas Assessments of Academic Readiness (STAAR) for Grade 6 Mathematics - LV 6 Correlation of the ALEKS course Mathematics MS/LV 6 to the State of Texas Assessments of Academic Readiness (STAAR) for Grade 6 Number, Operation, and Quantitative Reasoning. 6.1.A:

More information

Sail into Summer with Math!

Sail into Summer with Math! Sail into Summer with Math! For Students Entering Math C This summer math booklet was developed to provide students in kindergarten through the eighth grade an opportunity to review grade level math objectives

More information

Structured Program Development

Structured Program Development Structured Program Development Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan Outline Introduction The selection statement if if.else switch The

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

2003/2010 ACOS MATHEMATICS CONTENT CORRELATION GRADE ACOS 2010 ACOS

2003/2010 ACOS MATHEMATICS CONTENT CORRELATION GRADE ACOS 2010 ACOS CURRENT ALABAMA CONTENT PLACEMENT 5.1 Demonstrate number sense by comparing, ordering, rounding, and expanding whole numbers through millions and decimals to thousandths. 5.1.B.1 2003/2010 ACOS MATHEMATICS

More information

3/12/2018. Structures. Programming in C++ Sequential Branching Repeating. Loops (Repetition)

3/12/2018. Structures. Programming in C++ Sequential Branching Repeating. Loops (Repetition) Structures Programming in C++ Sequential Branching Repeating Loops (Repetition) 2 1 Loops Repetition is referred to the ability of repeating a statement or a set of statements as many times this is necessary.

More information

Oral and Mental calculation

Oral and Mental calculation Oral and Mental calculation Read and write any integer and know what each digit represents. Read and write decimal notation for tenths, hundredths and thousandths and know what each digit represents. Order

More information

Decimals. Chapter Five

Decimals. Chapter Five Chapter Five Decimals 5.1 Introductions to Decimals 5.2 Adding & Subtracting Decimals 5.3 Multiplying Decimals & Circumference of a Circle 5.4 Dividing Decimals 5.5 Fractions, Decimals, & Order of Operations

More information

Exploring Transformations

Exploring Transformations Math Objectives Students will identify the coordinates of a shape that has been translated. Students will identify the coordinates of a shape that has been reflected. Students will determine the original

More information

GRADE 5. Operations & Algebraic Thinking - Domain

GRADE 5. Operations & Algebraic Thinking - Domain Write and interpret numerical expressions. CLUSTERS: 1. Use parentheses, brackets, or braces in numerical expressions, and evaluate expressions with these symbols. 2. Write simple expressions that record

More information

Presents. The Common Core State Standards Checklist Grades 3-5

Presents. The Common Core State Standards Checklist Grades 3-5 Presents The Common Core State Standards Checklist Grades 3-5 Third Grade Common Core State Standards Third Grade: Operations and Algebraic Thinking Represent and Solve problems involving Multiplication

More information

Addition Properties. Properties something you cannot disprove always true. *You must memorize these properties!

Addition Properties. Properties something you cannot disprove always true. *You must memorize these properties! Addition Properties Properties something you cannot disprove always true. *You must memorize these properties! 1) Commutative property of addition changing the order of addends will not change the sum

More information

TAKS Mathematics Practice Tests Grade 6, Test B

TAKS Mathematics Practice Tests Grade 6, Test B Question TAKS Objectives TEKS Student Expectations 1 Obj. 4 The student will demonstrate an uses of measurement. (6.8) (A) estimate measurements and evaluate reasonableness of results. 2 Obj. 3 The student

More information

Common Core State Standard for Mathematics

Common Core State Standard for Mathematics Domain: Operations and Algebraic Clusters: Write and interpret numerical expressions 1. Use parentheses, brackets, or braces in numerical expressions and evaluate expressions with these symbols. CC.5.OA.1

More information

d = (x 2 - x 1 ) 2 + (y 2 - y 1 ) 2 Student Name: Date: Teacher Name: Sunil Dudeja Score:

d = (x 2 - x 1 ) 2 + (y 2 - y 1 ) 2 Student Name: Date: Teacher Name: Sunil Dudeja Score: Geometry EOC (GSE) Quiz Answer Key Equations and Measurement - (MGSE9 12.G.GPE.4) Use Coordinates For Theorems, (MGSE9 12.G.GPE.5 ) Prove Slope Criteria, (MGSE9 12.G.GPE.6) Find The Point, (MGSE9 12.G.GPE.7

More information

Fundamentals of Programming. Lecture 6: Structured Development (part one)

Fundamentals of Programming. Lecture 6: Structured Development (part one) Fundamentals of Programming Lecture 6: Structured Development (part one) Instructor: Fatemeh Zamani f_zamani@ce.sharif.edu edu Sharif University of Technology Computer Engineering Department Outline Algorithms

More information

Common Core State Standards & Long-Term Learning Targets Math, Grade 5

Common Core State Standards & Long-Term Learning Targets Math, Grade 5 Common Core State Standards & Long-Term Learning Targets Math, Grade 5 Grade level 5 Discipline(s) CCSS - Math Dates April, 2012 Author(s) Dirk Matthias & Myra Brooks Fluency is defined as accuracy, efficiency,

More information

Student Name: OSIS#: DOB: / / School: Grade:

Student Name: OSIS#: DOB: / / School: Grade: Grade 5th Math CCLS: Operations and Algebraic Thinking Write and interpret numerical expressions. 5.OA. 5.OA. 5.OA. Use parentheses, brackets, or braces in numerical expressions, and evaluate expressions

More information

Homework Helper Answer Key

Homework Helper Answer Key Lesson 9-1 Translations 1. III 2. (2, 11) 3. a. B 4. a. Point T: ( 7, 9) Point U: ( 4, 9) Point V: ( 5, 3) b. ( 8, 0) 5. B 6. a. A, C, D b. D 7. a. Answers will vary. Lesson 9-2 Reflections 1. (4, 2) 2.

More information

WHOLE NUMBER AND DECIMAL OPERATIONS

WHOLE NUMBER AND DECIMAL OPERATIONS WHOLE NUMBER AND DECIMAL OPERATIONS Whole Number Place Value : 5,854,902 = Ten thousands thousands millions Hundred thousands Ten thousands Adding & Subtracting Decimals : Line up the decimals vertically.

More information

Volume of Prisms and Cylinders

Volume of Prisms and Cylinders Name Date Teacher Practice A Volume of Prisms and Cylinders Find the volume of each figure to the nearest tenth of a unit. Prism: V = Bh. Cylinder: V = π 2 r h. Use 3.14 for π. 1. 2. 3. 4. 5. 6. 7. 8.

More information

3rd grade students: 4th grade students: 5th grade students: 4.A Use the four operations with whole numbers to solve problems.

3rd grade students: 4th grade students: 5th grade students: 4.A Use the four operations with whole numbers to solve problems. 3rd grade students: 4th grade students: 5th grade students: 3.A Represent and solve problems involving multiplication and division. A.1 Interpret the factors and products in whole number multiplication

More information

Common Core Standards 5 th Grade - Mathematics

Common Core Standards 5 th Grade - Mathematics Common Core Standards 5 th Grade - Mathematics Operations and Algebraic Thinking Write and interpret numerical expressions. 1. Use parenthesis, brackets, or braces in numerical expressions, and evaluate

More information

Gulfport School District Common Core Pacing Guide Prepared by the Department of Instructional Programs and teachers of the Gulfport School District

Gulfport School District Common Core Pacing Guide Prepared by the Department of Instructional Programs and teachers of the Gulfport School District Prepared by the Department of Instructional Programs and teachers of the Mathematics Q Operations and Algebraic Thinking.OA Write and interpret numerical expressions. 1. Use parentheses, brackets, or braces

More information

LECTURE 3-1 AREA OF A REGION BOUNDED BY CURVES

LECTURE 3-1 AREA OF A REGION BOUNDED BY CURVES 7 CALCULUS II DR. YOU 98 LECTURE 3- AREA OF A REGION BOUNDED BY CURVES If y = f(x) and y = g(x) are continuous on an interval [a, b] and f(x) g(x) for all x in [a, b], then the area of the region between

More information

A Correlation of. to the. Common Core State Standards for Mathematics Bid Category Grade 5

A Correlation of. to the. Common Core State Standards for Mathematics Bid Category Grade 5 A Correlation of to the Bid Category 11-010-50 A Correlation of, to the Operations and Algebraic Thinking Write and interpret numerical expressions. [5.OA.A.1]Use parentheses, brackets, or braces in numerical

More information

PRESCOTT UNIFIED SCHOOL DISTRICT District Instructional Guide Date Revised 6/27/18

PRESCOTT UNIFIED SCHOOL DISTRICT District Instructional Guide Date Revised 6/27/18 Grade Level: Fifth Subject: Math Time: Core Text: Engage New York Time/Days Module Topic Standard/Skills *Repeated/Reinforced Assessment Resources August 7 - September 30 Module 1 Place Value and Decimal

More information

1: #1 4, ACE 2: #4, 22. ACER 3: #4 6, 13, 19. ACE 4: #15, 25, 32. ACE 5: #5 7, 10. ACE

1: #1 4, ACE 2: #4, 22. ACER 3: #4 6, 13, 19. ACE 4: #15, 25, 32. ACE 5: #5 7, 10. ACE Homework Answers from ACE: Filling and Wrapping ACE Investigation 1: #1 4, 10 13. ACE Investigation : #4,. ACER Investigation 3: #4 6, 13, 19. ACE Investigation 4: #15, 5, 3. ACE Investigation 5: #5 7,

More information

USING THE DEFINITE INTEGRAL

USING THE DEFINITE INTEGRAL Print this page Chapter Eight USING THE DEFINITE INTEGRAL 8.1 AREAS AND VOLUMES In Chapter 5, we calculated areas under graphs using definite integrals. We obtained the integral by slicing up the region,

More information

5.OA.1 5.OA.2. The Common Core Institute

5.OA.1 5.OA.2. The Common Core Institute Operations and Algebraic Thinking The Common Core Institute Cluster: Write and interpret numerical expressions. 5.OA.1: Use parentheses, brackets, or braces in numerical expressions, and evaluate expressions

More information

7 th GRADE PLANNER Mathematics. Lesson Plan # QTR. 3 QTR. 1 QTR. 2 QTR 4. Objective

7 th GRADE PLANNER Mathematics. Lesson Plan # QTR. 3 QTR. 1 QTR. 2 QTR 4. Objective Standard : Number and Computation Benchmark : Number Sense M7-..K The student knows, explains, and uses equivalent representations for rational numbers and simple algebraic expressions including integers,

More information

Mathematics Curriculum Grade 6

Mathematics Curriculum Grade 6 supplementary 6A. Numbers and Operations numbers, ways of representing numbers, relationships among numbers and number systems. 6A.1 6A.2 6A.3 6A.4 Demonstrate number sense for fractions, mixed numbers,

More information

Chapter 1: Problem Solving Skills Introduction to Programming GENG 200

Chapter 1: Problem Solving Skills Introduction to Programming GENG 200 Chapter 1: Problem Solving Skills Introduction to Programming GENG 200 Spring 2014, Prepared by Ali Abu Odeh 1 Table of Contents Fundamentals of Flowcharts 2 3 Flowchart with Conditions Flowchart with

More information

Tantasqua/Union 61 Math Alignment GRADE 5

Tantasqua/Union 61 Math Alignment GRADE 5 Tantasqua/Union 61 Math Alignment GRADE 5 Massachusetts Frameworks Domain Massachusetts Standard GO Math Operations and Algebraic Thinking A. Write and interpret numerical expressions. B. Analyze patterns

More information

Unit 7: 3D Figures 10.1 & D formulas & Area of Regular Polygon

Unit 7: 3D Figures 10.1 & D formulas & Area of Regular Polygon Unit 7: 3D Figures 10.1 & 10.2 2D formulas & Area of Regular Polygon NAME Name the polygon with the given number of sides: 3-sided: 4-sided: 5-sided: 6-sided: 7-sided: 8-sided: 9-sided: 10-sided: Find

More information

MAT 003 Brian Killough s Instructor Notes Saint Leo University

MAT 003 Brian Killough s Instructor Notes Saint Leo University MAT 003 Brian Killough s Instructor Notes Saint Leo University Success in online courses requires self-motivation and discipline. It is anticipated that students will read the textbook and complete sample

More information

8 TH GRADE MATHEMATICS CHECKLIST Goals 6 10 Illinois Learning Standards A-D Assessment Frameworks Calculators Allowed on ISAT

8 TH GRADE MATHEMATICS CHECKLIST Goals 6 10 Illinois Learning Standards A-D Assessment Frameworks Calculators Allowed on ISAT 8 TH GRADE MATHEMATICS CHECKLIST Goals 6 10 Illinois Learning Standards A-D Assessment Frameworks Calculators Allowed on ISAT ISAT test questions are derived from this checklist. Use as a curriculum guide.

More information

Mohawk Local Schools. 5 th Grade Math

Mohawk Local Schools. 5 th Grade Math Mohawk Local Schools Quarter 5 th Grade Math 3 Curriculum Guide Mathematical Practices 1. Make Sense of Problems and Persevere in Solving them 2. Reasoning Abstractly & Quantitatively 3. Construct Viable

More information

MATH 31A HOMEWORK 9 (DUE 12/6) PARTS (A) AND (B) SECTION 5.4. f(x) = x + 1 x 2 + 9, F (7) = 0

MATH 31A HOMEWORK 9 (DUE 12/6) PARTS (A) AND (B) SECTION 5.4. f(x) = x + 1 x 2 + 9, F (7) = 0 FROM ROGAWSKI S CALCULUS (2ND ED.) SECTION 5.4 18.) Express the antiderivative F (x) of f(x) satisfying the given initial condition as an integral. f(x) = x + 1 x 2 + 9, F (7) = 28.) Find G (1), where

More information

Common Core Math Curriculum Map

Common Core Math Curriculum Map Module 1 - Math Test: 8/2/2013 Understand the place value system. 5.NBT.1 * 5.NBT.2 * 5.NBT.3 * 5.NBT.4 Recognize that in a multi-digit number, a digit in one place represents 10 times as much as it represents

More information

Mohawk Local Schools. 5 th Grade Math

Mohawk Local Schools. 5 th Grade Math Mohawk Local Schools Quarter 3 Critical Areas of Focus Being Addressed: o Fractions o Decimals o Geometry o 5 th Grade Math Curriculum Guide Mathematical Practices 1. Make Sense of Problems and Persevere

More information

Muskogee Public Schools Curriculum Map Sixth Grade Math

Muskogee Public Schools Curriculum Map Sixth Grade Math 1 st Standard #2: Number Sense and number relationships to solve a Standard #1: Algebraic Reasoning Patterns and Relationships: The student will use algebraic methods to describe patterns, simplify and

More information

Section Graphs and Lines

Section Graphs and Lines Section 1.1 - Graphs and Lines The first chapter of this text is a review of College Algebra skills that you will need as you move through the course. This is a review, so you should have some familiarity

More information

Middle School Summer Review Packet for Abbott and Orchard Lake Middle School Grade 7

Middle School Summer Review Packet for Abbott and Orchard Lake Middle School Grade 7 Middle School Summer Review Packet for Abbott and Orchard Lake Middle School Grade 7 Page 1 6/3/2014 Area and Perimeter of Polygons Area is the number of square units in a flat region. The formulas to

More information

Middle School Summer Review Packet for Abbott and Orchard Lake Middle School Grade 7

Middle School Summer Review Packet for Abbott and Orchard Lake Middle School Grade 7 Middle School Summer Review Packet for Abbott and Orchard Lake Middle School Grade 7 Page 1 6/3/2014 Area and Perimeter of Polygons Area is the number of square units in a flat region. The formulas to

More information

Common Core Math Curriculum Map

Common Core Math Curriculum Map Module 1 - Math Test: 9/25/2013 Write and interpret numerical expressions. 5.OA.1 * 5.OA.2 Use parentheses, brackets, or braces in numerical expressions, and evaluate expressions with these symbols. (A).

More information

HUDSONVILLE PUBLIC SCHOOLS ELEMENTARY COURSE FRAMEWORK

HUDSONVILLE PUBLIC SCHOOLS ELEMENTARY COURSE FRAMEWORK HUDSONVILLE PUBLIC SCHOOLS ELEMENTARY COURSE FRAMEWORK COURSE/SUBJECT Fifth Grade Math UNIT PACING Names of units and approximate pacing LEARNING TARGETS Students will be able to... STANDARD Which Common

More information

Rational Numbers on the Coordinate Plane. 6.NS.C.6c

Rational Numbers on the Coordinate Plane. 6.NS.C.6c Rational Numbers on the Coordinate Plane 6.NS.C.6c Copy all slides into your composition notebook. Lesson 14 Ordered Pairs Objective: I can use ordered pairs to locate points on the coordinate plane. Guiding

More information

Math 6, Unit 8 Notes: Geometric Relationships

Math 6, Unit 8 Notes: Geometric Relationships Math 6, Unit 8 Notes: Geometric Relationships Points, Lines and Planes; Line Segments and Rays As we begin any new topic, we have to familiarize ourselves with the language and notation to be successful.

More information

Problem Solving FLOWCHART. by Noor Azida Binti Sahabudin Faculty of Computer Systems & Software Engineering

Problem Solving FLOWCHART. by Noor Azida Binti Sahabudin Faculty of Computer Systems & Software Engineering Problem Solving FLOWCHART by Noor Azida Binti Sahabudin Faculty of Computer Systems & Software Engineering azida@ump.edu.my OER Problem Solving by Noor Azida Binti Sahabudin work is under licensed Creative

More information

Bridges Grade 5 Supplement Sets Correlations to Common Core State Standards

Bridges Grade 5 Supplement Sets Correlations to Common Core State Standards Bridges Grade 5 Supplement Sets Correlations to Common Core State s By Set Set A4 Set A6 Set A9 Number & Operations: Long Division...2 Number & Operations: Fraction Concepts...2 Number & Operations: Multiplying

More information

MOUNTAIN VIEW SCHOOL DISTRICT

MOUNTAIN VIEW SCHOOL DISTRICT MOUNTAIN VIEW SCHOOL DISTRICT FIFTH GRADE MATH CC.5.OA.1 Write and interpret numerical expressions. Use parentheses, brackets, or braces in numerical expressions, and evaluate expressions with these symbols.

More information

10.7. Polar Coordinates. Introduction. What you should learn. Why you should learn it. Example 1. Plotting Points on the Polar Coordinate System

10.7. Polar Coordinates. Introduction. What you should learn. Why you should learn it. Example 1. Plotting Points on the Polar Coordinate System _7.qxd /8/5 9: AM Page 779 Section.7 Polar Coordinates 779.7 Polar Coordinates What ou should learn Plot points on the polar coordinate sstem. Convert points from rectangular to polar form and vice versa.

More information