NameSymbolFlowchart use OvalThis is used at the start and at the end of a program to start and stop the program. Flow lineThis shows which way the logic.

Slides:



Advertisements
Similar presentations
Safety in Science We dont want any trouble ! What we worry about What to wear General rules First aid Hot stuff Chemicals Clean up.
Advertisements

Hamilton County Developmental Disabilities Services
003 Flashing picture.
By: Stephanie Sullivan. Get you’re workplace ready for the grooming process, then put the dog on a leash and take it for a walk so it can go to the bathroom.
Power Point Presentation by Franziska Grech 207
If someone is hurting me
COMPUTER PROGRAMMING I Understand Problem Solving Tools to Design Programming Solutions.
Flow chart and Algorithm. Announcement Exam One – Wednesday October 1st – 100 points – Mixture of short answer, problem solving, matching, and maybe a.
This symbol is used to; Start a flow-chart; Stop a singe flow-chart (or all flow charts in that program); Mark the Start of a Sub-Routine (a separate.
Basics of Computer Programming Web Design Section 8-1.
Variables –recap-python
Helping your child meet their maths target Lots of games and activities for you to choose from! Target focus: Add and subtract multiples of 10,100 and.
Mrs. Chapman. Tabs (Block Categories) Commands Available to use Script Area where you type your code Sprite Stage All sprites in this project.
How to make bread.
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.
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.
CSC103: Introduction to Computer and Programming
Algorithms A Central Heating system Start Is temp <19
Control Systems Did you get these? Washing machine Microwave cooker
CSCI 101 Introduction to Software Development and Design.
Steps to Become Green!. My Average Carbon Footprint Worlds ’ Average.
Sequencing 1 Shuffle the cards and place in a pile with the numbers facing down. Order the cards from 0 to 11. How fast can you do this?
Helping your child meet their maths target Lots of games and activities to choose from! Target focus: Recall of (remembering) addition and subtraction.
End Show Writing a computer program involves performing the following tasks. 1. Understanding the problem 2. Developing an Algorithm for the problem 3.
PET for Schools. Paper 3: Speaking What’s in the Speaking Test? Part 1: You answer the examiner’s questions about yourself and give your opinions. Part.
The Algorithmic Model. What is Computer Science What is Programming Algorithms –Definition –Properties of Good Algorithms –Describing Algorithms –Examples.
Personal Hygiene What is it?
Flowcharts.
Monday’s – Do Now On your “Do Now” sheet in your own words tell me what an algorithm is…be ready to discuss.
World Religions Tabulate Game. wild cards wild cards ordinary cards.
Coaching Pack 9 – 11 Years. What Am I Coaching Today? What Might the Players Learn or Get Better at? TechnicalPsychological example PhysicalSocial example.
1 x 2 Game 1: One Player Game If you select a number sentence, give the answer. If you select an answer give the number sentence that has that answer.
Hygiene. Starting the day The pictures on the next page show some of the different stages which you go through when you start the day. What order do you.
Computer Programming I Summer 2011

Play the Keyboard Yellow 1 Yellow Level: Lesson 1
PROGRAMMING IN PYTHON LETS LEARN SOME CODE TOGETHER!
Flowcharts. Learning Objectives To learn how to break down tasks How to create a flowchart.
More on Logic Today we look at the for loop and then put all of this together to look at some more complex forms of logic that a program will need The.
Learning Objective To be able to… Understand flow chart symbols Complete and correct flow chart algorithms Create a program based on a flow chart.
Algorithms. Teacher Lead Activity What is an algorithm? Homework Recap!
Making Choices, Solving Problems. Hello Year 1 children. My name is Raphael. I am going to tell you about some of the choices I have made so far today!
The Order in Which Things Happen
By the end of this session you should be able to... Understand what is meant by ‘thinking logically’ including: Identify the points in a solution where.
Unit 9.1_Lesson 4_CD Resource 4a_Sensors and flowcharts Sensors and Flowcharts.
Control Technology START What is control technology? What is this diagram called? In which program have you used these before? Lets Go!
Coordinate Geometry Vocabulary Game By: Zani Alam.
Objective of the lesson Use Blockly to make a dice for Snakes and Ladders All of you will: – Make an image which displays when you press a button Most.
Algorithms and Flowcharts
Scratch Programming Cards
Understand Problem Solving Tools to Design Programming Solutions
Making coffee Start or stop Process Decision Input/output Start
Basics of Computer Programming
A game of precision, quick reaction and observation.
Flow Chart.
Understand Problem Solving Tools to Design Programming Solutions
Basics of Computer Programming
Basics of Computer Programming
Instructing the computer with algorithms and flowcharts
Basics of Computer Programming
Writing my algorithm ? Name Symbol Flowchart use Oval
Gaming with conditionals
Loopy Motion Control.
Design and Technology Academic Year 2017/2018 Grade 7 First Semester.
GCSE AQA Graphics Planning.
Computational Thinking for KS3
Problem-Solving and Control Structures By Faith Brenner
Gaming with conditionals
Important thing to do for FOOD SAFETY
Presentation transcript:

NameSymbolFlowchart use OvalThis is used at the start and at the end of a program to start and stop the program. Flow lineThis shows which way the logic flows in the program. (It can go in more than one direction) ParallelogramShows an input (key board press, mouse click, can you think of any others?) or an output (printer, speakers, can you think of more?) RectangleThis is something that needs to happen. (e.g. Stir the ingredients together. Spread the jam on the bread, move the sprite to the left. ) DiamondThis is selection, this means the program can choose to done thing or another based on the question in the diamond. (e.g. Is the bath water too hot? (YES = add more cold water and NO = move on to the next part of the algorithm) Writing my algorithm ? YES NO

Write an algorithm to… Wash your hair…. Start Add shampoo Turn shower on Get in the shower Wet hair Lather hair Rinse out shampoo Stop

Write an algorithm to… Wash your hair…. Start Add shampoo Is hair dirty? Get in the shower Wet hair Wash the rest of me. Rub in to hair Rinse out shampoo Stop Turn shower on Do I want conditioner? Add conditioner Rub in to hair Rinse out conditioner Turn shower off YES NO YES NO Get out of shower

Write an algorithm to… Clap my hands if I am happy and I know it Start YES Am I happy? Clap my hands twice NO Start Takes us one way or Takes us one way or another in the algorithm another in the algorithm IF this condition is met THEN do this ELSE do this IF this condition is met THEN do this ELSE do this Selection Am I happy?

Write an algorithm to… Clap my hands if I am happy and I know it Start YES Am I happy? Clap my hands twice NO Start Selection LOOPS To repeat a process. To repeat a process. When we use flow charts, a decision (selection) is needed to determine whether the loop continues. When we use flow charts, a decision (selection) is needed to determine whether the loop continues.

Write an algorithm to… Play Snap Stop – Game Over Start Shuffle the cards Deal them all out. YES Player puts a card down, face up Shout SNAP! Has anyone got all the cards? NO Does the picture match the last one??

Write an algorithm to… Show which team won Start Input the second teams score Is the first team > second team? Print: the second team won! Stop Input the first teams score YES NO Print: the first team won!

Write an algorithm to… Can Jonny play Call Of Duty? Start Is Jonny’s age >17? Print: No you can not play it, you are too young! Stop Input Jonny’s age YES NO Print: You can play Call of Duty

Write an algorithm to… Know when to ask for help Start YES Listen carefully to what my teacher wants me to do NO Do I understand what I have got to do? Can I do the task on my own? NO Read any information you have been given. Have a Think about what you have to do. Spend 5 minutes trying to work it out YES Stop YES Can I do the task on my own? Do the task Ask a some one who does understand the task on the same table as you. YES NO Can I do the task on my own? Ask the teacher or the TA for help NO

NameSymbolFlowchart use OvalThis is used at the start and at the end of a program to start and stop the program. Flow lineThis shows which way the logic flows in the program. (It can go in more than one direction) ParallelogramShows an input (key board press, mouse click, can you think of any others?) or an output (printer, speakers, can you think of more?) RectangleThis is something that needs to happen. (e.g. Stir the ingredients together. Spread the jam on the bread, move the sprite to the left. ) DiamondThis is selection, this means the program can choose to done thing or another based on the question in the diamond. (e.g. Is the bath water too hot? (YES = add more cold water and NO = move on to the next part of the algorithm) Writing my algorithm using a flowchart ? YES NO

Write an Flowchart algorithm to… Show your morning routine: From, before you wake up to the time you arrive at school.