Assessment - Unit 3 lessons 9-15

Size: px
Start display at page:

Download "Assessment - Unit 3 lessons 9-15"

Transcription

1 Name(s) Period Date Assessment - Unit 3 lessons Which of the following is FALSE about event driven programs? a. An event driven program cannot implement an algorithm. b. Some portions of an event driven program may never execute while the program is running. c. An event driven program is written to respond to specified events by executing a block of code or function associated with the event. d. The order in which an event driven program will run cannot always be known ahead of time. e. Event driven programs can be run multiple times with different outcomes, based on user interactions. 2. Which of the following is FALSE about element IDs? a. An element with a unique ID must always have an event handler associated with it. b. All elements that can have an ID must have a unique ID so that the computer knows how to distinguish between them when onevent is called. c. Two or more onevent calls may reference the same ID. d. While not a requirement, IDs should be meaningful and descriptive. e. IDs allow a programmer to reference interface elements within their code. 3. Which of the following are actions a programmer could take when debugging a segment of code that would most likely lead to finding a problem and fixing it? (choose two) a. Change the names of variables within the program and run the program again. b. Display the value of variables at various points during the program. c. Ask a friend or collaborator to look over the code segment to see if they are able to find any errors. d. Delete the code and re type it to make sure there were no spelling errors and that it was written correctly. 4. Short Response: Two students, Kaleb and Hunter, are arguing in class about an App Lab project. Kaleb states, Huh, a button and an image are basically the same thing!. Hunter replies, That doesn t make any sense at all!. Explain what Kaleb may have meant by that statement.

2 5. Consider the code segment below: var a = 0; var b = 3; var c = 4; a = a+c; b = a+c; c = a+c; What are the values of a, b, and c after this code segment has been run? A a 4 b 4 c 4 B a 4 b 8 c 8 C a 4 b 8 c 12 D a 4 b 8 c 16 E a 0 b 3 c 4 6. Jasmine is writing a shopping app. She has created a variable to keep track of the number of items in the shopping cart. Every time someone clicks the additembutton, she would like the variable to increase by 1. What code should Jasmine insert where it says <missing code> in order for her app to work? a.cart total = 1;

3 b.carttotal + 1; c. carttotal = carttotal +1; d.var carttotal = carttotal + 1; e.var carttotal + 1; 7. Jose is writing a reply function for a text messaging app. He d like to swap the sender and receiver so that the value currently in variable From ends up as the value in To and To ends up in From Before After Which of the following code segments will correctly swap the values as described? a. to = from; b. from = var temp; to = temp; c. var temp = from; to = from; d. var temp = from; to = temp; e. var temp = to; to = temp;

4 8. A programmer wrote an essay for his history class, and realized he has confused the names of Benjamin Franklin and Alexander Graham Bell. Instead of going through the whole paper and changing the names, he used the following incorrect algorithm in an attempt replace every occurrence of Benjamin Franklin with Alexander Graham Bell and vise versa: First, change all occurrences of Benjamin Franklin to apple Then, change all occurrences of apple to Alexander Graham Bell. Then, Change all occurrences of Alexander Graham Bell to Benjamin Franklin. Here is an example of one of the sentences from the paper. Alexander Graham Bell was born 141 years before Benjamin Franklin, so he was never able to telephone his neighbors. Which of the following is the result of running the described incorrect algorithm on the sentence above? a. Benjamin Franklin was born 141 years before Alexander Graham Bell, so he was never able to telephone his neighbors. b. apple was born 141 years before Benjamin Franklin, so he was never able to telephone his neighbors. c. Alexander Graham Bell was born 141 years before apple, so he was never able to telephone his neighbors. d. Benjamin Franklin was born 141 years before Benjamin Franklin, so he was never able to telephone his neighbors. e. Alexander Graham Bell was born 141 years before Alexander Graham Bell, so he was never able to telephone his neighbors.

5 9. Consider the code segment below: var dist = 100; var radius = dist/20; pendown(); for(var i=0; i < 4; i++){ moveforward(dist); dot(radius); turnright(90); } Which of the following images is the most likely outcome of the drawing? a. b. c. d. 10. What is displayed by the console.log statement after the following code segment executes? 1 var a = 3; 2 var b = 6; 3 var c = 10; 4 a = b / a; 5 b = c a; 6 c = b / a; 7 console.log( value is: +c); a. value is: 2 b. value is: c. value is: 3 d. value is: 4 e. value is: c

6 11. A student decides to draw a series of three dots (sort of like a snowman) as shown in the diagram. She wants each dot to be half the radius of the previous dot, and for the center to be on the edge of the dot below it. She writes the following code segment to do it: 1 var bottom = 100; 2 var middle = 50; 3 var top = 25; 4 5 dot(bottom); 6 moveforward(bottom); 7 8 dot(middle); 9 moveforward(middle); dot(top); She is not sure about the size though, and wants to be able to quickly experiment with the drawing by changing only one number the radius of the bottom dot and for the rest of the code to size and scale the drawing accordingly. How should she adjust lines 2 and 3 of her code to implement this change? a. 2 var middle = 100 / 2; 3 var top = 50 / 2; b. 2 var middle = ; 3 var top = 50 25; c. 2 var middle = bottom / 2 ; 3 var top = middle / 2; d. 2 var middle = bottom 50; 3 var top = middle 25; e. 2 var top = middle / 2; 3 var middle = bottom / 2;

7 12. Consider the following flow chart showing a process for program execute. Given that a = 5, and b = 10, what will be displayed by the program? a. a b. b c. 5 d. 10 e. Nothing will be displayed 13. What is a possible output when the following code segment executes? The ending position of the turtle is shown in each diagram. The starting position is shown as a white triangle in cases where the turtle starts and ends in different locations. a. b. c. d. e.

8 14. What is the output to the console after the following code segment is executed? 1 fivemore(); 2 function fivemore(){ 3 var x = 5 4 } 5 var y = 3 + x; 6 console.log(y); a. 2 b. 3 c. 5 d. 8 e. Error. Unknown Identifier: x 15. What is the output to the console after the following code segment is executed? 1 var x = 10; 2 increase(); 3 x = x+3; 4 console.log(x); 5 function increase(){ 6 var x = 5; 7 } a. 5 b. 8 c. 10 d. 13 e. Error. Cannot make a new variable x inside function increase()

Assessment - Unit 3 lessons 16-21

Assessment - Unit 3 lessons 16-21 Name(s) Period Date Assessment - Unit 3 lessons 16-21 1. Which of the following statements about strings in JavaScript is FALSE? a. Strings consist of a sequence of concatenated ASCII characters. b. Strings

More information

Intro to Event-Driven Programming

Intro to Event-Driven Programming Unit 5. Lessons 1 to 5 AP CS P We roughly follow the outline of assignment in code.org s unit 5. This is a continuation of the work we started in code.org s unit 3. Occasionally I will ask you to do additional

More information

Exercise 2 (4 minutes) Example 3 (4 minutes)

Exercise 2 (4 minutes) Example 3 (4 minutes) Student Outcomes Students solve for unknown angles in word problems and in diagrams involving complementary, supplementary, ical, and adjacent angles. Classwork Opening Exercise (5 minutes) Opening Exercise

More information

Coefficient Constant Equivalent expressions Equation. 3 A mathematical sentence containing an equal sign

Coefficient Constant Equivalent expressions Equation. 3 A mathematical sentence containing an equal sign 8.4.0 Lesson Date Algebra Vocabulary and Generating Equivalent s Student Objectives I can identify how many terms an expression has and what the coefficients, constants, and like terms of that expression

More information

Activity Guide APIs and Using Functions with Parameters

Activity Guide APIs and Using Functions with Parameters Unit 3 Lesson 5 Name(s) Period Date Activity Guide APIs and Using Functions with Parameters CS Content An API is a reference guide which catalogs and explains the functionality of a programming language.

More information

Lesson 21: Solution Sets to Inequalities with Two Variables

Lesson 21: Solution Sets to Inequalities with Two Variables Student Outcomes Students recognize and identify solutions to two variable inequalities. They represent the solution set graphically. They create two variable inequalities to represent a situation. Students

More information

Applying Angle Theorems

Applying Angle Theorems Lesson 08 Mathematics Assessment Project Formative Assessment Lesson Materials Applying Angle Theorems MARS Shell Center University of Nottingham & UC Berkeley Beta Version If you encounter errors or other

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

Visual Basic Program Coding STEP 2

Visual Basic Program Coding STEP 2 Visual Basic Program Coding 129 STEP 2 Click the Start Debugging button on the Standard toolbar. The program is compiled and saved, and then is run on the computer. When the program runs, the Hotel Room

More information

Assessments. a. 196 cm 2. b. 294 cm 2. c cm 2. d. 98 cm 2

Assessments. a. 196 cm 2. b. 294 cm 2. c cm 2. d. 98 cm 2 Assessments Pre-Assessment Date: Period Rectangular Prism Pre-test Math 6 Not for a grade Multiple Choice. CIRCLE the choice that best completes the statement or answers the question. Justify. Explain

More information

Objective: Find areas by decomposing into rectangles or completing composite figures to form rectangles.

Objective: Find areas by decomposing into rectangles or completing composite figures to form rectangles. Lesson 13 3 4 Lesson 13 Objective: Find areas by decomposing into rectangles or completing composite Suggested Lesson Structure Fluency Practice Application Problem Concept Development Student Debrief

More information

Student Instruction Sheet: Unit 4, Lesson 1. Similar Triangles

Student Instruction Sheet: Unit 4, Lesson 1. Similar Triangles Student Instruction Sheet: Unit 4, Lesson 1 Similar Triangles Suggested Time: 75 minutes What s important in this lesson: In this lesson, you will learn how to solve similar triangles. omplete the following

More information

Answer Key Lesson 11: Workshop: Shapes and Properties

Answer Key Lesson 11: Workshop: Shapes and Properties Answer Key esson 11: Use the nine Power Polygons below for Questions 1 and 2. 1. A. Sort the shapes with four sides into ox A. Sort the Shapes with one or more right angles into ox. Some shapes will go

More information

You may use a calculator for these practice questions. You may

You may use a calculator for these practice questions. You may 660 Math Smart Practice Questions You may use a calculator for these practice questions. You may not know all the math to complete these practice questions yet, but try to think them through! 1. Eric lives

More information

Creating a Box-and-Whisker Graph in Excel: Step One: Step Two:

Creating a Box-and-Whisker Graph in Excel: Step One: Step Two: Creating a Box-and-Whisker Graph in Excel: It s not as simple as selecting Box and Whisker from the Chart Wizard. But if you ve made a few graphs in Excel before, it s not that complicated to convince

More information

Assessment Test for Singapore Primary Mathematics 4B

Assessment Test for Singapore Primary Mathematics 4B Assessment Test for Singapore Primary Mathematics 4B This test covers material taught in Primary Mathematics 4B (http://www.singaporemath.com/) 1. Write the whole or decimal number that each letter represents.

More information

Using WebBoard. 1. Establishing your WebBoard Account / Logging in to WebBoard

Using WebBoard. 1. Establishing your WebBoard Account / Logging in to WebBoard Using WebBoard 1. Establishing your WebBoard Account / Logging in to WebBoard If you are a new user of WebBoard, click New Users at the WebBoard login screen. In the future, after you establish your WebBoard

More information

Answer Key Lesson 5: Area Problems

Answer Key Lesson 5: Area Problems Answer Key Lesson 5: Problems Student Guide Problems (SG pp. 186 187) Questions 1 3 1. Shapes will vary. Sample shape with an area of 12 sq cm: Problems Here are 12 square centimeters. A square centimeter

More information

Dividing Rectangles into Rows and Columns Part 1. 2nd Grade. Slide 1 / 201 Slide 2 / 201. Slide 3 / 201. Slide 4 / 201. Slide 6 / 201.

Dividing Rectangles into Rows and Columns Part 1. 2nd Grade. Slide 1 / 201 Slide 2 / 201. Slide 3 / 201. Slide 4 / 201. Slide 6 / 201. Slide / 0 Slide / 0 nd Grade Geometry Presentation Part 05--0 www.njctl.org Slide / 0 Table of Contents Presentation D Shapes - Sides and Angles - Part D Shapes - Part Lab: D Shapes Lab D Shapes - Part

More information

Student Outcomes. Lesson Notes. Classwork. Discussion (4 minutes)

Student Outcomes. Lesson Notes. Classwork. Discussion (4 minutes) Student Outcomes Students write mathematical statements using symbols to represent numbers. Students know that written statements can be written as more than one correct mathematical sentence. Lesson Notes

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *0458775703* INFORMATION AND COMMUNICATION TECHNOLOGY 047/ Paper October/November 00 hours Candidates

More information

Functions and Arrays Programs

Functions and Arrays Programs Functions and Arrays Programs NOTE. Do not use any global variables unless explicitly told to do so. AP CSP Exercise 1. Create a program that calculates the distance between a point and the origin. Since

More information

HOUR 4 Understanding Events

HOUR 4 Understanding Events HOUR 4 Understanding Events It s fairly easy to produce an attractive interface for an application using Visual Basic.NET s integrated design tools. You can create beautiful forms that have buttons to

More information

Predicting Messaging Response Time in a Long Distance Relationship

Predicting Messaging Response Time in a Long Distance Relationship Predicting Messaging Response Time in a Long Distance Relationship Meng-Chen Shieh m3shieh@ucsd.edu I. Introduction The key to any successful relationship is communication, especially during times when

More information

Year 2 Spring Term Week 5 to 7 - Geometry: Properties of Shape

Year 2 Spring Term Week 5 to 7 - Geometry: Properties of Shape 1 Year 2 Spring Term Week 5 to 7 - Geometry: Properties of Shape Recognise 2-D and 3-D shapes Count sides on 2-D shapes Count vertices on 2-D shapes Draw 2-D shapes Lines of symmetry Sort 2-D shapes Make

More information

Arizona Academic Standards

Arizona Academic Standards Arizona Academic Standards This chart correlates the Grade 8 performance objectives from the mathematics standard of the Arizona Academic Standards to the lessons in Review, Practice, and Mastery. Lesson

More information

Content (c) 2017 Readers Question Bank Group. Logo is trademark Readers Question Bank Group.

Content (c) 2017 Readers Question Bank Group. Logo is trademark Readers Question Bank Group. Content (c) 2017 Readers Question Bank Group. Logo is trademark Readers Question Bank Group. For individual teachers: Readers Question Bank(tm) Question Sets are for in-classroom use only. Usage is free.

More information

Problem Sets. GRADE 5 MODULE 5 Addition and Multiplication with Volume and Area

Problem Sets. GRADE 5 MODULE 5 Addition and Multiplication with Volume and Area GRADE 5 MODULE 5 Addition and Multiplication with Volume and Area Problem Sets Video tutorials: http://bit.ly/eurekapusd Info for parents: http://bit.ly/pusdmath 5 GRADE Mathematics Curriculum GRADE 5

More information

Exercise Max. Points Total 80

Exercise Max. Points Total 80 University of California San Diego Department of Computer Science CSE167: Introduction to Computer Graphics Fall Quarter 2016 Midterm Examination #1 Thursday, October 13 th, 2016 Instructor: Dr. Jürgen

More information

Getting Started on Schoolbox Parent Guide

Getting Started on Schoolbox Parent Guide Getting Started on Schoolbox Parent Guide Part 1 How to Login Page 2 Part 2 Parent Dashboard Page 4 Part 3 Managing Notifications Page 6 Part 4 Types of Pages Page 7 Part 5 The Salesian College App Page

More information

TOPIC 16 STUDY GUIDE LINES, ANGLES AND SHAPES

TOPIC 16 STUDY GUIDE LINES, ANGLES AND SHAPES Name: Teacher: TOPIC 16 STUDY GUIDE LINES, ANGLES AND SHAPES Study Guide Due: Test Date: Parents, 4th Graders are focusing on giving their best effort. One way to show that they are going above and beyond

More information

Is there a different way to get the same result? Did we give enough information? How can we describe the position? CPM Materials modified by Mr.

Is there a different way to get the same result? Did we give enough information? How can we describe the position? CPM Materials modified by Mr. Common Core Standard: 8.G.3 Is there a different way to get the same result? Did we give enough information? How can we describe the position? CPM Materials modified by Mr. Deyo Title: IM8 Ch. 6.2.1 What

More information

Building Polynomial Functions

Building Polynomial Functions Building Polynomial Functions NAME 1. What is the equation of the linear function shown to the right? 2. How did you find it? 3. The slope y-intercept form of a linear function is y = mx + b. If you ve

More information

Lesson 18: There is Only One Line Passing Through a Given Point with a Given

Lesson 18: There is Only One Line Passing Through a Given Point with a Given Lesson 18: There is Only One Line Passing Through a Given Point with a Given Student Outcomes Students graph equations in the form of using information about slope and intercept. Students know that if

More information

Applications. 72 Variables and Patterns

Applications. 72 Variables and Patterns Applications. Sean bought a DVD player and a receiver. The store offered him an interest-free payment plan with weekly installments. Sean figured out that after n weeks of payments, he would still owe

More information

Sending LESSON PLAN UNIT 1. Essential Question How do you connect with others through ?

Sending  LESSON PLAN UNIT 1. Essential Question How do you connect with others through  ? LESSON PLAN Sending Email UNIT 1 Essential Question How do you connect with others through email? Lesson Overview Students explore how they can use email to communicate with real people within their schools,

More information

Student Outcomes. Lesson Notes. Classwork. Example 2 (3 minutes)

Student Outcomes. Lesson Notes. Classwork. Example 2 (3 minutes) Student Outcomes Students write expressions that record addition and subtraction operations with numbers. Lesson Notes This lesson requires the use of a white board for each student. Classwork Example

More information

Lesson 10 ~ Three-Dimensional Figures

Lesson 10 ~ Three-Dimensional Figures Lesson 10 ~ Three-Dimensional Figures Name a solid that fits each description. 1. a can of beans 2. a shoe box 3. a pyramid with five lateral faces 4. a solid with six vertices 5. a prism with bases shaped

More information

Objective: Reason about attributes to construct quadrilaterals on square or triangular grid paper.

Objective: Reason about attributes to construct quadrilaterals on square or triangular grid paper. Lesson 16 Objective: Reason about attributes to construct quadrilaterals on square or Suggested Lesson Structure Fluency Practice Application Problem Concept Development Student Debrief Total Time (12

More information

Building a Learning Experience: The Exploros Authoring Tool

Building a Learning Experience: The Exploros Authoring Tool Building a Learning Experience: The Exploros Authoring Tool Version 8.0, September 2016 release Copyright 2014 Exploros Inc. All rights reserved. Table of Contents Overview... 2 Editing and making masters...

More information

Overview: Students explore how they can use to communicate with real people within their schools, families, and communities.

Overview: Students explore how they can use  to communicate with real people within their schools, families, and communities. Sending Email LESSON PLAN Essential Question: How do you connect with others through email? Learning Overview and Objectives Overview: Students explore how they can use email to communicate with real people

More information

School District of Marshfield Mathematics Standards

School District of Marshfield Mathematics Standards MATHEMATICS Counting and Cardinality, Operations and Algebraic Thinking, Number and Operations in Base Ten, Measurement and Data, and Geometry Operations and Algebraic Thinking Represent and Solve Problems

More information

Geometry. Talk About It. Solve It. More Ideas. Formative Assessment

Geometry. Talk About It. Solve It. More Ideas. Formative Assessment 2 7.G.2 Objective Common Core State Standards Construct Triangles Triangles are polygons with three sides, and they are classified by their sides and angles. The sum of the angles of any triangle is 180,

More information

Coordinate Graphing Quadrants and Reading Ordered Pairs. TeacherTwins 2015

Coordinate Graphing Quadrants and Reading Ordered Pairs. TeacherTwins 2015 Coordinate Graphing Quadrants and Reading Ordered Pairs TeacherTwins 2015 Warm Up Graph the integers on a number line. 1. 2. 3. 4. 5. -5, - 2, 5, 2 0, -3, 7, -2-4, 1, -6, 8-1, 4, -7, 0 6, -8, 5, -4 Warm

More information

10.3 Probability Using Areas

10.3 Probability Using Areas CHAPTER 10. GEOMETRIC PROBABILITY Exercises 10.2.1 Let AB be a line segment of length 10. A point P is chosen at random on AB. What is the probability that P is closer to the midpoint of AB than to either

More information

Lesson 3 Practice Problems

Lesson 3 Practice Problems Name: Date: Lesson 3 Section 3.1: Linear Equations and Functions 1. Find the slope of the line that passes through the given points. Then determine if the line is increasing, decreasing or constant. Increasing,

More information

Algorithms. Chapter 8. Objectives After studying this chapter, students should be able to:

Algorithms. Chapter 8. Objectives After studying this chapter, students should be able to: Objectives After studying this chapter, students should be able to: Chapter 8 Algorithms Define an algorithm and relate it to problem solving. Define three construct and describe their use in algorithms.

More information

A good example of entities and relationships can be seen below.

A good example of entities and relationships can be seen below. Unit 2: Unit 2: Conceptual Design: Data Modeling and the Entity Relationship Model - Discussion 1 Scroll down and click "Respond" to post your reply to the Discussion questions. Please review the Discussion

More information

Data Structures (CS301) LAB

Data Structures (CS301) LAB Data Structures (CS301) LAB Objectives The objectives of this LAB are, o Enabling students to implement Doubly Linked List practically using c++ and adding more functionality in it. Introduction to Singly

More information

K 2. Lesson 1 Problem Set. Sort the shapes. A STORY OF UNITS

K 2. Lesson 1 Problem Set. Sort the shapes. A STORY OF UNITS Lesson 1 Problem Set K 2 Name Date Sort the shapes. Shapes with a Curve Shapes without a Curve Lesson 1: Find and describe flat triangles, square, rectangles, hexagons, and circles using informal language

More information

BrailleNote Lessons Downloaded fr om:

BrailleNote Lessons Downloaded fr om: BrailleNote Lessons By Rosa Mauer, Technology Instructor, Iowa Braille School Contact her at 800-645-4579, ext. 1117 or via email, (rmauer@iowa-braille.k12.ia.us) BrailleNote Lesson 1 Contents Getting

More information

Distributions of random variables

Distributions of random variables Chapter 3 Distributions of random variables 31 Normal distribution Among all the distributions we see in practice, one is overwhelmingly the most common The symmetric, unimodal, bell curve is ubiquitous

More information

Linear-Quadratic Inequalities

Linear-Quadratic Inequalities Math Objectives Students will be able to describe the solution to a linearquadratic or quadratic-quadratic system of inequalities from a geometric perspective. Students will be able to write the solution

More information

Content-Based Assessments

Content-Based Assessments Content-Based Assessments GO! Fix It Project 1H Scholarships For Project 1H, you will need the following file: a01h_scholarships Lastname_Firstname_1H_Scholarships In this project, you will make corrections

More information

What s the base case?

What s the base case? What s the base case? 13 How Recursion Works The last two chapters were about how to write recursive procedures. This chapter is about how to believe in recursive procedures, and about understanding the

More information

Mth 60 Module 2 Section Signed Numbers All numbers,, and

Mth 60 Module 2 Section Signed Numbers All numbers,, and Section 2.1 - Adding Signed Numbers Signed Numbers All numbers,, and The Number Line is used to display positive and negative numbers. Graph -7, 5, -3/4, and 1.5. Where are the positive numbers always

More information

Middle School Geometry Lesson 2: Practice. Allow area chart to be used for each question. #1. Find the area of the following figures.

Middle School Geometry Lesson 2: Practice. Allow area chart to be used for each question. #1. Find the area of the following figures. Middle School Geometry Lesson 2: Practice Allow area chart to be used for each question. #1. Find the area of the following figures. Mark any decomposition you make on the figure. Label any dimensions

More information

Unit 9 Tech savvy? Tech support. 1 I have no idea why... Lesson A. A Unscramble the questions. Do you know which battery I should buy?

Unit 9 Tech savvy? Tech support. 1 I have no idea why... Lesson A. A Unscramble the questions. Do you know which battery I should buy? Unit 9 Tech savvy? Lesson A Tech support 1 I have no idea why... A Unscramble the questions. 1. which battery / Do you know / should / buy / I? Do you know which battery I should buy? 2. they / where /

More information

Part II Composition of Functions

Part II Composition of Functions Part II Composition of Functions The big idea in this part of the book is deceptively simple. It s that we can take the value returned by one function and use it as an argument to another function. By

More information

Sending LESSON PLAN UNIT 1. Essential Question How do you connect with others through ?

Sending  LESSON PLAN UNIT 1. Essential Question How do you connect with others through  ? LESSON PLAN Sending Email UNIT 1 Essential Question How do you connect with others through email? Lesson Overview Students explore how they can use email to communicate with real people within their schools,

More information

Content. 1. Why read this white paper? Why abandoned shopping carts? reactivation of abandoned shopping carts...

Content. 1. Why read this white paper? Why abandoned shopping carts? reactivation of abandoned shopping carts... Content 1. Why read this white paper?... 3 2. Why abandoned shopping carts?... 4 3. Email reactivation of abandoned shopping carts... 5 3.1 Impact on revenue...5 3.2 Collect the email address early in

More information

What s the Difference?

What s the Difference? What s the Difference? Subtracting Integers Learning Goals In this lesson, you will: Model subtraction of integers using two-color counters. Model subtraction of integers on a number line. Develop a rule

More information

Construct Triangles. Geometry. Objective. Common Core State Standards. Talk About It. Solve It. More Ideas. Formative Assessment

Construct Triangles. Geometry. Objective. Common Core State Standards. Talk About It. Solve It. More Ideas. Formative Assessment 2 Construct Triangles 7.G.2 Objective Common Core State Standards Triangles are polygons with three sides, and they are classified by their sides and angles. The sum of the angles of any triangle is 180,

More information

Objective: Use attributes to draw different polygons including triangles, quadrilaterals, pentagons, and hexagons. (7 minutes) (5 minutes)

Objective: Use attributes to draw different polygons including triangles, quadrilaterals, pentagons, and hexagons. (7 minutes) (5 minutes) Lesson 3 2 8 Lesson 3 Objective: Suggested Lesson Structure Fluency Practice Application Problem Concept Development Student Debrief Total Time (12 minutes) (6 minutes) (32 minutes) (10 minutes) (60 minutes)

More information

Animations involving numbers

Animations involving numbers 136 Chapter 8 Animations involving numbers 8.1 Model and view The examples of Chapter 6 all compute the next picture in the animation from the previous picture. This turns out to be a rather restrictive

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education. Paper 1 October/November hours

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education. Paper 1 October/November hours *3032619274* UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education INFORMATION AND COMMUNICATION TECHNOLOGY 0417/12 Paper 1 October/November 2013 2

More information

Descriptive Statistics and Graphing

Descriptive Statistics and Graphing Anatomy and Physiology Page 1 of 9 Measures of Central Tendency Descriptive Statistics and Graphing Measures of central tendency are used to find typical numbers in a data set. There are different ways

More information

Student Instruction Sheet: Unit 4, Lesson 2. Ratios of Sides of Right-Angle Triangles

Student Instruction Sheet: Unit 4, Lesson 2. Ratios of Sides of Right-Angle Triangles Student Instruction Sheet: Unit 4, Lesson 2 Ratios of Sides of Right-Angle s Suggested Time: 75 minutes What s important in this lesson: In this lesson, you will learn through investigation, the relationship

More information

Specifying, Creating, and Comparing Algorithms. And another look at JavaScript

Specifying, Creating, and Comparing Algorithms. And another look at JavaScript Specifying, Creating, and Comparing Algorithms And another look at JavaScript Learning Goals. Characterize a problem solution as an algorithm, including inputs, outputs and any constraints (for example,

More information

Multiply the dividend by the reciprocal of the divisor.

Multiply the dividend by the reciprocal of the divisor. Domain Lesson 6 Complex Fractions Common Core Standards: 7.RP., 7.RP. Getting the Idea To divide fractions, first find the reciprocal of the divisor. Then multiply the dividend by the reciprocal of the

More information

PARTICIPANT CENTER HOW-TO GUIDE

PARTICIPANT CENTER HOW-TO GUIDE Every MuckFest participant has his or her very own personal fundraising webpage (aka your Personal Page ). Once you ve logged in to your Participant Center, you ll be able to update your Personal Page

More information

Objective: Use multiplication to calculate volume.

Objective: Use multiplication to calculate volume. Lesson 4 Objective: Use multiplication to calculate volume. Suggested Lesson Structure Fluency Practice Application Problem Concept Development Student Debrief Total Time (12 minutes) (5 minutes) (33 minutes)

More information

Project activity sheet 3

Project activity sheet 3 1 Macmillan English Project activity sheet 3 Project: Food bar chart Units 13 18 Learning outcomes By the end of the project, children will have: practised language from Units 13 18 through a group project

More information

Making ecards Can Be Fun!

Making ecards Can Be Fun! Making ecards Can Be Fun! A Macromedia Flash Tutorial By Mike Travis For ETEC 664 University of Hawaii Graduate Program in Educational Technology April 4, 2005 The Goal The goal of this project is to create

More information

(Photos and Instructions Based on Microsoft Outlook 2007, Gmail, Yahoo! Mail, and Hotmail)

(Photos and Instructions Based on Microsoft Outlook 2007, Gmail, Yahoo! Mail, and Hotmail) Specific instructions on how to compose a professional e-mail using send and reply options, basic e-mail components, appropriate wording, content, tone, and examples of what not to do. (Photos and Instructions

More information

Objective: Use attributes to draw different polygons including triangles,

Objective: Use attributes to draw different polygons including triangles, NYS COMMON CORE MATHEMATICS CURRICULUM Lesson 3 2 8 Lesson 3 Objective: Use attributes to draw different polygons including triangles, Suggested Lesson Structure Fluency Practice Application Problem Concept

More information

Create Turtles with Python

Create Turtles with Python Create Turtles with Python BY PATRICIA FOSTER / PROGRAMMING / OCTOBER 2017 ISSUE Create turtles with Python, the programming language. Turtles make great pets. They re small, slow, and clean. Plus, who

More information

UNIT 13: SPAM LESSON 3: SPAM ATTACHMENTS

UNIT 13: SPAM LESSON 3: SPAM ATTACHMENTS UNIT 13: SPAM LESSON 3: SPAM ATTACHMENTS LESSON OVERVIEW Some spam emails may have attachments. These attachments can contain viruses. A virus can damage your computer or be used to steal your personal

More information

6.1.3 How can I describe it?

6.1.3 How can I describe it? Name: Date: Per: A# 6.1.3 How can I describe it? Describing Transformations In Lesson 6.1.2, you used words and coordinate points to describe how a triangle moved on a graph. These expressions described

More information

How many toothpicks are needed for her second pattern? How many toothpicks are needed for her third pattern?

How many toothpicks are needed for her second pattern? How many toothpicks are needed for her third pattern? Problem of the Month Tri - Triangles Level A: Lisa is making triangle patterns out of toothpicks all the same length. A triangle is made from three toothpicks. Her first pattern is a single triangle. Her

More information

Exponents and Real Numbers

Exponents and Real Numbers Exponents and Real Numbers MODULE? ESSENTIAL QUESTION What sets of numbers are included in the real numbers? CALIFORNIA COMMON CORE LESSON.1 Radicals and Rational Exponents N.RN.1, N.RN. LESSON. Real Numbers

More information

Process Document Student Records: Swap Classes Using Quick Enroll

Process Document Student Records: Swap Classes Using Quick Enroll Version 1.0 Document Generation Date 1/11/2008 Date Modified 1/23/2008 Last Changed by ASDS Status Final Swap Classes Using Quick Enroll- Concept The Quick Enroll component enables you to enter, update,

More information

Using Arrays for Multiplying Fractions

Using Arrays for Multiplying Fractions s e s s i o n A. 6 Using Arrays for Multiplying Fractions Math Focus Points Using arrays to represent multiplication of fractions Developing an algorithm for multiplying fractions Today s Plan activity

More information

The Grade 3 Common Core State Standards for Geometry specify that students should

The Grade 3 Common Core State Standards for Geometry specify that students should Students in third grade describe, analyze, and compare properties of two-dimensional shapes. They compare and classify shapes by their sides and angles, and they use these classifications to define shapes.

More information

Introduction to Conditionals

Introduction to Conditionals Introduction to Conditionals Conditional Statements Conditional statements are a key to programming and give us control over basic direction following and reasoning that the computer does. Conditional

More information

ACS-1805 Introduction to Programming (with App Inventor)

ACS-1805 Introduction to Programming (with App Inventor) ACS-1805 Introduction to Programming (with App Inventor) Chapter 8 Creating Animated Apps 10/25/2018 1 What We Will Learn The methods for creating apps with simple animations objects that move Including

More information

CS 485/ECE 440/CS 585 Fall 2011 Midterm

CS 485/ECE 440/CS 585 Fall 2011 Midterm CS 485/ECE 440/CS 585 Fall 2011 Midterm Name: This test is closed book, closed notes, closed neighbor, closed everything except for a pen or pencil. If you are logged into any lab computer that is connected

More information

Lesson Seven: Holding Gestures

Lesson Seven: Holding Gestures Lesson Seven: Holding Gestures PAGE 01 Lesson Seven: Holding Gestures Overview In the previous lesson, we made our functions more useful by allowing them to output through the keyboard. By assigning different

More information

Chapter 5: Probability and Statistics. Middle SchooI Assessments

Chapter 5: Probability and Statistics. Middle SchooI Assessments Chapter 5: Probability and Statistics Middle SchooI Assessments 264 Chapter 5: Probability and Statistics Perplexing Polygons grade 6 OVERARCHING PERPLEXING POLYGONS Cut along dotted lines In Mrs. Mac

More information

6. Internet: Content sharing

6. Internet: Content sharing e mail cmgroup@xyz.com tejas@xyz.com jyoti@xyz.com moz@xyz.com 6. Internet: Content sharing Aim: In this lesson, you will learn: How to use advanced e-mail features, such as sending to groups. How to share

More information

Introduction to Computer Science with Python Course Syllabus

Introduction to Computer Science with Python Course Syllabus CodeHS Introduction to Computer Science with Python Course Syllabus Course Overview and Goals The CodeHS Introduction to Computer Science in Python course teaches the fundamentals of computer programming

More information

Now that you have your phone, computer or tablet, and your and code.you re ready to get started!

Now that you have your phone, computer or tablet, and your  and code.you re ready to get started! RDS Parent Access How to Manual It s easy to track you child s progress in school. All you need is a smart phone or computer, and your child s grades, attendance and test scores are all at your fingertips.

More information

Introduction to activity In this activity, you ll practise replying to an that someone has sent and adding an attachment to the message.

Introduction to activity In this activity, you ll practise replying to an  that someone has sent and adding an attachment to the message. Your emails Introduction to activity In this activity, you ll practise replying to an email that someone has sent and adding an attachment to the message. Interaction 1 Instruction - First, you re going

More information

Petros: A Multi-purpose Text File Manipulation Language

Petros: A Multi-purpose Text File Manipulation Language Petros: A Multi-purpose Text File Manipulation Language Language Reference Manual Joseph Sherrick js2778@columbia.edu June 20, 2008 Table of Contents 1 Introduction...................................................

More information

Bring in several pieces of junk mail that have been opened and spread the mail around the classroom.

Bring in several pieces of junk mail that have been opened and spread the mail around the classroom. LESSON PLAN You ve Won a Prize! GRADES 3-5 UNIT 2 Essential Question What is spam, and what can you do about it? Lesson Overview Students learn what spam is, the forms it takes, and then identify strategies

More information

2010 HSC Software Design and Development Sample Answers

2010 HSC Software Design and Development Sample Answers 2010 HSC Software Design and Development Sample Answers This document contains sample answers, or, in the case of some questions, answers could include. These are developed by the examination committee

More information

TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Outlook

TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Outlook TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Outlook This module was developed to assist students in passing the SkillCheck Incorporated Microsoft Outlook Technology Competency Assessment. This module

More information

5.5 Properties of Parallelogram

5.5 Properties of Parallelogram GEOMETRY Q2T6 5.5 Exam View WS Name: Class: Date: 5.5 Properties of Parallelogram True/False Indicate whether the statement is true or false. 1. In a parallelogram, the consecutive angles are congruent.

More information

Office 365 Training For the

Office 365 Training For the Office 365 Training For the 1 P age Contents How to Log in:... 3 Change Your Account Password... 3 Create a Message... 4 Add a Signature... 4 Learn About Inbox Rules... 5 Options > Automatic Replies...

More information

Why Can t We Use SSA to Prove Triangles Congruent?

Why Can t We Use SSA to Prove Triangles Congruent? Why Can t We Use SSA to Prove Triangles Congruent? Lesson Summary: When proving triangles congruent by applying the SSS, ASA, and SAS theorems and postulates, students often asked why is there no SSA property.

More information