Programming & Scratch. Programming Learning to program is ultimately about learning to think logically and to approach problems methodically. The building.

Slides:



Advertisements
Similar presentations
Sprite-visual object (actor on the stage) Scripts- Tells actors (sprites) what to do.
Advertisements

Introduction to Macromedia Director 8.5 – Lingo
Create a Simple Game in Scratch
My Internet Safety Guide I have used scratch to program a guide to internet safety using QR codes.
Understanding an Apps Architecture ASFA Computer Science: Principles Fall 2013.
Create a Simple Game in Scratch
30 min Scratch July min intro to Scratch A Quick-and-Dirty approach Leaving lots of exploration for the future. (5 hour lesson plan available)
CHAPTER 5: Repetition Control Structure. Objectives  To develop algorithms that use DOWHILE and REPEAT.. UNTIL structures  Introduce a pseudocode for.
Harry Potter Scratch Game
Intro to Programming Algebra-Geometry. Computer Programming? What is programming? The process of writing, testing, and maintaining the source code of.
CS001 Introduction to Programming Day 3 Sujana Jyothi
Write Your First Computer Game!. Coding: Programming Languages Just like you can speak Chinese to someone who understands Chinese to tell them what to.
Mrs. Chapman. Tabs (Block Categories) Commands Available to use Script Area where you type your code Sprite Stage All sprites in this project.
Adding Automated Functionality to Office Applications.
Mr. Wortzman. Tabs (Block Categories) Available Blocks Script Area Sprite Stage All sprites in this project.
index.php Palmyra Area High School 1.
Scratch the Cat. Object Oriented Programing Writing computer programs Based on Objects Instead of Actions Based on Data Instead of Logic.
INTRODUCTION TO THE SCRATCH PROGRAMMING ENVIRONMENT.
Summer Computing Workshop. Session 4 Loops  At the heart of their functionality, loops enable blocks of code to be executed more than once  Loops represent.
ROBOTC Software Introduction. ROBOTC Software ROBOTC developed specifically for classrooms and competitions Complete programming solution for VEX Cortex.
V Avon High School Tech Club Agenda Old Business –Delete Files New Business –Week 16 Topics: Intro to HTML/CSS –Questions? Tech Club Forums.
Created by, Author Name, School Name—State FLUENCY WITH INFORMATION TECNOLOGY Skills, Concepts, and Capabilities.
Study Guide For Test Chapter 5, 6,& 7 Test is Friday, May 15th.
Programming with App Inventor Computing Institute for K-12 Teachers Summer 2012 Workshop.
COMPUTER PROGRAMMING. Control Structures A program is usually not limited to a linear sequence of instructions. During its process it may repeat code.
Summer Computing Workshop. Introduction  Boolean Expressions – In programming, a Boolean expression is an expression that is either true or false. In.
Games Development 2 Concurrent Programming CO3301 Week 9.
Scratch Programming Lesson 4 Question asking and answering.
Term 2, 2011 Week 1. CONTENTS Problem-solving methodology Programming and scripting languages – Programming languages Programming languages – Scripting.
Chapter 3 Functions, Events, and Control Structures JavaScript, Third Edition.
Python uses boolean variables to evaluate conditions. The boolean values True and False are returned when an expression is compared or evaluated.
Introduction to Programming G50PRO University of Nottingham Unit 2 : Introduction To Scratch Paul Tennent
Algorithms Writing instructions in the order they should execute.
JavaScript, Fourth Edition
TRIGGERS Triggers tell a script to start executing There are four types of triggers: When green flag is clicked When I am clicked When is pressed When.
Sections © Copyright by Pearson Education, Inc. All Rights Reserved.
Create a Halloween Computer Game in Scratch Stephanie Smullen and Dawn Ellis Barb Ericson October 2008.
Introduction to Computer Programming - Project 2 Intro to Digital Technology.
Scratch for Interactivity Dr. Ben Schafer Department of Computer Science University of Northern Iowa.
1 CSC 221: Computer Programming I Fall 2009 Introduction to programming in Scratch  animation sprites  motion, control & sensing  costume changes 
Introduction to Scratch We will be using the Scratch Environment today, so please log in to the Scratch website (scratch.mit.edu)
Creating a Simple Game in Scratch Barb Ericson Georgia Tech May 2009.
Scratch Programming Cards
Programming & Scratch.
Scratch for Interactivity
Understanding the Geometric Shape Code
Scratch: iteration / repetition / loops
Unit 2 Getting Started With
Control Structures
Introduction to Events
Iterations Programming Condition Controlled Loops (WHILE Loop)
Scratch for Interactivity
Introduction to Object-Oriented Programming
LESSON 11 – WHILE LOOPS UNIT 5 – 1/10/17.
Learn… Create… Program
Scratch: selection / branching/ if / If…else / compound conditionals / error trapping by Mr. Clausen.
Learn… Create… Program
Computer Science Core Concepts
ICT Programming Lesson 3:
ICT Gaming Lesson 3.
Using Decision Structures
Learn… Create… Program
Learn… Create… Program
Creating a Simple Game in Scratch
Problem Solving and Computer Programming
Presentation transcript:

Programming & Scratch

Programming Learning to program is ultimately about learning to think logically and to approach problems methodically. The building blocks out of which a programmer constructs solutions, meanwhile, are relatively simply.

Problem-Solving and Project-Design Skills logical reasoning breaking complex problems into simpler parts debugging problems developing ideas from initial conception to completed project sustained focus and perseverence

Fundamental Ideas about Computers and Programming computer programs tell the computer precisely what to do, step-by-step writing computer programs doesn’t require special expertise, just clear and careful thinking

Programming Common in programming, for instance, are "loops" (whereby a program does something multiple times) and "conditions" (whereby a program only does something under certain circumstances. Also common are "variables" (so that a program, like a mathematician, can remember certain values).

Statements In programming, a statement is simply a directive that tells the computer to do something. Think of it as a command or an instruction. In Scratch, any block whose label reads like a command is a statement.

Statements One such block instructs a sprite to say something:

Statements Another such block instructs a sprite to go to some location:

Sequence To create a program in Scratch, you need to think systematically about the order of steps

Boolean Expression. In programming, a Boolean expression is an expression that is either true or false. In Scratch, any block shaped like an elongated diamond is a Boolean expression. One such block is:

Boolean Expression. Another such block is: After all, it is either true that some number is less than another number or it is false.

Boolean Logic and, or, or not are examples of boolean logic.

Conditions In programming, a condition is something that must be true in order for something to happen. A condition is thus said to "evaluate to true" or "evaluate to false." In Scratch, any block whose label says "if," "when," or "until" is a sort of conditional construct.

Conditions One such block is:

Conditions The previous construct is generally known as an "if construct." With it can we instruct a sprite to say hello only if, say, the user has depressed the mouse button:

Conditions A related construct is the "if-else construct":

Conditions With the previous construct can we instruct a sprite to say hello or goodbye, depending on whether the user has depressed the mouse button:

Conditions Realise that these constructs can be nested to allow, for example, for three different conditions. This construct could be called an "if-else if- else construct".

Conditions Another conditional block is: Yet another such block is:

Conditional Statements if, forever-if, if-else repeat-until and waituntil check for a condition

Loops Sometimes, you want one or more statements to be executed multiple times in a row. To implement this behavior, we turn our attention to loops.

Loops In programming, a loop can induce multiple executions of statements. In Scratch, any block whose label begins with "forever" or "repeat" is a looping construct.

Loops One such block is: This construct allows us, for instance, to instruct a sprite to meow every other second:

Loops Another block allows you to loop a specific number of times: And another block allows you to loop until some condition is true:

Iteration (Looping) forever and repeat can be used for iteration (repeating a series of instructions)

Variables Sometimes, you want execute some statement multiple times, each time varying your behavior ever so slightly. We thus turn our attention to variables.

Variables In programming, a variable is a placeholder for some value. Variables allow us, for instance, to instruct a sprite to count up from 1:

Variables A variable that only takes on a value of true (i.e., 1) or false (i.e., 0), incidentally, is called a Boolean variable.

Variables The Variables category allows you to create a new variable and use it in a program.

Threads In programming, a thread is like a mini- program within a program that can execute at the same time as other threads. One such block is:

Threads It's often helpful to use separate threads for conceptually distinct tasks. For instance, you might want to keep track of whether the user ever presses some key during a program's execution in order to, say, toggle sound on and off:

Threads

Notice how, in the above, the left-hand thread handles meowing, if appropriate, whereas the right-hand thread constantly checks and remembers whether the user has muted or unmuted sound by pressing ’space'.

Threads (Parallel Execution) Launching two stacks at the same time creates two independent threads that execute in parallel.

Events In programming, multiple threads can communicate with each other by signaling events and handling events. An event, then, is like a message from one thread to another. A block that signals an event is:

Events A block that handles an event is:

Events Not only can events be signaled by blocks, they can also be signaled by a user's actions. Clicking Scratch's green flag, for instance, effectively signals an event that is handled by:

Events In Scratch, not only do events enable threads to communicate, they also allow sprites to communicate with each other.

Event Handling when key pressed and when sprite clicked are examples of event handling – responding to events triggered by the user or another part of the program

Synchronisation broadcast can coordinate the actions of multiple sprites. For example, Sprite1 sends the message winner when condition is met:

Synchronisation This script in Sprite2 is triggered when the message is received:

Real-Time Interaction mouse_x, mouse_y, and loudness can be used as dynamic input for real-time interaction

Time Triggering Scratch includes an internal clock that you can access with timer.

Random Numbers The pick random block selects random integers within a given range.

Object-Oriented Programming Each sprite can have its own scripts and data.

User Interface Design You can design interactive user interfaces in Scratch – for example, using clickable sprites to create buttons.

Data Types Different data types (such as numbers and booleans) are represented by different shapes in Scratch