Challenge #1: Cuckoo Clock Create a flow chart to make a cuckoo clock chime every hour. Use the symbols on the right to make it. This will include iteration.

Slides:



Advertisements
Similar presentations
LOOPS Loops are lines of code that can be run more than one time. Each time is called an iteration and in for loops there is also an index that is changing.
Advertisements

District #15 School Bus Safety
Lesson Topic: Handshaking Process -narrated version-
COMPUTER PROGRAMMING I Understand Problem Solving Tools to Design Programming Solutions.
Creating Flowcharts Principles Of Engineering
Flowchart What is a flowchart? A flowchart is a schematic representation of an algorithm or a process or a program. Why should a flowchart be produce before.
Bridge Traffic Lights Mimic Name:. Learning Objective How to use Flowol and the Bridge Light Mimic to safely control a set of traffic lights Learning.
Basics of Computer Programming Web Design Section 8-1.
Flow Chart.
Playground Rules. First things first… Students should not be on the playground before 8:00, even if the gate is open. Wait until 8:00.
Flow Charts. Thinking Creatively Flow Charts START END Is A==6? No A = 1 Yes Print A A = A + 1.
Game city International Starting on the road to programming. This project is all about learning how to program using scratch and other languages. The aim.
TRAVEL GEAR. Travel Checklist Jerseys Shorts Shooting shirts Game Socks Adidas Rolling bags Shower Towels and bench towels Laundry baskets Markers + clipboard.
Bug Session Two. Session description In this session the use of algorithms is reinforced to help pupils plan out what they will need to program on their.
BY BRYN AND BEN. When you go out always remember to turn off the electronics and the lights. If you don`t turn them off you won`t be saving any money.
Embedded Programming and Robotics
ELEC 1041 Digital Electronics Tutorial: Word Problems
Unit 5E – Controlling Devices
1. Know the different types of flow block 2. Understand how problems can be broken down into smaller problems.
Making a Timer in Alice.
Flowcharting An Introduction
1 Introduction to Flowcharting. 2 Writing a program Defining the problem –Write down what the program will do Planning –Write down the steps, draw a flowchart.
BAKE BROIL - SELECT PROGRAM - CONV BAKE CONV BROIL SELF CLEAN On any diagram screen, double click any of the following components to bring you to a description.
2 Stuck in the Mud About the Game: Stuck in the Mud is the ‘classic’ chasing and dodging game that promotes spatial awareness and the ability to accelerate,
Implementing software in IEC Languages in IEC IEC uses the following languages Instruction List – Assembly level programming using.
Python Repetition. We use repetition to prevent typing the same code out many times and to make our code more efficient. FOR is used when you know how.
Safety is the Westridge Way
The George Washington University Department of ECE ECE Intro: Electrical & Computer Engineering Dr. S. Ahmadi Class 4.
Flowcharting An Introduction. Definition A flowchart is a schematic representation of an algorithm or a process.
CS 100 Introduction to Computing Seminar October 7, 2015.
Computer Programming I Summer 2011
© English Language Testing Ltd Taking the Password Knowledge Tests.
WHAT TO DO DURING A CODE BLUE What’s my part?. WHAT IS A CODE BLUE? Emergency plan to lock down the school & keep everyone safe in case there is a threat.
Cloning in Scratch Computer App Session 6. Cloning in Scratch Learning Objectives: I will clone sprites in Scratch to create copies of an existing sprite.
Slide 1 Flowchart with loop Start Is light less than 50? Turn lamp on Yes No.
Algorithms and Pseudocode
SATMathVideos.Net A basketball player scored 27 points in a game, which was composed of 1 point baskets (free throws), 2 point baskets and 3 point baskets.
BEGINNER FLL PROGRAMMING WORKSHOP BY DROIDS ROBOTICS & EV3LESSONS.
Learning Objective To be able to… Understand flow chart symbols Complete and correct flow chart algorithms Create a program based on a flow chart.
MEH108 - Intro. To Engineering Applications KOU Electronics and Communications Engineering.
Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts Sensors and Flowcharts.
Algorithms and Flowcharts
Data Flow Diagrams Start Do you want to continue? Yes End No Test on
Intramural Basketball 2012 Captains Meeting. Parking All players will park in the F Street lot and enter the school through the South Lobby Doors. The.
The George Washington University Department of ECE ECE Intro: Electrical & Computer Engineering Dr. S. Ahmadi Class 4.
Flowchart Symbols Terminal Process Input/ Output Decision
16.5 Electrical Circuits.
Computer Programming Flowchart.
Understand Problem Solving Tools to Design Programming Solutions
ELEC 1041 Digital Electronics Tutorial: Word Problems
قانون المنافسة ومنع الاحتكار
Print slides for students reference
Batteries: the Chemistry
Primary Longman Elect 1A Chapter 3 Text Type Instructions.
Series Circuits Lesson 8.
BBC Microbit.
The George Washington University Department of ECE ECE Intro: Electrical & Computer Engineering Dr. S. Ahmadi Class 5.
Recap the basics Lesson 1.
Instructions Get a bubble sheet.
Flowchart Repetition Problem Solving.
Arduino Part 4 Let there be more light.
Python programming exercise
Lesson 4 Variables.
Objectives Construct truth tables for the following logic gates:
Recap the basics Lesson 1.
Flowcharts Activity One
WJEC GCSE Computer Science
What are you doing?. What are you doing? Wait a minute.
Instructions Get a bubble sheet.
Active Shooter Cascadia College.
Presentation transcript:

Challenge #1: Cuckoo Clock Create a flow chart to make a cuckoo clock chime every hour. Use the symbols on the right to make it. This will include iteration (loops). Remember the arrows between symbols. Start Wait 1 hour Cuckoo pops out Make cuckoo noise Cuckoo goes back in

Challenge #2: Electronic Safe Create a flow chart io to make an electronic safe. Use the symbols on the right to make it. The correct code will unlock the safe. This will include iteration (loops). Don’t leave it unlocked. Remember the arrows between symbols. Start Wait until door is closed Unlock safe Lock safe Correct code entered?

Challenge #3: Fridge Create a flow chart to run a fridge. Use the symbols on the right to help you. The fridge needs to be kept at 4 degrees. The light should come on when you open the door. This will use iteration (loops). Remember all of the arrows. Start Turn on light Turn off light > 4 degrees? Cool the fridge Door open?

Challenge #4: Basketball Score Make a flowchart to keep a Basketball score. You get 5 throws. You get two points for a basket. You need to show the score after the last throw. Start Throw ball Basket scored 5 throws? Add two to score Add one to throws Stop Display score