Information Technology Unit Plan

Size: px
Start display at page:

Download "Information Technology Unit Plan"

Transcription

1 Information Technology Unit Plan Unit Overview Unit Title Programme Implementation Unit Summary The use of the student centered approach of the problem-based learning strategy is used to develop and promote higher order thinking skills through the development of algorithms to solve real world problems and the conversion of these algorithms to programs using structured programming techniques. Curriculum Links CSEC Information Technology Section 3 Specific Objectives 1-11 Year Level Form 5 Approximate Time Needed 12 x 35 minutes periods (3 weeks) Unit Foundation Standards/Syllabus Outcomes Students should be able to: distinguish between low-level and high-level programming languages; distinguish among the different generations of programming languages; declare elementary data types; declare variables and constants; manipulate data; use control structures; manipulate data in a list; list the sequence of steps associated with implementing a program; explain commonly used terms and concepts in programming; perform checks and tests on programs to verify correctness write documented programs. Curriculum-Framing Questions Essential Question Why do we need to tell the computer what to do? Unit Questions How do we use the computer to help us solve problems? How does the computer know what to do? How does the user know that the computer is correct? Questions What are the different languages that the computer uses? How has computer languages changed over the years? Intel Corporation. All Rights Reserved. Page 1 of 7

2 How important are names? How can control be maintained? How can many examples of the same type of data be stored? Why is order important? How do you know that the problem was solved correctly? Why is it important to explain to others what we are doing? Assessment Timeline Before learning activities begin While students work on learning activities After learning activities end Pre-Test Pre-Questionnaire Assessment Summary Q & A Session Discussions Peer Review Post-Test Q & A Sessions Rubric for oral presentation Student Reflections Teacher feedback Peer Review Presentation feedback Case studies Worksheets Puzzles Post-test Post-Questionnaire Unit Details Prerequisite Skills Students Prior Knowledge Students should be able to define a problem; propose and evaluate solutions; determination of the most efficient solution; develop and represent algorithm; test and validate the solution using trace tables. Teachers Processional Learning TEACHING AND LEARNING STRATEGIES Lesson 1: Introductory Lesson (2 x 35 minutes) How has computer languages changed over the years? Distinguish between low-level and high-level programming languages Distinguish among the different generations of programming languages Identify and discuss the advantages and disadvantages of the different generation of programming languages Low-level language (Machine or Assembly Language); High- level language (Pascal, C). Characterization of first through to fifth generation languages Intel Corporation. All Rights Reserved. Page 2 of 7

3 Teacher enters class and greets the students in Spanish and proceeds to teach the class in Spanish. She explains that Spanish is just one of the many languages that people use to communicate with one another. Similarly there are many programming languages. Just as it s important for the sender and recipient to understand the language for effective communication to occur so too it is with the computer. Programs must be written using appropriate programming languages. Collaboration: Using pictures present four different scenarios and describe each using the four different languages (Spanish, French, German and Swahili) ask the students to match the pictures with the correct description. Lesson1-Activity1 Reflection: Describe the process that the group used to match the pictures with the descriptions. Have you ever been to a foreign country in which a different language was spoken or interacted with someone whose native language was not English? What were some of the challenges that you faced? Do you think that it is important to know more than one language? Collaboration: Given the handout ask the students to identify the problems of each generation of language, analyze the account described to determine the advantages of each generation of language and arrive at suggestions for applications for which each level and generation of programming language would be most appropriate to use. Lesson1-Handout1 Class Presentation (Oral)/Peer Review Each group has five minutes to present on one of the generation of language while the other groups mark their presentations using a rubric. OralPresentationRubric Lesson 2: (2 x 35 minutes) How important are names? Declare elementary data types; Declare variables and constants; Manipulate data; Integers, real numbers, characters. Use of meaningful variable names and constants; assign initial values. Reading from and writing to variables, arithmetic operations. Give each group of students a set of meanings and ask them to determine which is synonymous with the meaning of their name. Explain to them that generally parents put a lot of thought into naming their children and so too when we are choosing variable names it is important to give meaningful names Intel Corporation. All Rights Reserved. Page 3 of 7

4 Class activity Ask students from each group to volunteer answers to complete a chart illustrating different examples of data that can be stored about them. Then ask them to determine what the data type would be for each example identified and allow another student from the group to write the response on the board. Given the problem ask students to illustrate solution using a flowchart. Student should be able to identify appropriate identifiers and corresponding data types and determine whether the values should be stored as constants or variables. Students should be able to complete a table comparing the representation of statements expressed as algorithms, pseudocode, flowchart symbols and as PASAL statements. Independent work Students are asked to write a program corresponding to the flowchart constructed for solving the problem. Ask students to formulate a problem that requires both variables and constants as identifiers and which requires that these identifiers belong to each of the data types discussed in class. Discuss case study in groups and complete part (a) as a group and part (b) independently. Lesson 3: (2 x 35 minutes) What are the different ways that control can be achieved? Use control structures; Conditional branching: if-then, if-then-else, Loops: while, repeat, for. Set Induction Ask three students to volunteer to participate in a game. Play the game of musical chairs. Explain to the students that they were given the option to play or to observe and that is an example of a selection control structure. Those who participated in the game were repeating an action until one person would emerge as the winner. This is an example of a repetition control structure. Since we do not know how many times the students would be going around the chairs in advance then this is an example of unbounded iteration. Since the total number of students who were asked to play the game was known in advance the action of presenting each student with a token is an example of a bounded iteration. Ask students to give examples of real life situations that require the use of each of the control structures identified. Discuss case study in groups and complete part (c) and (d) independently. Redefine problem description from Lesson 2 to include the use of selection and repetition constructs in its solution Intel Corporation. All Rights Reserved. Page 4 of 7

5 Lesson 4: (2 x 35 minutes) How can many examples of the same type of data be stored? Manipulate data in a list; Reading from and writing to arrays; traversing arrays; linear search. Set Induction Give students samples of green pigeon peas in the pod and red beans and ask them to compare the two. Explain to the student that the red bean is found growing as a single bean however there are more than one green peas in a single pod. This is similar to an array. A single data structure that can hold more than one data value of the same data type. Each pea is in its unique location in the pod as are the data elements in an array which are identified by the location in the array. Ask students to give examples of real life situations that require the use of arrays. Discuss case study in groups and complete part (e) independently. Redefine problem description from Lesson 3 to include the use of arrays in its solution. Lesson 5: (2 x 35 minutes) How do you know that the problem was solved correctly? Why are tests necessary? Explain commonly used terms and concepts in programming; Perform checks and tests on programs to verify correctness Testing, debugging, syntax errors, logic errors, run-time errors, dry run, test data. Testing and debugging techniques. How can we tell which food has starch and which does not? Students should be able to correctly identify that the iodine test would be used and explain. Five different samples (bread, orange, cheese, eggs and potatoes) would be provided for groups of students to perform the iodine test. Allow students to place a few drops of iodine solution on the sample and observe whether it turns blueblack in colour. If it does it means that starch is present. Explain to students that it is important for tests to be carried out using a variety of samples and in our case to determine the accuracy of programs different data values should be used. Discuss case study in groups and complete part (f) independently. Exchange the problem designed with another group and correct their solution to your problem Intel Corporation. All Rights Reserved. Page 5 of 7

6 Lesson 6: (1 x 35 minutes) Why is order important? List the sequence of steps associated with implementing a program; Create source code, compile, linking, executing, maintain program. Give each group four pictures. Explain to them that each person cannot show her picture to the others but she can describe it. The pictures should be placed correctly for a story to be told. Once a picture is placed on the table it cannot be taken up. Group discussion: Ask students to come up with examples of situations in which order is critically important and others in which the order may not make a significant difference. Allow each group to present their suggestions. Ask students to complete the graphic organizer listing the correct sequence of steps associated with implementing a program. Flowchart Ask students to type up, compile debug and execute the solution to the case study problem. Lesson 7: (1 x 35 minutes) Why is it important to explain what you are doing to others? Write documented programs. Importance of documentation; features of internal documentation (use of mnemonic names, use of comments, indentation, effective use of white spaces); external documentation (user manuals). Set Induction Show a video clip from Project Runway at the end of the show when they review the fashion show. Discuss case study in groups and complete part (e) independently. Ask students to include appropriate documentation to the solution to the case study problem Lesson 8: Summative Lesson (2 x 35 minutes) Post-test Intel Corporation. All Rights Reserved. Page 6 of 7

7 Accommodations for Diverse Needs Students with Special Needs Gifted Students Visually impaired: Computers can be adjusted. Weaker Students: Advanced students will work with (Peer Teaching) the weaker students. Advanced Students will assist other students (Peer Teaching) Materials and Resources Required for Unit Technology Hardware (Click boxes of all equipment needed) Camera Laser Disk Computer(s) Printer Digital Camera Projection System DVD Player Scanner Internet Connection Television Technology Software (Click boxes of all software needed.) Database/Spreadsheet Image Processing Desktop Publishing Internet Web Browser Software Multimedia Encyclopedia on CD-ROM All activity sheets and checklists Printed Materials VCR Video Camera Video Conferencing Equip. Other MP3 Player, Interactive Whiteboard, PDA Mobile Technologies Web Page Development Word Processing Other Editing software, Internet Web Browser, Animation Software, Digital learning objects Supplies Internet Resources/ Communication Tools White board markers Synchron Eyes Other Resources Unit Author First and Last Name: Sunita Gopee School Name: Holy Faith Convent, Penal District: St. Patrick Intel Corporation. All Rights Reserved. Page 7 of 7

First and Last Name School District School Name School City, State

First and Last Name School District School Name School City, State Unit Plan - Fractions Unit Author First and Last Name School District School Name School City, State Allison Cooper (King) Putnam County Rock Branch Elementary School Rock Branch, WV Unit Overview Unit

More information

GACE Computer Science Assessment Test at a Glance

GACE Computer Science Assessment Test at a Glance GACE Computer Science Assessment Test at a Glance Updated May 2017 See the GACE Computer Science Assessment Study Companion for practice questions and preparation resources. Assessment Name Computer Science

More information

K 1 2 K 1 2. Iron Mountain Public Schools Standards (modified METS) Checklist by Grade Level Page 1 of 11

K 1 2 K 1 2. Iron Mountain Public Schools Standards (modified METS) Checklist by Grade Level Page 1 of 11 Iron Mountain Public Schools Standards (modified METS) - K-8 Checklist by Grade Levels Grades K through 2 Technology Standards and Expectations (by the end of Grade 2) 1. Basic Operations and Concepts.

More information

Topic: Making A Colorado Brochure Grade : 4 to adult An integrated lesson plan covering three sessions of approximately 50 minutes each.

Topic: Making A Colorado Brochure Grade : 4 to adult An integrated lesson plan covering three sessions of approximately 50 minutes each. Lesson-Planning Approach Topic: Making A Colorado Brochure Grade : 4 to adult An integrated lesson plan covering three sessions of approximately 50 minutes each. Some learners perceive their world as a

More information

DIGITAL GAMING & INTERACTIVE MEDIA BACHELOR S DEGREE. Junior Year. Summer (Bridge Quarter) Fall Winter Spring GAME Credits.

DIGITAL GAMING & INTERACTIVE MEDIA BACHELOR S DEGREE. Junior Year. Summer (Bridge Quarter) Fall Winter Spring GAME Credits. DIGITAL GAMING & INTERACTIVE MEDIA BACHELOR S DEGREE Sample 2-Year Academic Plan DRAFT Junior Year Summer (Bridge Quarter) Fall Winter Spring MMDP/GAME 124 GAME 310 GAME 318 GAME 330 Introduction to Maya

More information

Welcome to The National Training Institute for Child Care Health Consultants

Welcome to The National Training Institute for Child Care Health Consultants Welcome to The National Training Institute for Child Care Health Consultants. 1 Introductions/Icebreaker: Acknowledging Trainers Expertise Front of Card First and last name State Back of Card Agency #

More information

Guide to Teaching Computer Science

Guide to Teaching Computer Science Guide to Teaching Computer Science Orit Hazzan Tami Lapidot Noa Ragonis Guide to Teaching Computer Science An Activity-Based Approach Dr. Orit Hazzan Associate Professor Technion - Israel Institute of

More information

Rover Races Grades: 3-5 Prep Time: ~45 Minutes Lesson Time: ~105 minutes

Rover Races Grades: 3-5 Prep Time: ~45 Minutes Lesson Time: ~105 minutes Rover Races Grades: 3-5 Prep Time: ~45 Minutes Lesson Time: ~105 minutes WHAT STUDENTS DO: Establishing Communication Procedures Following Curiosity on Mars often means roving to places with interesting

More information

INTERMEDIATE ALGEBRA PRODUCT GUIDE

INTERMEDIATE ALGEBRA PRODUCT GUIDE Welcome Thank you for choosing Intermediate Algebra. This adaptive digital curriculum provides students with instruction and practice in advanced algebraic concepts, including rational, radical, and logarithmic

More information

MINISTRY OF EDUCATION

MINISTRY OF EDUCATION Republic of Namibia MINISTRY OF EDUCATION NAMIBIA SENIOR SECONDARY CERTIFICATE (NSSC) COMPUTER STUDIES SYLLABUS HIGHER LEVEL SYLLABUS CODE: 8324 GRADES 11-12 2010 DEVELOPED IN COLLABORATION WITH UNIVERSITY

More information

Learning, Communication, and 21 st Century Skills: Students Speak Up For use with NetDay Speak Up Survey Grades 3-5

Learning, Communication, and 21 st Century Skills: Students Speak Up For use with NetDay Speak Up Survey Grades 3-5 Learning, Communication, and 21 st Century Skills: Students Speak Up For use with NetDay Speak Up Survey Grades 3-5 Grades: 3-5 Subjects: Language Arts, Social Studies/History, Math, Government, Civics,

More information

Dublin City Schools Broadcast Video I Graded Course of Study GRADES 9-12

Dublin City Schools Broadcast Video I Graded Course of Study GRADES 9-12 Philosophy The Broadcast and Video Production Satellite Program in the Dublin City School District is dedicated to developing students media production skills in an atmosphere that includes stateof-the-art

More information

(I couldn t find a Smartie Book) NEW Grade 5/6 Mathematics: (Number, Statistics and Probability) Title Smartie Mathematics

(I couldn t find a Smartie Book) NEW Grade 5/6 Mathematics: (Number, Statistics and Probability) Title Smartie Mathematics (I couldn t find a Smartie Book) NEW Grade 5/6 Mathematics: (Number, Statistics and Probability) Title Smartie Mathematics Lesson/ Unit Description Questions: How many Smarties are in a box? Is it the

More information

Science Olympiad Competition Model This! Event Guidelines

Science Olympiad Competition Model This! Event Guidelines Science Olympiad Competition Model This! Event Guidelines These guidelines should assist event supervisors in preparing for and setting up the Model This! competition for Divisions B and C. Questions should

More information

TASK 2: INSTRUCTION COMMENTARY

TASK 2: INSTRUCTION COMMENTARY TASK 2: INSTRUCTION COMMENTARY Respond to the prompts below (no more than 7 single-spaced pages, including prompts) by typing your responses within the brackets following each prompt. Do not delete or

More information

Software Maintenance

Software Maintenance 1 What is Software Maintenance? Software Maintenance is a very broad activity that includes error corrections, enhancements of capabilities, deletion of obsolete capabilities, and optimization. 2 Categories

More information

CHAPTER V IMPLEMENTATION OF A LEARNING CONTRACT AND THE MODIFICATIONS TO THE ACTIVITIES Instructional Space The atmosphere created by the interaction

CHAPTER V IMPLEMENTATION OF A LEARNING CONTRACT AND THE MODIFICATIONS TO THE ACTIVITIES Instructional Space The atmosphere created by the interaction CHAPTER V IMPLEMENTATION OF A LEARNING CONTRACT AND THE MODIFICATIONS TO THE ACTIVITIES Instructional Space The atmosphere created by the interaction of the physical organization of space and the students

More information

Cambridge NATIONALS. Creative imedia Level 1/2. UNIT R081 - Pre-Production Skills DELIVERY GUIDE

Cambridge NATIONALS. Creative imedia Level 1/2. UNIT R081 - Pre-Production Skills DELIVERY GUIDE Cambridge NATIONALS Creative imedia Level 1/2 UNIT R081 - Pre-Production Skills VERSION 1 APRIL 2013 INDEX Introduction Page 3 Unit R081 - Pre-Production Skills Page 4 Learning Outcome 1 - Understand the

More information

Spinners at the School Carnival (Unequal Sections)

Spinners at the School Carnival (Unequal Sections) Spinners at the School Carnival (Unequal Sections) Maryann E. Huey Drake University maryann.huey@drake.edu Published: February 2012 Overview of the Lesson Students are asked to predict the outcomes of

More information

Appendix L: Online Testing Highlights and Script

Appendix L: Online Testing Highlights and Script Online Testing Highlights and Script for Fall 2017 Ohio s State Tests Administrations Test administrators must use this document when administering Ohio s State Tests online. It includes step-by-step directions,

More information

We are strong in research and particularly noted in software engineering, information security and privacy, and humane gaming.

We are strong in research and particularly noted in software engineering, information security and privacy, and humane gaming. Computer Science 1 COMPUTER SCIENCE Office: Department of Computer Science, ECS, Suite 379 Mail Code: 2155 E Wesley Avenue, Denver, CO 80208 Phone: 303-871-2458 Email: info@cs.du.edu Web Site: Computer

More information

School of Innovative Technologies and Engineering

School of Innovative Technologies and Engineering School of Innovative Technologies and Engineering Department of Applied Mathematical Sciences Proficiency Course in MATLAB COURSE DOCUMENT VERSION 1.0 PCMv1.0 July 2012 University of Technology, Mauritius

More information

AGS THE GREAT REVIEW GAME FOR PRE-ALGEBRA (CD) CORRELATED TO CALIFORNIA CONTENT STANDARDS

AGS THE GREAT REVIEW GAME FOR PRE-ALGEBRA (CD) CORRELATED TO CALIFORNIA CONTENT STANDARDS AGS THE GREAT REVIEW GAME FOR PRE-ALGEBRA (CD) CORRELATED TO CALIFORNIA CONTENT STANDARDS 1 CALIFORNIA CONTENT STANDARDS: Chapter 1 ALGEBRA AND WHOLE NUMBERS Algebra and Functions 1.4 Students use algebraic

More information

Unit 2. A whole-school approach to numeracy across the curriculum

Unit 2. A whole-school approach to numeracy across the curriculum Unit 2 A whole-school approach to numeracy across the curriculum 50 Numeracy across the curriculum Unit 2 Crown copyright 2001 Unit 2 A whole-school approach to numeracy across the curriculum Objectives

More information

LEGO MINDSTORMS Education EV3 Coding Activities

LEGO MINDSTORMS Education EV3 Coding Activities LEGO MINDSTORMS Education EV3 Coding Activities s t e e h s k r o W t n e d Stu LEGOeducation.com/MINDSTORMS Contents ACTIVITY 1 Performing a Three Point Turn 3-6 ACTIVITY 2 Written Instructions for a

More information

Facing our Fears: Reading and Writing about Characters in Literary Text

Facing our Fears: Reading and Writing about Characters in Literary Text Facing our Fears: Reading and Writing about Characters in Literary Text by Barbara Goggans Students in 6th grade have been reading and analyzing characters in short stories such as "The Ravine," by Graham

More information

Focus of the Unit: Much of this unit focuses on extending previous skills of multiplication and division to multi-digit whole numbers.

Focus of the Unit: Much of this unit focuses on extending previous skills of multiplication and division to multi-digit whole numbers. Approximate Time Frame: 3-4 weeks Connections to Previous Learning: In fourth grade, students fluently multiply (4-digit by 1-digit, 2-digit by 2-digit) and divide (4-digit by 1-digit) using strategies

More information

What's My Value? Using "Manipulatives" and Writing to Explain Place Value. by Amanda Donovan, 2016 CTI Fellow David Cox Road Elementary School

What's My Value? Using Manipulatives and Writing to Explain Place Value. by Amanda Donovan, 2016 CTI Fellow David Cox Road Elementary School What's My Value? Using "Manipulatives" and Writing to Explain Place Value by Amanda Donovan, 2016 CTI Fellow David Cox Road Elementary School This curriculum unit is recommended for: Second and Third Grade

More information

Learning Microsoft Office Excel

Learning Microsoft Office Excel A Correlation and Narrative Brief of Learning Microsoft Office Excel 2010 2012 To the Tennessee for Tennessee for TEXTBOOK NARRATIVE FOR THE STATE OF TENNESEE Student Edition with CD-ROM (ISBN: 9780135112106)

More information

Learning Lesson Study Course

Learning Lesson Study Course Learning Lesson Study Course Developed originally in Japan and adapted by Developmental Studies Center for use in schools across the United States, lesson study is a model of professional development in

More information

Secret Code for Mazes

Secret Code for Mazes Secret Code for Mazes ACTIVITY TIME 30-45 minutes MATERIALS NEEDED Pencil Paper Secret Code Sample Maze worksheet A set of mazes (optional) page 1 Background Information It s a scene we see all the time

More information

CODE Multimedia Manual network version

CODE Multimedia Manual network version CODE Multimedia Manual network version Introduction With CODE you work independently for a great deal of time. The exercises that you do independently are often done by computer. With the computer programme

More information

NONPRINT MEDIA AND TECHNOLOGY LITERACY STANDARDS FOR ASSESSING TECHNOLOGY INTEGRATION*

NONPRINT MEDIA AND TECHNOLOGY LITERACY STANDARDS FOR ASSESSING TECHNOLOGY INTEGRATION* J. EDUCATIONAL COMPUTING RESEARCH, Vol. 23(1) 85-100, 2000 NONPRINT MEDIA AND TECHNOLOGY LITERACY STANDARDS FOR ASSESSING TECHNOLOGY INTEGRATION* KAREN SWAN University at Albany ABSTRACT This article suggests

More information

Session Six: Software Evaluation Rubric Collaborators: Susan Ferdon and Steve Poast

Session Six: Software Evaluation Rubric Collaborators: Susan Ferdon and Steve Poast EDTECH 554 (FA10) Susan Ferdon Session Six: Software Evaluation Rubric Collaborators: Susan Ferdon and Steve Poast Task The principal at your building is aware you are in Boise State's Ed Tech Master's

More information

End-of-Module Assessment Task

End-of-Module Assessment Task Student Name Date 1 Date 2 Date 3 Topic E: Decompositions of 9 and 10 into Number Pairs Topic E Rubric Score: Time Elapsed: Topic F Topic G Topic H Materials: (S) Personal white board, number bond mat,

More information

Justin Raisner December 2010 EdTech 503

Justin Raisner December 2010 EdTech 503 Justin Raisner December 2010 EdTech 503 INSTRUCTIONAL DESIGN PROJECT: ADOBE INDESIGN LAYOUT SKILLS For teaching basic indesign skills to student journalists who will edit the school newspaper. TABLE OF

More information

Using Virtual Manipulatives to Support Teaching and Learning Mathematics

Using Virtual Manipulatives to Support Teaching and Learning Mathematics Using Virtual Manipulatives to Support Teaching and Learning Mathematics Joel Duffin Abstract The National Library of Virtual Manipulatives (NLVM) is a free website containing over 110 interactive online

More information

Introduction to Communication Essentials

Introduction to Communication Essentials Communication Essentials a Modular Workshop Introduction to Communication Essentials Welcome to Communication Essentials a Modular Workshop! The purpose of this resource is to provide facilitators with

More information

Indiana Bonus #2. Prentice Hall Grades 6 & 7 Free Teacher Print Resources Per classroom teacher with a minimum purchase of 50 Student Editions

Indiana Bonus #2. Prentice Hall Grades 6 & 7 Free Teacher Print Resources Per classroom teacher with a minimum purchase of 50 Student Editions Grades 6 & 7 Free Teacher Print Resources Indiana Bonus #2 Core Support Print Resources Indiana Teacher s Edition Teaching Resources Lesson Planner Reading and Vocabulary Study Guide Teacher s Guide, English

More information

SURVIVING ON MARS WITH GEOGEBRA

SURVIVING ON MARS WITH GEOGEBRA SURVIVING ON MARS WITH GEOGEBRA Lindsey States and Jenna Odom Miami University, OH Abstract: In this paper, the authors describe an interdisciplinary lesson focused on determining how long an astronaut

More information

North Miami Senior Project

North Miami Senior Project North Miami Senior Project All project proposals are due by the end of the first grading period. Your senior project must be completed and turned into the high school principal: o Mid-term graduates due

More information

English Language Arts Summative Assessment

English Language Arts Summative Assessment English Language Arts Summative Assessment 2016 Paper-Pencil Test Audio CDs are not available for the administration of the English Language Arts Session 2. The ELA Test Administration Listening Transcript

More information

Louisiana Free Materials List

Louisiana Free Materials List Louisiana Free Materials List Grades 6 12 Louisiana Literature GRADE 7 Student and Teacher Resources This brochure includes the Free with Order packages available upon purchase of Pearson Common Core Literature.

More information

Montana Content Standards for Mathematics Grade 3. Montana Content Standards for Mathematical Practices and Mathematics Content Adopted November 2011

Montana Content Standards for Mathematics Grade 3. Montana Content Standards for Mathematical Practices and Mathematics Content Adopted November 2011 Montana Content Standards for Mathematics Grade 3 Montana Content Standards for Mathematical Practices and Mathematics Content Adopted November 2011 Contents Standards for Mathematical Practice: Grade

More information

Houghton Mifflin Online Assessment System Walkthrough Guide

Houghton Mifflin Online Assessment System Walkthrough Guide Houghton Mifflin Online Assessment System Walkthrough Guide Page 1 Copyright 2007 by Houghton Mifflin Company. All Rights Reserved. No part of this document may be reproduced or transmitted in any form

More information

Economics Unit: Beatrice s Goat Teacher: David Suits

Economics Unit: Beatrice s Goat Teacher: David Suits Economics Unit: Beatrice s Goat Teacher: David Suits Overview: Beatrice s Goat by Page McBrier tells the story of how the gift of a goat changed a young Ugandan s life. This story is used to introduce

More information

Safe & Civil Schools Series Overview

Safe & Civil Schools Series Overview Safe & Civil Schools Series Overview The Safe & Civil School series is a collection of practical materials designed to help school staff improve safety and civility across all school settings. By so doing,

More information

OFFICE SUPPORT SPECIALIST Technical Diploma

OFFICE SUPPORT SPECIALIST Technical Diploma OFFICE SUPPORT SPECIALIST Technical Diploma Program Code: 31-106-8 our graduates INDEMAND 2017/2018 mstc.edu administrative professional career pathway OFFICE SUPPORT SPECIALIST CUSTOMER RELATIONSHIP PROFESSIONAL

More information

Language Center. Course Catalog

Language Center. Course Catalog Language Center Course Catalog 2016-2017 Mastery of languages facilitates access to new and diverse opportunities, and IE University (IEU) considers knowledge of multiple languages a key element of its

More information

5 Star Writing Persuasive Essay

5 Star Writing Persuasive Essay 5 Star Writing Persuasive Essay Grades 5-6 Intro paragraph states position and plan Multiparagraphs Organized At least 3 reasons Explanations, Examples, Elaborations to support reasons Arguments/Counter

More information

Blank Table Of Contents Template Interactive Notebook

Blank Table Of Contents Template Interactive Notebook Blank Template Free PDF ebook Download: Blank Template Download or Read Online ebook blank table of contents template interactive notebook in PDF Format From The Best User Guide Database Table of Contents

More information

Common Core State Standards

Common Core State Standards Common Core State Standards Common Core State Standards 7.NS.3 Solve real-world and mathematical problems involving the four operations with rational numbers. Mathematical Practices 1, 3, and 4 are aspects

More information

Full text of O L O W Science As Inquiry conference. Science as Inquiry

Full text of O L O W Science As Inquiry conference. Science as Inquiry Page 1 of 5 Full text of O L O W Science As Inquiry conference Reception Meeting Room Resources Oceanside Unifying Concepts and Processes Science As Inquiry Physical Science Life Science Earth & Space

More information

Math 96: Intermediate Algebra in Context

Math 96: Intermediate Algebra in Context : Intermediate Algebra in Context Syllabus Spring Quarter 2016 Daily, 9:20 10:30am Instructor: Lauri Lindberg Office Hours@ tutoring: Tutoring Center (CAS-504) 8 9am & 1 2pm daily STEM (Math) Center (RAI-338)

More information

Using interactive simulation-based learning objects in introductory course of programming

Using interactive simulation-based learning objects in introductory course of programming Available online at www.sciencedirect.com Procedia - Social and Behavioral Sciences 46 ( 2012 ) 2276 2280 WCES 2012 Using interactive simulation-based learning objects in introductory course of programming

More information

LOS ANGELES CITY COLLEGE (LACC) ALTERNATE MEDIA PRODUCTION POLICY EQUAL ACCESS TO INSTRUCTIONAL AND COLLEGE WIDE INFORMATION

LOS ANGELES CITY COLLEGE (LACC) ALTERNATE MEDIA PRODUCTION POLICY EQUAL ACCESS TO INSTRUCTIONAL AND COLLEGE WIDE INFORMATION LOS ANGELES CITY COLLEGE (LACC) ALTERNATE MEDIA PRODUCTION POLICY EQUAL ACCESS TO INSTRUCTIONAL AND COLLEGE WIDE INFORMATION Federal and state regulations (see footer) require the provision of equal access

More information

Grade 2: Using a Number Line to Order and Compare Numbers Place Value Horizontal Content Strand

Grade 2: Using a Number Line to Order and Compare Numbers Place Value Horizontal Content Strand Grade 2: Using a Number Line to Order and Compare Numbers Place Value Horizontal Content Strand Texas Essential Knowledge and Skills (TEKS): (2.1) Number, operation, and quantitative reasoning. The student

More information

Practical Integrated Learning for Machine Element Design

Practical Integrated Learning for Machine Element Design Practical Integrated Learning for Machine Element Design Manop Tantrabandit * Abstract----There are many possible methods to implement the practical-approach-based integrated learning, in which all participants,

More information

Measurement. When Smaller Is Better. Activity:

Measurement. When Smaller Is Better. Activity: Measurement Activity: TEKS: When Smaller Is Better (6.8) Measurement. The student solves application problems involving estimation and measurement of length, area, time, temperature, volume, weight, and

More information

Function Tables With The Magic Function Machine

Function Tables With The Magic Function Machine Brief Overview: Function Tables With The Magic Function Machine s will be able to complete a by applying a one operation rule, determine a rule based on the relationship between the input and output within

More information

Writing a Basic Assessment Report. CUNY Office of Undergraduate Studies

Writing a Basic Assessment Report. CUNY Office of Undergraduate Studies Writing a Basic Assessment Report What is a Basic Assessment Report? A basic assessment report is useful when assessing selected Common Core SLOs across a set of single courses A basic assessment report

More information

P a g e 1. Grade 5. Grant funded by:

P a g e 1. Grade 5. Grant funded by: P a g e 1 Grade 5 Grant funded by: P a g e 2 Focus Standard: 5.NF.1, 5.NF.2 Lesson 6: Adding and Subtracting Unlike Fractions Standards for Mathematical Practice: SMP.1, SMP.2, SMP.6, SMP.7, SMP.8 Estimated

More information

Literature and the Language Arts Experiencing Literature

Literature and the Language Arts Experiencing Literature Correlation of Literature and the Language Arts Experiencing Literature Grade 9 2 nd edition to the Nebraska Reading/Writing Standards EMC/Paradigm Publishing 875 Montreal Way St. Paul, Minnesota 55102

More information

Introduction to Moodle

Introduction to Moodle Center for Excellence in Teaching and Learning Mr. Philip Daoud Introduction to Moodle Beginner s guide Center for Excellence in Teaching and Learning / Teaching Resource This manual is part of a serious

More information

Grade 4. Common Core Adoption Process. (Unpacked Standards)

Grade 4. Common Core Adoption Process. (Unpacked Standards) Grade 4 Common Core Adoption Process (Unpacked Standards) Grade 4 Reading: Literature RL.4.1 Refer to details and examples in a text when explaining what the text says explicitly and when drawing inferences

More information

Understanding Fair Trade

Understanding Fair Trade Prepared by Vanessa Ibarra Vanessa.Ibarra2@unt.edu June 26, 2014 This material was produced for Excellence in Curricula and Experiential Learning (EXCEL) Program, which is funded through UNT Sustainability.

More information

Self Study Report Computer Science

Self Study Report Computer Science Computer Science undergraduate students have access to undergraduate teaching, and general computing facilities in three buildings. Two large classrooms are housed in the Davis Centre, which hold about

More information

EQuIP Review Feedback

EQuIP Review Feedback EQuIP Review Feedback Lesson/Unit Name: On the Rainy River and The Red Convertible (Module 4, Unit 1) Content Area: English language arts Grade Level: 11 Dimension I Alignment to the Depth of the CCSS

More information

RESPONSE TO LITERATURE

RESPONSE TO LITERATURE RESPONSE TO LITERATURE TEACHER PACKET CENTRAL VALLEY SCHOOL DISTRICT WRITING PROGRAM Teacher Name RESPONSE TO LITERATURE WRITING DEFINITION AND SCORING GUIDE/RUBRIC DE INITION A Response to Literature

More information

Comprehension Recognize plot features of fairy tales, folk tales, fables, and myths.

Comprehension Recognize plot features of fairy tales, folk tales, fables, and myths. 4 th Grade Language Arts Scope and Sequence 1 st Nine Weeks Instructional Units Reading Unit 1 & 2 Language Arts Unit 1& 2 Assessments Placement Test Running Records DIBELS Reading Unit 1 Language Arts

More information

HANDOUT for AMCHP Conference February 14 th 2012

HANDOUT for AMCHP Conference February 14 th 2012 HANDOUT for AMCHP Conference February 14 th 2012 Early MIECHV Successes and Challenges: Tennessee s Experience with Continuous Quality Improvement and Engaging Military Families Sharing One Example of

More information

SAMPLE SYLLABUS. Master of Health Care Administration Academic Center 3rd Floor Des Moines, Iowa 50312

SAMPLE SYLLABUS. Master of Health Care Administration Academic Center 3rd Floor Des Moines, Iowa 50312 Master of Health Care Administration Academic Center 3rd Floor Des Moines, Iowa 50312 MHA Curriculum Committee Approval Date: August 16, 2012 CHS Curriculum Committee Approval Date: July 10, 2012 COURSE

More information

Integration of ICT in Teaching and Learning

Integration of ICT in Teaching and Learning Integration of ICT in Teaching and Learning Dr. Pooja Malhotra Assistant Professor, Dept of Commerce, Dyal Singh College, Karnal, India Email: pkwatra@gmail.com. INTRODUCTION 2 st century is an era of

More information

ICT A learning and teaching tool By Sushil Upreti SOS Hermann Gmeiner School Sanothimi Sanothimi, Bhaktapur, Nepal

ICT A learning and teaching tool By Sushil Upreti SOS Hermann Gmeiner School Sanothimi Sanothimi, Bhaktapur, Nepal ICT A learning and teaching tool By Sushil Upreti SOS Hermann Gmeiner School Sanothimi Sanothimi, Bhaktapur, Nepal Overview ICTs in Education Dilemmas and Realities Role and Nature of ICTs in Education

More information

Taking Kids into Programming (Contests) with Scratch

Taking Kids into Programming (Contests) with Scratch Olympiads in Informatics, 2009, Vol. 3, 17 25 17 2009 Institute of Mathematics and Informatics, Vilnius Taking Kids into Programming (Contests) with Scratch Abdulrahman IDLBI Syrian Olympiad in Informatics,

More information

The Bruins I.C.E. School

The Bruins I.C.E. School The Bruins I.C.E. School Lesson 1: Retell and Sequence the Story Lesson 2: Bruins Name Jersey Lesson 3: Building Hockey Words (Letter Sound Relationships-Beginning Sounds) Lesson 4: Building Hockey Words

More information

Classify: by elimination Road signs

Classify: by elimination Road signs WORK IT Road signs 9-11 Level 1 Exercise 1 Aims Practise observing a series to determine the points in common and the differences: the observation criteria are: - the shape; - what the message represents.

More information

WiggleWorks Software Manual PDF0049 (PDF) Houghton Mifflin Harcourt Publishing Company

WiggleWorks Software Manual PDF0049 (PDF) Houghton Mifflin Harcourt Publishing Company WiggleWorks Software Manual PDF0049 (PDF) Houghton Mifflin Harcourt Publishing Company Table of Contents Welcome to WiggleWorks... 3 Program Materials... 3 WiggleWorks Teacher Software... 4 Logging In...

More information

Language Art (Writers Workshop) Science (beetle anatomy) Art (thank you card design)

Language Art (Writers Workshop) Science (beetle anatomy) Art (thank you card design) Grade Level Duration Subject Area(s) Thank You Letter to a Guest Speaker Audrey Bullock & Corinne Solonar-Kong Hellgate Elementary 3 rd grade Three separate sessions, approximately 1hr, 45 min. total:

More information

Arizona s College and Career Ready Standards Mathematics

Arizona s College and Career Ready Standards Mathematics Arizona s College and Career Ready Mathematics Mathematical Practices Explanations and Examples First Grade ARIZONA DEPARTMENT OF EDUCATION HIGH ACADEMIC STANDARDS FOR STUDENTS State Board Approved June

More information

Plainfield Public School District Reading/3 rd Grade Curriculum Guide. Modifications/ Extensions (How will I differentiate?)

Plainfield Public School District Reading/3 rd Grade Curriculum Guide. Modifications/ Extensions (How will I differentiate?) Grade level: 3 rd Grade Content: Reading NJCCCS: STANDARD 3.1Reading All students will understand and apply the knowledge of sounds, letters,and words in written english to become independent and fluent

More information

C U L I N AR Y A R T S

C U L I N AR Y A R T S C U L I N AR Y A R T S PATHWAY: COURSE: UNIT: Culinary Arts Introduction to Culinary Arts (ICA) 5.2 Kitchen Knife Use Concept of mise en place INTRODUCTION Annotation: Briefly describe the unit topics,

More information

Learning Microsoft Publisher , (Weixel et al)

Learning Microsoft Publisher , (Weixel et al) Prentice Hall Learning Microsoft Publisher 2007 2008, (Weixel et al) C O R R E L A T E D T O Mississippi Curriculum Framework for Business and Computer Technology I and II BUSINESS AND COMPUTER TECHNOLOGY

More information

Lip reading: Japanese vowel recognition by tracking temporal changes of lip shape

Lip reading: Japanese vowel recognition by tracking temporal changes of lip shape Lip reading: Japanese vowel recognition by tracking temporal changes of lip shape Koshi Odagiri 1, and Yoichi Muraoka 1 1 Graduate School of Fundamental/Computer Science and Engineering, Waseda University,

More information

MADERA SCIENCE FAIR 2013 Grades 4 th 6 th Project due date: Tuesday, April 9, 8:15 am Parent Night: Tuesday, April 16, 6:00 8:00 pm

MADERA SCIENCE FAIR 2013 Grades 4 th 6 th Project due date: Tuesday, April 9, 8:15 am Parent Night: Tuesday, April 16, 6:00 8:00 pm MADERA SCIENCE FAIR 2013 Grades 4 th 6 th Project due date: Tuesday, April 9, 8:15 am Parent Night: Tuesday, April 16, 6:00 8:00 pm Why participate in the Science Fair? Science fair projects give students

More information

Backwards Numbers: A Study of Place Value. Catherine Perez

Backwards Numbers: A Study of Place Value. Catherine Perez Backwards Numbers: A Study of Place Value Catherine Perez Introduction I was reaching for my daily math sheet that my school has elected to use and in big bold letters in a box it said: TO ADD NUMBERS

More information

Spanish IV Textbook Correlation Matrices Level IV Standards of Learning Publisher: Pearson Prentice Hall

Spanish IV Textbook Correlation Matrices Level IV Standards of Learning Publisher: Pearson Prentice Hall Person-to-Person Communication SIV.1 The student will exchange a wide variety of information orally and in writing in Spanish on various topics related to contemporary and historical events and issues.

More information

Secondary English-Language Arts

Secondary English-Language Arts Secondary English-Language Arts Assessment Handbook January 2013 edtpa_secela_01 edtpa stems from a twenty-five-year history of developing performance-based assessments of teaching quality and effectiveness.

More information

Spring 2015 Online Testing. Program Information and Registration and Technology Survey (RTS) Training Session

Spring 2015 Online Testing. Program Information and Registration and Technology Survey (RTS) Training Session Spring 2015 Online Testing Program Information and Registration and Technology Survey (RTS) Training Session Webinar Training Sessions: Calls will be operator assisted. Submit questions through the chat

More information

Lesson Plan. Preliminary Planning

Lesson Plan. Preliminary Planning Lesson Plan Date: 01.20.15 Subject: Social Studies Grade Level: 7th Time Needed: 20 Mins. Preliminary Planning Topic/Central Focus: Examining the history and significance of the Day of the Dead Mexican

More information

Diploma of Building and Construction (Building)

Diploma of Building and Construction (Building) of technical trades and languages Diploma of Building and Construction (Building) CPC50210 At Open Colleges, we are passionate about helping people from all walks of life to achieve their aspirations and

More information

Content Language Objectives (CLOs) August 2012, H. Butts & G. De Anda

Content Language Objectives (CLOs) August 2012, H. Butts & G. De Anda Content Language Objectives (CLOs) Outcomes Identify the evolution of the CLO Identify the components of the CLO Understand how the CLO helps provide all students the opportunity to access the rigor of

More information

P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou, C. Skourlas, J. Varnas

P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou, C. Skourlas, J. Varnas Exploiting Distance Learning Methods and Multimediaenhanced instructional content to support IT Curricula in Greek Technological Educational Institutes P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou,

More information

Algebra 1, Quarter 3, Unit 3.1. Line of Best Fit. Overview

Algebra 1, Quarter 3, Unit 3.1. Line of Best Fit. Overview Algebra 1, Quarter 3, Unit 3.1 Line of Best Fit Overview Number of instructional days 6 (1 day assessment) (1 day = 45 minutes) Content to be learned Analyze scatter plots and construct the line of best

More information

Reading Grammar Section and Lesson Writing Chapter and Lesson Identify a purpose for reading W1-LO; W2- LO; W3- LO; W4- LO; W5-

Reading Grammar Section and Lesson Writing Chapter and Lesson Identify a purpose for reading W1-LO; W2- LO; W3- LO; W4- LO; W5- New York Grade 7 Core Performance Indicators Grades 7 8: common to all four ELA standards Throughout grades 7 and 8, students demonstrate the following core performance indicators in the key ideas of reading,

More information

QLWG Skills for Life Acknowledgements

QLWG Skills for Life Acknowledgements QLWG Skills for Life Acknowledgements Published by: Quebec Literacy Working Group: Central Québec School Board: Eastern Shores School Board: Eastern Townships School Board: English Montreal School Board:

More information

Clerical Skills Level II

Clerical Skills Level II Passaic County Technical Institute Clerical Skills Level II School of Business Submitted by: Marie Easton Maria Matano June 2010 1 CLERICAL SKILLS II I. RATIONALE Clerical Skills II covers a variety of

More information

Using Blackboard.com Software to Reach Beyond the Classroom: Intermediate

Using Blackboard.com Software to Reach Beyond the Classroom: Intermediate Using Blackboard.com Software to Reach Beyond the Classroom: Intermediate NESA Conference 2007 Presenter: Barbara Dent Educational Technology Training Specialist Thomas Jefferson High School for Science

More information

TEKS Resource System. Effective Planning from the IFD & Assessment. Presented by: Kristin Arterbury, ESC Region 12

TEKS Resource System. Effective Planning from the IFD & Assessment. Presented by: Kristin Arterbury, ESC Region 12 TEKS Resource System Effective Planning from the IFD & Assessments Presented by: Kristin Arterbury, ESC Region 12 karterbury@esc12.net, 254-297-1115 Assessment Curriculum Instruction planwithifd.wikispaces.com

More information

WHI Voorhees SOL Unit WHI.3 Date

WHI Voorhees SOL Unit WHI.3 Date SOL #/DAILY Objective s, s of the b) describing the social, political, and economic, including slavery. s, s of the b) describing the social, political, and economic, including slavery. s, s of the a)

More information