Chapter 5. Problem Solving before Programming

Size: px
Start display at page:

Download "Chapter 5. Problem Solving before Programming"

Transcription

1 Christian Jacob Chapter 5 Problem Solving before Programming 5.1 Problem-Solving Strategies 5.2 Algorithms as Paths Through Problem Spaces 5.3 Givens, Goals, and Resources 5.4 Analysing and Exploring Problem Spaces 5.5 From Blind Search to Informed Search 5.6 Analytical Reasoning 5.7 The Analogical Approach 5.8 References Chapter Overview

2 Page 2 Chapter 5: Problem Solving before Programming Christian Jacob 5.1 Problem-Solving Strategies Finding algorithmic solutions to programming problems is like solving mysteries in detective stories. Analytical problem-solving: - the Hercule Poirot approach - careful laying out of the evidence - logically putting together little clues Analogical approach: - the Jane Marple approach - finding solutions by analogy or comparison to already solved problems First Back TOC Prev Next Last

3 Page 3 Chapter 5: Problem Solving before Programming Christian Jacob Trial and error, hacking: This approach is, of course, less recommended at least for beginners. First Back TOC Prev Next Last

4 Page 4 Chapter 5: Problem Solving before Programming Christian Jacob 5.2 Algorithms as Paths Through Problem Spaces Algorithm: a precise specification of a behaviour intended to solve a well-defined problem Coding: the translation of an algorithm into a particular programming language Program: a step-by-step execution plan that a computer can perform as a sequence of simple steps or instructions First Back TOC Algorithms as Paths Through Problem Spaces Prev Next Last

5 Page 5 Chapter 5: Problem Solving before Programming Christian Jacob Sequences can have complex underlying structures. Example: sentences Dagwood likes his fast computer Name Verb Pronoun Adjective Noun Subject Predicate Object Sentence First Back TOC Algorithms as Paths Through Problem Spaces Prev Next Last

6 Page 6 Chapter 5: Problem Solving before Programming Christian Jacob 5.3 Givens, Goals, and Resources Givens: Goals: initial conditions of the problem (the way things are) desired state(s) (the way things should be) Any problem can be formulated at least as givens and goals. Resources: the means or methods that can transform a problem state into another, in order to move the solver from givens to goals in a step-by-step manner Differences in givens, goals, and resources make different problems (example: different levels of programming environments). First Back TOC Givens, Goals, and Resources Prev Next Last

7 Page 7 Chapter 5: Problem Solving before Programming Christian Jacob Examples: Game playing - Given: initial game setup - Goal: win! - Resources: possible moves Preparing a meal - Givens: available ingredients and cookin facilities - Goal: end up with something to eat - Resources: recipe, the cook s experience,... Note: Many of our daily problems are ill-defined: the givens, goals, resources, or combinations of the three, is unclear. Example: client application programmer programming language computer First Back TOC Givens, Goals, and Resources Prev Next Last

8 Page 8 Chapter 5: Problem Solving before Programming Christian Jacob 5.4 Analysing and Exploring Problem Spaces Problem space: a complete set of possible states, generated by exploring all the possible steps, or moves, which may or may not lead from a given state to a goal state. P F G C / F G C / P G C / P F F C / P G F G / P C P G C / F P F C / G P F G / C C / P F G G / P F C F / P G C P C / F G P G / F C P F / G C / P F G C First Back TOC Analysing and Exploring Problem Spaces Prev Next Last

9 Page 9 Chapter 5: Problem Solving before Programming Christian Jacob What should we know for a preliminary analysis of a problem? What are the givens? Do we really have all of them? - Are the givens specific to a particular situation? - Can we generalize? - Is there a notation that represents the givens and other states succinctly? What is the goal? - Is there are single goal, or are there several? - If there is a single goal, can it be split into pieces? - If there are several goals or subgoals, are they independent or are they connected? - Are there obstacles to overcome to reach a goal? How can they be overcome? - Are there any constraints on developing a solution? First Back TOC Analysing and Exploring Problem Spaces Prev Next Last

10 Page 10 Chapter 5: Problem Solving before Programming Christian Jacob What are the resources (moves, operators, procedures, rules, transformations)? - For each resource, are there constraints, or preconditions, to be addressed before applying it? - If so, are there other, possibly simpler, resources that meet the preconditions? - What are the variants? When you apply a resource, what changes? - What are the invariants? When you apply a resource, what stays the same? - Are there more powerful resources for this problem? - Would someone else know these resources? -... First Back TOC Analysing and Exploring Problem Spaces Prev Next Last

11 Page 11 Chapter 5: Problem Solving before Programming Christian Jacob 5.5 From Blind Search to Informed Search Example: the FOX-CORN-GOOSE problem Search tree (for two actions) P F G C / F G C / P G C / P F F C / P G F G / P C P F G C / P F G C / P G C / F P F G C / P F C / G P F G C / P F G / C First Back TOC From Blind Search to Informed Search Prev Next Last

12 Page 12 Chapter 5: Problem Solving before Programming Christian Jacob State space graph for the FOX-CORN-GOOSE problem P F G C / F G C / P G C / P F F C / P G F G / P C P G C / F P F C / G P F G / C C / P F G G / P F C F / P G C P C / F G P G / F C P F / G C / P F G C First Back TOC From Blind Search to Informed Search Prev Next Last

13 Page 13 Chapter 5: Problem Solving before Programming Christian Jacob 5.6 Analytical Reasoning Example: Planning a menu for a meal I. Preceding Courses: (1) A. Soup course: (4) 1. Cream of lettice (8) 2. Light sherry (8) B. Fish course: (4) 1. Filet of sole Veronique (5) II. Main Course: (1) A. Main dish: (2) 1. Cornish game hen à l orange (3) 2. Red wine (12) B. Accompanying dishes: (2) 1. Creamed spinach (3) 2. Wild rice (3) 3. Beverage: dry white wine (3) / (7) First Back TOC Analytical Reasoning Prev Next Last

14 Page 14 Chapter 5: Problem Solving before Programming Christian Jacob III. Following Courses: (1) A. Salad course: (5) 1. Assorted green (9) 2. Vinaigrette dressing (10) B. Dessert: (5) 1. Mandarin orange tart (10) 2. Sweet, heavier white whine (11) Laying out an algorithm or a problem solution is like planning a menu. The different parts of the problem solution are developed in a topdown fashion. An alternative approach would be to develop bottom-up (e.g., starting from the ingredients). First Back TOC Analytical Reasoning Prev Next Last

15 Page 15 Chapter 5: Problem Solving before Programming Christian Jacob 5.7 The Analogical Approach Patient Vomiting Abdominal pain Fever Pulse Drug successful A yes yes high elevated yes B yes yes no normal yes C yes no high normal no D no yes high elevated no E no no high elevated no F yes yes no elevated yes New patient yes yes low normal? First Back TOC The Analogical Approach Prev Next Last

16 Page 16 Chapter 5: Problem Solving before Programming Christian Jacob 5.8 References G. Blank and R. Barnes, The Universal Machine, Boston, MA: WCB/ McGraw-Hill, Chapters 2.1 through 2.5. First Back TOC References Prev Next Last

PUTTING ENGLISH TO WORK 1: Unit 8. In this unit you will learn:

PUTTING ENGLISH TO WORK 1: Unit 8. In this unit you will learn: PUTTING ENGLISH TO WORK 1: Unit 8 ORDERING FOOD In this unit you will learn: THESE LIFE SKILLS: Order food in a restaurant Take orders in a restaurant Read and understand a bill Please bring me some coffee.

More information

You should read this chapter if you need to review or learn about

You should read this chapter if you need to review or learn about CHAPTER 4 Using Adjectives and Ads Correctly Do I Need to Read This Chapter? You should read this chapter if you need to review or learn about Distinguishing between adjectives and ads Comparing with adjectives

More information

Higher order questions encourages higher order thinking Based on Bloom s Taxonomy

Higher order questions encourages higher order thinking Based on Bloom s Taxonomy Higher order questions encourages higher order thinking Based on Bloom s Taxonomy Knowledge What happened after...? How many...? Who was it that...? Can you name the...? Describe what happened at...? Who

More information

But what does my body need? (No...it is not just candy and soda!)

But what does my body need? (No...it is not just candy and soda!) Chapter 35: Page 349 In the last chapter, you learned how important your immune system is to your survival. This week, you are going to learn how to keep your immune system strong and ready to protect

More information

Introduction...1. Motivational Rewards...2. Motivational Points...3. Student Points...4

Introduction...1. Motivational Rewards...2. Motivational Points...3. Student Points...4 Introduction....................................1 Motivational Rewards........................2 Motivational Points..........................3 Student Points..............................4 Language Activities

More information

A COMPETITION FOR SCHOOL PUPILS FROM THE LIVERPOOL CITY REGION COMBINING THE ART OF LITERACY AND THE SCIENCE OF FOOD

A COMPETITION FOR SCHOOL PUPILS FROM THE LIVERPOOL CITY REGION COMBINING THE ART OF LITERACY AND THE SCIENCE OF FOOD A COMPETITION FOR SCHOOL PUPILS FROM THE LIVERPOOL CITY REGION COMBINING THE ART OF LITERACY AND THE SCIENCE OF FOOD Sponsored by Hilton Liverpool, with crockery by Churchill Hugh Baird College s L20 Hotel

More information

Chapter 3. Operating Systems

Chapter 3. Operating Systems Christian Jacob Chapter 3 Operating Systems 3.1 Evolution of Operating Systems 3.2 Booting an Operating System 3.3 Operating System Architecture 3.4 References Chapter Overview Page 2 Chapter 3: Operating

More information

The 2015 Discover Duck Recipe Contest for Professional Chefs & Culinary Students Mail-In Official Entry Form

The 2015 Discover Duck Recipe Contest for Professional Chefs & Culinary Students Mail-In Official Entry Form The 2015 Discover Duck Recipe Contest for Professional Chefs & Culinary Students Mail-In Official Entry Form All requested information is required. Please type requested information directly into this

More information

NUTRITION & ALLERGEN INFORMATION

NUTRITION & ALLERGEN INFORMATION Total Fat Saturated Fat Trans Fat SIDE Chow Mein 9.4 oz 490 200 22 4 0 0 1060 65 4 8 13 Fried Rice 9.3 oz 470 170 19 3.5 0 150 830 64 3 3 11 Steamed Brown Rice 10.5 oz 420 35 4 1 0 0 15 87 4 1 9 Steamed

More information

My Game. Or I say, I m in the window. Or else, I m out the door. I m on top of the table, Or I m under the floor.

My Game. Or I say, I m in the window. Or else, I m out the door. I m on top of the table, Or I m under the floor. My Game I have a little pretend game I play When Daddy calls to me. I say, I m right here, Daddy! I m under the sea! Or I say, I m in the window. Or else, I m out the door. I m on top of the table, Or

More information

Healthy Eating During Pregnancy

Healthy Eating During Pregnancy Healthy Eating During Pregnancy Pregnancy is a time of great change. Your body is changing to allow your baby to grow and develop. Good nutrition will help you meet the extra demands of pregnancy while

More information

THE PROFESSIONAL COOK APPRENTICE GUIDE FOR BC 1

THE PROFESSIONAL COOK APPRENTICE GUIDE FOR BC 1 THE COOK APPRENTICE GUIDE FOR BC 1 Congratulations! You re on your way to an exciting and rewarding career as a professional cook. Becoming a certified cook in BC means you can progress in your career,

More information

UML TUTORIALS THE USE CASE MODEL

UML TUTORIALS THE USE CASE MODEL UML TUTORIALS THE USE CASE MODEL www.sparxsystems.com.au Sparx Systems 2004 Page 1/5 describes the proposed functionality of the new system. A Use Case represents a discrete unit of interaction between

More information

Fry Phrases Set 1. TeacherHelpForParents.com help for all areas of your child s education

Fry Phrases Set 1. TeacherHelpForParents.com help for all areas of your child s education Set 1 The people Write it down By the water Who will make it? You and I What will they do? He called me. We had their dog. What did they say? When would you go? No way A number of people One or two How

More information

Customary Culinary Units of Measure

Customary Culinary Units of Measure Chapter 3 Customary Culinary Units of Measure In this chapter, you will learn the following to World Class standards: Customary Kitchen Volumetric Measurers Larger Kitchen Volume Measurers Weight Measures

More information

Adjectives quiz. Level A. 1. Her hair is long and. A) curly B) happy C) slim D) late. 2. He drives a bright red sports car. It's very.

Adjectives quiz. Level A. 1. Her hair is long and. A) curly B) happy C) slim D) late. 2. He drives a bright red sports car. It's very. Level A 1. Her hair is long and. A) curly B) happy C) slim D) late 2. He drives a bright red sports car. It's very. A) wild B) shallow C) fast D) tall 3. Today, the weather's going to be. A) hopeful B)

More information

Strategies for Technical Writing

Strategies for Technical Writing Strategies for Technical Writing Writing as Process Recommendation (to keep audience in mind): Write a first draft for yourself. Get your explanations and as many details as possible down on paper. Write

More information

Compound Sentences and Coordination

Compound Sentences and Coordination Compound Sentences and Coordination Mary Westervelt Reference: Ann Hogue (2003) The Essentials of English: A Writer s Handbook. New York, Pearson Education, Inc. When two sentences are combined in a way

More information

Boomtown Holiday Banquet Menu

Boomtown Holiday Banquet Menu Boomtown Holiday Banquet Menu Holiday Served Dinners- (Minimum of 20 Adults) First Course Mixed Greens with walnuts, fruit, cheese and raspberry vinaigrette Entrée Options Grilled Chicken Breast in Roasted

More information

EKOLA Junior High School Bilingual Programme Entrance Test (1h15) Sample Paper. Result:

EKOLA Junior High School Bilingual Programme Entrance Test (1h15) Sample Paper. Result: EKOLA Junior High School Bilingual Programme Entrance Test (1h15) Sample Paper Name: Result: Task 1 Which notice says what? For questions 1 5, match the correct letter A H. 1. You do not have to pay extra

More information

Vegetarian Culinary Arts Courses 2015/2016

Vegetarian Culinary Arts Courses 2015/2016 Vegetarian Culinary Arts Courses 2015/2016 VGCA 101. Professional Cooking: Vegetarian Main Dishes and Entrees I VGCA 105. Professional Cooking: Baking and Pastry I VGCA 109. Professional Cooking: Soups,

More information

TEACHER S GUIDE TO RUSH HOUR

TEACHER S GUIDE TO RUSH HOUR Using Puzzles to Teach Problem Solving TEACHER S GUIDE TO RUSH HOUR Includes Rush Hour 2, 3, 4, Rush Hour Jr., Railroad Rush Hour and Safari Rush Hour BENEFITS Rush Hour is a sliding piece puzzle that

More information

Code Kingdoms Learning a Language

Code Kingdoms Learning a Language codekingdoms Code Kingdoms Unit 2 Learning a Language for kids, with kids, by kids. Resources overview We have produced a number of resources designed to help people use Code Kingdoms. There are introductory

More information

Mediterranean Bean Salad. You ll Need - Take Out - 1/3 cup SPLENDA Granular measuring cups

Mediterranean Bean Salad. You ll Need - Take Out - 1/3 cup SPLENDA Granular measuring cups Mediterranean Bean Salad 10 Servings You ll Need - Take Out - 1/3 cup SPLENDA Granular measuring cups ½ cup white wine vinegar measuring spoons 2 tablespoons extra virgin olive oil whisk 1 (15 oz.) can

More information

2nd Grade Language Arts Practice Test

2nd Grade Language Arts Practice Test 2nd Grade Language Arts Practice Name: Instructions: Copyright 2000-2002 Measured Progress, All Rights Reserved : 1. Which word in the paragraph below is used too much? My music teacher is nice. He plays

More information

Questions? Assignment. Techniques for Gathering Requirements. Gathering and Analysing Requirements

Questions? Assignment. Techniques for Gathering Requirements. Gathering and Analysing Requirements Questions? Assignment Why is proper project management important? What is goal of domain analysis? What is the difference between functional and non- functional requirements? Why is it important for requirements

More information

TCDSB - SKILLS COMPETITION - 2015 Culinary Art Competition

TCDSB - SKILLS COMPETITION - 2015 Culinary Art Competition TCDSB - SKILLS COMPETITION - 2015 Culinary Art Competition Date: March 14, 2015 Humber College Blvd Kitchen: D 128 Competition Chair: Vince Locacciato locaccv@tcdsb.org Two winners will go on to compete

More information

Making Healthy Choices in Restaurants

Making Healthy Choices in Restaurants Making Healthy Choices in Restaurants Objectives 1. Students will understand that although restaurant food is typically unhealthy, there are healthy food options at your favorite fast food restaurants.

More information

SENTENCE PUZZLE RACE. by Zoltan Golcz

SENTENCE PUZZLE RACE. by Zoltan Golcz SENTENCE PUZZLE RACE by Zoltan Golcz Teacher s Notes Level: absolute beginners (can be adapted to suit any levels) Aim: revise vocabulary, word order and sentence structures (+,-,?) Grouping: pair work/teams

More information

Culinary Arts Diploma. For entry-level aspiring chefs

Culinary Arts Diploma. For entry-level aspiring chefs Culinary Arts Diploma For entry-level aspiring chefs FOR Culinary Arts Diploma PRE-REQUISITE Launch your culinary career Designed specifically for entry-level professionals in the food-related services,

More information

Chapter 3 - Growing with Verbs. A verb that helps another verb is called a helping verb. It comes before the main verb to tell about the action.

Chapter 3 - Growing with Verbs. A verb that helps another verb is called a helping verb. It comes before the main verb to tell about the action. 120 Chapter 3 - Growing with Verbs 3.12 Helping Verbs A verb that helps another verb is called a helping verb. It comes before the main verb to tell about the action. John will ride his scooter. She has

More information

THERE ARE SEVERAL KINDS OF PRONOUNS:

THERE ARE SEVERAL KINDS OF PRONOUNS: PRONOUNS WHAT IS A PRONOUN? A Pronoun is a word used in place of a noun or of more than one noun. Example: The high school graduate accepted the diploma proudly. She had worked hard for it. The pronoun

More information

Low-Carb Pumpkin Dishes

Low-Carb Pumpkin Dishes Low-Carb Pumpkin Dishes 92 Enjoy this 3-course pumpkin feast for a TOTAL of just 5 carbs on this program! Festive salad with quick & easy Pumpkin Vinaigrette dressing... Page 2 Creamy & rich Pumpkin Chowder

More information

Culinary Arts Program Syllabus

Culinary Arts Program Syllabus Culinary Arts Program Syllabus Organization Washburn Institute of Technology Program Number 12.0505 Instructional Level Certificate Target Population Grades 11 & 12 Post-secondary Description This program

More information

Parsing Technology and its role in Legacy Modernization. A Metaware White Paper

Parsing Technology and its role in Legacy Modernization. A Metaware White Paper Parsing Technology and its role in Legacy Modernization A Metaware White Paper 1 INTRODUCTION In the two last decades there has been an explosion of interest in software tools that can automate key tasks

More information

Lesson Plan #2. Performance Objective(s): Given a worksheet of 12 sentences, the 2 nd grade students will identify the action verb 9 out of 12 times.

Lesson Plan #2. Performance Objective(s): Given a worksheet of 12 sentences, the 2 nd grade students will identify the action verb 9 out of 12 times. Lesson Plan #2 Lesson: Action Verb Lesson with Book, Game, and Video Length: 45 minutes Age or Grade Level Intended: 2 nd Grade Source: Taken from www.lessonsnips.com and Emily Gallmeyer Academic Standard(s):

More information

Condiments... 37 Touch Repeat... 38 Repeat Round... 38

Condiments... 37 Touch Repeat... 38 Repeat Round... 38 1 USER GUIDE MICROS 3700 Making it work This guide contains step-by-step instructions for using your Micros 3700 POS System. Depending on the programming done for your site, some of the applications will

More information

One (1) First Prize Winner in each category will receive $200 and will be featured in Wildwood s Care and Share holiday menu.

One (1) First Prize Winner in each category will receive $200 and will be featured in Wildwood s Care and Share holiday menu. WILDWOOD CASINO CULINARY CHALLENGE OFFICIAL RULES NO PURCHASE NECESSARY PURCHASE WILL NOT IMPROVE CHANCES OF WINNING. MANY WILL ENTER, FEW WILL WIN. QUALIFYING BEGINS OCTOBER 11, 2013 AT 12:00:01 AM AND

More information

Dinner Menus. Three Course Dinner Menu. Please select a first course of appetizer or soup, or salad; a main course, and dessert (additional course *)

Dinner Menus. Three Course Dinner Menu. Please select a first course of appetizer or soup, or salad; a main course, and dessert (additional course *) Dinner Menus Three Course Dinner Menu Please select a first course of appetizer or soup, or salad; a main course, and dessert (additional course *) Appetizers Cheese Filled Tortellini or Ravioli in Tomato

More information

Lesson: Adjectives Length 50-55 minutes Age or Grade Intended 6 th grade special education (direct instruction)

Lesson: Adjectives Length 50-55 minutes Age or Grade Intended 6 th grade special education (direct instruction) LESSON PLAN by Lauren McCoy Lesson: Adjectives Length 50-55 minutes Age or Grade Intended 6 th grade special education (direct instruction) Academic Standard(s):. 6.6.2 Grammar Identify and properly use

More information

CHAPTER 2. Logic. 1. Logic Definitions. Notation: Variables are used to represent propositions. The most common variables used are p, q, and r.

CHAPTER 2. Logic. 1. Logic Definitions. Notation: Variables are used to represent propositions. The most common variables used are p, q, and r. CHAPTER 2 Logic 1. Logic Definitions 1.1. Propositions. Definition 1.1.1. A proposition is a declarative sentence that is either true (denoted either T or 1) or false (denoted either F or 0). Notation:

More information

THE EF ENGLISHLIVE GUIDE TO: Dating in English TOP TIPS. For making the right impression

THE EF ENGLISHLIVE GUIDE TO: Dating in English TOP TIPS. For making the right impression EF Englishlive: Language & Lifestyle Guides THE EF ENGLISHLIVE GUIDE TO: Dating in English TOP TIPS For making the right impression Index INDEX 03 Introduction 05 Asking someone out on a date 09 Booking

More information

User Manual Network connection and Mobics Dashboard (MIS) software for Dryer Controller M720

User Manual Network connection and Mobics Dashboard (MIS) software for Dryer Controller M720 User Manual Network connection and Mobics Dashboard (MIS) software for Dryer Controller Manual version : v1.00 Networking and MIS Manual Dryer controller Page 1 of 16 Document history Preliminary version

More information

Running a STAR English conversation class

Running a STAR English conversation class Running a STAR English conversation class A guide for STAR volunteers who are leading English conversation classes. The pack contains: 1. Tips and advice for running a class 2. Ideas for classroom activities

More information

101 IELTS Speaking Part Two Topic cards about sports, hobbies and free time A- Z

101 IELTS Speaking Part Two Topic cards about sports, hobbies and free time A- Z 101 IELTS Speaking Part Two Topic cards about sports, hobbies and free time A- Z As the topics of sports, hobbies and free time are easy ones that tie in with IELTS Speaking Part One and students like

More information

Circuits and Boolean Expressions

Circuits and Boolean Expressions Circuits and Boolean Expressions Provided by TryEngineering - Lesson Focus Boolean logic is essential to understanding computer architecture. It is also useful in program construction and Artificial Intelligence.

More information

Work Breakdown Structures And Linear Responsibility Charts

Work Breakdown Structures And Linear Responsibility Charts Work Breakdown Structures And Linear Responsibility Charts (Session 2 in the Project Planning And Management Module) Russ Pimmel Electrical and Computer Engineering University of Alabama October, 2001

More information

Prepare vegetables, fruit, eggs and farinaceous dishes

Prepare vegetables, fruit, eggs and farinaceous dishes Training Package Unit title Tourism, Hospitality and Events (SIT07) Prepare vegetables, fruit, eggs and farinaceous dishes HSC Requirements and Advice Unit code Competency field Sector SITHCCC009A Commercial

More information

Culinary Arts Program. Better Food, Advanced Training

Culinary Arts Program. Better Food, Advanced Training Culinary Arts Program Better Food, Advanced Training Culinary Program What is the Return on Investment in the Army Culinary Arts Program? AR 30-22 1. Improve the overall quality of food and training. 2.

More information

CORPORATE EVENTS AT AUCKLAND SEAFOOD SCHOOL

CORPORATE EVENTS AT AUCKLAND SEAFOOD SCHOOL Look. Cook. Eat. CORPORATE EVENTS AT AUCKLAND SEAFOOD SCHOOL CORPORATE EVENTS Welcome Thank you for your interest in running a corporate event at Auckland Seafood School. Read on to learn about the range

More information

Sentences: Kinds and Parts

Sentences: Kinds and Parts Sentences: Kinds and Parts A sentence is a group of words expressing a complete thought. Sentences can be classified in two different ways: by function and by structure. FUNCTION: FOUR KINDS OF SENTENCES

More information

Learning the Question & Answer Flows

Learning the Question & Answer Flows Learning the Question & Answer Flows These exercises are designed to help you learn how the Question and Answer Flows are constructed in the Parent Help Booklet. In the Question and Answer Flow, a series

More information

Salad Dressing Recipes

Salad Dressing Recipes The Creative Homemaking Guide to Salad Dressing Recipes by Rachel Paxton ABOUT CREATIVE HOMEMAKING: Visit Creative Homemaking for all of your homemaking needs. Creative Homemaking offers cleaning hints,

More information

Westwood Retirement Resort II 09/21/2014-09/27/2014. Westwood Retirement Resort II Sunday, September 21, 2014. Spice Cake

Westwood Retirement Resort II 09/21/2014-09/27/2014. Westwood Retirement Resort II Sunday, September 21, 2014. Spice Cake Sunday, September 21, 2014 Five-Bean Soup Cranberry Wine Salad % Baked Sole Almondine Fillet of sole baked with onion, garlic, lemon and slivered almonds. Beef Tips Tender beef tips simmered in a mushroom

More information

Nouns may show possession or ownership. Use an apostrophe with a noun to show something belongs to someone or to something.

Nouns may show possession or ownership. Use an apostrophe with a noun to show something belongs to someone or to something. Nouns Section 1.4 Possessive Nouns Nouns may show possession or ownership. Use an apostrophe with a noun to show something belongs to someone or to something. Jane s dress is red. The table s legs were

More information

Student Name: PROGRAM COMPETENCY PROFILE FOR CAREER TECHNICAL EDUCATION Career Cluster: Hospitality and Tourism

Student Name: PROGRAM COMPETENCY PROFILE FOR CAREER TECHNICAL EDUCATION Career Cluster: Hospitality and Tourism Student Name: Date: PROGRAM COMPETENCY PROFILE FOR CAREER TECHNICAL EDUCATION Understand the food service industry and career opportunities in the field 1. Define food service with examples of current

More information

www.theabundancefoundation.org building our local foodshed, modeling renewable energy and inspiring community

www.theabundancefoundation.org building our local foodshed, modeling renewable energy and inspiring community Contact: Jenny Schnaak FOR IMMEDIATE RELEASE Telephone: 919-533- 5181 Email: wow@theabundancefoundation.org Web: http://theabundancefoundation.org/events/chatham- county- chef- challenge- 2012 Chatham

More information

Prepositions. TLC/College of the Canyons. Prepared by Kim Haglund, M.Ed: TLC Coordinator

Prepositions. TLC/College of the Canyons. Prepared by Kim Haglund, M.Ed: TLC Coordinator Prepositions TLC/College of the Canyons Prepared by Kim Haglund, M.Ed: TLC Coordinator What is a Preposition? A preposition is a word that shows the relationship of a noun or pronoun to another word in

More information

Dinner Menu - Allergy Guide

Dinner Menu - Allergy Guide Seafood Dinner Menu - Allergy Guide Table Bread Keg Mints Starters & Soup Escargot Mushroom Neptune Shrimp Cocktail Beef Carpaccio Baked Shrimp Scallops & Bacon Calamari Tuna Tartare Baked Brie Cheese

More information

12 FIRST QUARTER. Class Assignments

12 FIRST QUARTER. Class Assignments August 7- Go over senior dates. Go over school rules. 12 FIRST QUARTER Class Assignments August 8- Overview of the course. Go over class syllabus. Handout textbooks. August 11- Part 2 Chapter 1 Parts of

More information

Gambling games. Lesson 6

Gambling games. Lesson 6 Lesson 6 Gambling games SPECIFIC OUTCOMES Explore the connections among physical activity, emotional wellness and social wellness by becoming familiar with the definition of addiction learning the definition

More information

By Heather Forest. Outcome: Students will learn about farm animals and how the animals in this story adopt human traits.

By Heather Forest. Outcome: Students will learn about farm animals and how the animals in this story adopt human traits. Outcome: Students will learn about farm animals and how the animals in this story adopt human traits. Materials: Blackboard or Whiteboard From Seeds to Cake Sequencing worksheet Hen Body Parts worksheet,

More information

DIABETES & HEALTHY EATING

DIABETES & HEALTHY EATING DIABETES & HEALTHY EATING Food gives you the energy you need for healthy living. Your body changes most of the food you eat into a sugar called glucose. (glucose) Insulin helps your cells get the sugar

More information

Little Blue and Little Yellow: A Story for Pippo and Other Children. Little Blue and Little Yellow: Predicting the Story Critical Thinking

Little Blue and Little Yellow: A Story for Pippo and Other Children. Little Blue and Little Yellow: Predicting the Story Critical Thinking Little Blue and Little Yellow: A Story for Pippo and Other Children (ASTOR-HONOR, 1959) This Book s Message or Theme - - Friends come in all colors. Friends can affect each other s lives. About the Book

More information

Culinaire Foods & Hospitality Academy

Culinaire Foods & Hospitality Academy Culinaire Foods & Hospitality Academy Curriculum Bringing Sound Culinary Techniques to Economically Developing Regions For those who come amongst us we do not introduce culinary tricks but rather, inspire

More information

THANK YOU FOR YOUR INTEREST IN USING BAMBUDDHA. BELOW YOU WILL FIND SET OPTIONS FOR GROUPS FROM 13 PEOPLE UP TO 50 GUESTS EACH OPTION CONTAINS THREE COURSE MEAL WITH HALF A BOTTLE OF WINE AND A BOTTLE

More information

Lesson 4 What Is a Plant s Life Cycle? The Seasons of a Tree

Lesson 4 What Is a Plant s Life Cycle? The Seasons of a Tree Lesson 4 What Is a Plant s Life Cycle? The Seasons of a Tree STUDENT SKILLS: predicting, communicating prior observations and knowledge, listening, cooperating, observing, sequencing, communicating, reasoning,

More information

Phonics. High Frequency Words P.008. Objective The student will read high frequency words.

Phonics. High Frequency Words P.008. Objective The student will read high frequency words. P.008 Jumping Words Objective The student will read high frequency words. Materials High frequency words (P.HFW.005 - P.HFW.064) Choose target words. Checkerboard and checkers (Activity Master P.008.AM1a

More information

Eat More, Weigh Less?

Eat More, Weigh Less? Eat More, Weigh Less? How to manage your weight without being hungry 607 calories 293 calories Department of Health and Human Services Centers for Disease Control and Prevention Can you weigh less without

More information

TEAM BUILDING PROGRAMS AUTUMN/WINTER

TEAM BUILDING PROGRAMS AUTUMN/WINTER TEAM BUILDING PROGRAMS AUTUMN/WINTER Shared experiences: better cooperation. Take a look at our autumn-winter catalogue and plan your next corporate event with us! Table of Contents Corporate guests +36

More information

Purposes and Processes of Reading Comprehension

Purposes and Processes of Reading Comprehension 2 PIRLS Reading Purposes and Processes of Reading Comprehension PIRLS examines the processes of comprehension and the purposes for reading, however, they do not function in isolation from each other or

More information

Chapter 12 Programming Concepts and Languages

Chapter 12 Programming Concepts and Languages Chapter 12 Programming Concepts and Languages Chapter 12 Programming Concepts and Languages Paradigm Publishing, Inc. 12-1 Presentation Overview Programming Concepts Problem-Solving Techniques The Evolution

More information

Students will have an opportunity to examine a variety of fruit to discover that each has

Students will have an opportunity to examine a variety of fruit to discover that each has Botanical Garden Programs: Discovering Plants I. Introduction Students will have an opportunity to examine a variety of fruit to discover that each has seeds. Even cotton and some vegetables are considered

More information

OBJECTIVES. The BIG Idea. How will taking notes improve my performance in school and on the job? Taking Notes

OBJECTIVES. The BIG Idea. How will taking notes improve my performance in school and on the job? Taking Notes Taking Notes 2 Study Skills The BIG Idea How will taking notes improve my performance in school and on the job? AGENDA Approx. 45 minutes I. Warm Up: Scavenger Hunt (5 minutes) II. What s My Line? (10

More information

Dinner Menu - Allergy Guide

Dinner Menu - Allergy Guide Dinner Menu - Allergy Guide Table Bread Keg Mints Starters & Soup Escargot Mushroom Escargot Shrimp Cocktail Santa Fe Chicken Dip Baked Shrimp Scallops & Bacon Calamari Baked Brie Cheese Toast Crab Cakes

More information

ESOL Customer Service Training: Unit 1 1: 1 Student Book. Unit 1: Talking With Your Customer

ESOL Customer Service Training: Unit 1 1: 1 Student Book. Unit 1: Talking With Your Customer ESOL Customer Service Training: Unit 1 1: 1 Unit 1: Talking With Your Customer ESOL Customer Service Training: Unit 1 1: 2 What are your goals? Note to Instructor: If you have permission, use Stand Out

More information

EMPOWERING TEACHERS TEACHER EXPLAINS TASK TEACHER MODELS TASK

EMPOWERING TEACHERS TEACHER EXPLAINS TASK TEACHER MODELS TASK Benchmarks: Second Grade Comprehension: Identify and Discuss the Author s Purpose Preparation/Materials: Preparation/Materials: large graph, large copy of each story, highlighter, pictures of a U.S. map,

More information

Bariatric Surgery: Step III Diet

Bariatric Surgery: Step III Diet Bariatric Surgery: Step III Diet This diet is blended foods with one new solid food added daily. The portions are very small to help prevent vomiting. Warning: This diet does not have enough calories,

More information

GRAMMAR / Adjective Clauses

GRAMMAR / Adjective Clauses GRAMMAR / Adjective Clauses INSTRUCTIONS FOR THE TEACHER This exercise is a supplement to the exercises of, pages 85 through 88. 1. To begin with, ask your students if any of them can use both hands with

More information

- ENGLISH TEST - ELEMENTARY 100 QUESTIONS

- ENGLISH TEST - ELEMENTARY 100 QUESTIONS Exercise 1: Tick (P) the suitable answer. - ENGLISH TEST - 1. My brother... a flat in London. A have B has C haves 2.... you live with your boyfriend? A Do B Does C Is 3. Elizabeth is.... A Philip's wife

More information

Chapter 1 Learning to Program With Alice

Chapter 1 Learning to Program With Alice Chapter 1 Learning to Program With Alice (Duke Book) Rather than typing a difficult, long and obscure computer language in the hopes of getting a calculation, with Alice you will be more like a director

More information

BBC LEARNING ENGLISH 6 Minute Grammar So, such, enough, too

BBC LEARNING ENGLISH 6 Minute Grammar So, such, enough, too BBC LEARNING ENGLISH 6 Minute Grammar So, such, enough, too NB This is not a word-for-word transcript Hello and welcome to 6 Minute Grammar with me,. Sorry I'm so late,. Oh OK. There was such a long queue

More information

Expressive Objective: Realize the importance of using polite expressions in showing respect when communicating with others

Expressive Objective: Realize the importance of using polite expressions in showing respect when communicating with others QUARTER 4 - WEEK 1 Theme: My School and Friends TARGET SKILLS : At the end of the lesson the students should be able to: Expressive Objective: Realize the importance of using polite expressions in showing

More information

IELTS Speaking Part Two Tasks with unusual or difficult topics

IELTS Speaking Part Two Tasks with unusual or difficult topics IELTS Speaking Part Two Tasks with unusual or difficult topics The tasks below should be useful for practising talking about every kind of topic, and for connecting IELTS Speaking tasks to every kind of

More information

BISCUITS SANDWICHES SALADS. Carbohydrates (g) Saturated Fat (g) Cholesterol (mg) Calories from fat. Dietary Fiber. Sodium (mg) Sugar (g) Trans Fat (g)

BISCUITS SANDWICHES SALADS. Carbohydrates (g) Saturated Fat (g) Cholesterol (mg) Calories from fat. Dietary Fiber. Sodium (mg) Sugar (g) Trans Fat (g) Saturated Trans BISCUITS 2 Sausage Biscuits 2 840 486 54 24 0 50 66 1780 8 22 0 x x x x Bacon, & Cheese 1 550 333 37 21 0 203 35 1280 6 20 0 x x x x x Cajun Filet Biscuit 1 515 252 28 12 0 30 45 1000 9

More information

PRIVATE DINING PRIX FIXE

PRIVATE DINING PRIX FIXE PRIVATE DINING PRIX FIXE S TA R TER HOUSE SALAD iceberg, romaine, cherry tomatoes, carrots, cucumbers, red onions, croutons and garlic vinaigrette GREAT LAKES WHITEFISH roasted corn butter, fried onions,

More information

American Cancer Society. Nutritional Guidelines for Reducing Your Risk of Cancer

American Cancer Society. Nutritional Guidelines for Reducing Your Risk of Cancer American Cancer Society Nutritional Guidelines for Reducing Your Risk of Cancer Cancer Impact More than one million Americans will be diagnosed with cancer this year. Scientific evidence suggests that

More information

Sofware Requirements Engineeing

Sofware Requirements Engineeing Sofware Requirements Engineeing Three main tasks in RE: 1 Elicit find out what the customers really want. Identify stakeholders, their goals and viewpoints. 2 Document write it down (). Understandable

More information

Revised Bloom s Taxonomy

Revised Bloom s Taxonomy Revised Bloom s Taxonomy Revised Bloom s Taxonomy (RBT) employs the use of 25 verbs that create collegial understanding of student behavior and learning outcome. Bloom s Revised Taxonomy Taxonomy of Cognitive

More information

Proceedings of the Third International Workshop on Formal Methods for Interactive Systems (FMIS 2009)

Proceedings of the Third International Workshop on Formal Methods for Interactive Systems (FMIS 2009) Electronic Communications of the EASST Volume X (2009) Proceedings of the Third International Workshop on Formal Methods for Interactive Systems (FMIS 2009) Poporo: A Formal Framework for Social Networking

More information

Fiction: Poetry. Classic Poems. Contemporary Poems. Example. Key Point. Example

Fiction: Poetry. Classic Poems. Contemporary Poems. Example. Key Point. Example Reading - Comprehension Fiction: Poetry Read classic and contemporary poems Recognise riddles and rhymes Recognise tongue twisters Classic Poems A poem expresses an emotion or an idea. Rhyme is when words

More information

Make maths fun!! Give your child lots of praise and encouragement!

Make maths fun!! Give your child lots of praise and encouragement! Make maths fun!! Give your child lots of praise and encouragement! Talk to your child about how you work things out. CALCULATION The maths work your child is doing at school may look very different to

More information

Food Tastes and Textures

Food Tastes and Textures Food Tastes and Textures Read the following conversation between Peter and Juan in a restaurant in Yorkshire. Peter is describing the different tastes and textures of the dishes on a menu. Focus on the

More information

Grade 6 Math Circles March 2, 2011 Counting

Grade 6 Math Circles March 2, 2011 Counting 1 University of Waterloo Faculty of Mathematics Centre for Education in Mathematics and Computing Grade 6 Math Circles March 2, 2011 Counting Venn Diagrams Example 1: Ms. Daly surveyed her class of 26

More information

FOOD QUESTIONNAIRE RESULTS

FOOD QUESTIONNAIRE RESULTS FOOD QUESTIONNAIRE RESULTS QUESTION 1 How many meals do you usually eat every day? At what times do you eat your meals? STUDENTS ANSWERS 3-4 meals a day Breakfast 7.00 Lunch 12.00 Dinner- 16-20.00 Supper

More information

Kodu Curriculum: Single Session Intro

Kodu Curriculum: Single Session Intro Kodu Curriculum: Single Session Intro Table of Contents Kodu Curriculum: Single Session Intro... 2 Kodu Description... 2 Teaching with Kodu... 2 Basic Navigation (5 min)... 3 Creating a Simple Program

More information

English as a Second Language Podcast www.eslpod.com. ESL Podcast 164 Seeing a Specialist

English as a Second Language Podcast www.eslpod.com. ESL Podcast 164 Seeing a Specialist GLOSSARY nagging pain a pain that continues to hurt and that won t go away * I can t sleep at night because of the nagging pain in my back. routine tests regular tests, not special ones * The doctor ordered

More information

Nonalcoholic Fatty Liver Disease. Dietary and Lifestyle Guidelines

Nonalcoholic Fatty Liver Disease. Dietary and Lifestyle Guidelines Nonalcoholic Fatty Liver Disease Dietary and Lifestyle Guidelines Risk factors for NAFLD Typically, but not always seen in patients who are overweight. May have Diabetes and or insulin resistance high

More information

SPAGHETTI WAREHOUSE RESTAURANTS ALLERGEN INFORMATION

SPAGHETTI WAREHOUSE RESTAURANTS ALLERGEN INFORMATION SPAGHETTI WAREHOUSE RESTAURANTS ALLERGEN INFORMATION At Spaghetti Warehouse Restaurants, the health and safety of our guests is important. The FDA identified the major food allergens as milk, eggs, fish,

More information

DOWN SYNDROME PROGRAM www.massgeneral.org/downsyndrome. Living a Healthier Lifestyle

DOWN SYNDROME PROGRAM www.massgeneral.org/downsyndrome. Living a Healthier Lifestyle DOWN SYNDROME PROGRAM www.massgeneral.org/downsyndrome Living a Healthier Lifestyle DOWN SYNDROME PROGRAM www.massgeneral.org/downsyndrome Living a healthier lifestyle has many benefits, which means it

More information