Introduction to Scratch

Size: px
Start display at page:

Download "Introduction to Scratch"

Transcription

1 Introduction to Scratch

2 Familiarising yourself with Scratch The Stage Sprites Scripts Area Sequence of Instructions Instructions and Controls

3 If a computer is a box think of a program as a man inside the box!

4 Tell me what to do and I will do it!! and programming is all about instructing the man to do what you want!

5 The man in the computer (program) thinks just like a human. If we taught the man how to have a conversation with the computer user, what would be the first thing we would tell him to do?

6 Inputs Storage Process Output Conversations start with a question. In other words the man in the computer might ask the user for some information (INPUT). Example: What is your name? The user would then type IN their name! INPUT What is your name?

7 Inputs Storage Process Output Then the man in the computer will store the answer in its brain (STORAGE) and think about how to respond (PROCESS). 1. Remember the answer (STORE IT) 2. Think about how to respond (Process)

8 Inputs Storage Process Output The man in the computer would finally respond (OUTPUT). Example: So, your name is BOB! What a great name! The computer would display this on the screen (OUTPUT). OUTPUT

9 Inputs Storage Process Output All programs work in this way Think of a word processor: INPUT STORAGE/PROCESS OUTPUT 1. Users can press a letter on a keyboard (input) 2. The computer stores this event and decide how to respond (storage/process) 3. And then display the letter on the screen (output)

10 Inputs Storage Process Output The ASK script asks the user to enter (input) a value into scratch?

11 Inputs Storage Process Output What do you get when you ask a question? ANSWER! Once you have inputted a value into scratch it is stored in a variable called answer. This is what the script looks like

12 Storage What is a variable? In programming, a variable can be thought of as a storage box. The box may be given a name, and it may hold various different things. In scratch, is the name of the variable, and it will store whatever you type into scratch. Variable called ANSWER Contents is anything we type in

13 Inputs Storage Outputs Which of the following scripts do you think will help us output a value onto the screen?

14 The Join Script We can also join words and the ANSWER together to create sentences:

15 Moving your Sprite In programming, things always happen in a set order a sequence. Sequences are first written as a flow chart and then programmed in a game. If we want to move a sprite left the following sequence would have to occur: Press right arrow key Sprite faces to the right Sprite moves a step to the right In Scratch, we program the sprite like this:

16 Inputs, Outputs, Variables and Decisions

17 Inputs Storage Process Output In Scratch, which of the following scripts will help us program the man (inside the computer) to demand an input from a user?

18 Inputs Storage Process Output The ASK script asks the user to enter (input) a value into scratch?

19 Inputs Storage Process Output What do you get when you ask a questions? ANSWER! Once you have inputted a value into scratch it is stored in a variable called answer. This is what the script looks like

20 Storage What is a variable? In programming, a variable can be thought of as a storage box. The box may be given a name, and it may hold various different things. In scratch, is the name of the variable, and it will store what ever you type into scratch. Variable called ANSWER Contents is anything we type in

21 Inputs Storage Process Output Which of the following scripts do you think will help us program the man (inside the computer) to output a value onto the screen?

22 Summary INPUT SCRIPTS: STORAGE SCRIPTS: OUTPUT SCRIPTS: The join script is a nice extra to combine set text with the user s text to form sentences when outputting to the screen

23 Inputs Storage Process Output IF statements are how programs make decisions (process data). IF this occurs, I will do this ELSE, I will do that IF ELSE statements allow programs to make decisions based on certain conditions occurring.

24 What s going on here? Program asks the user to input a number from 1 to 3 Program stores their input in the variable called answer IF answer contains 1, the program will display a message IF answer contains 2, the program will display a different message IF answer contains 3, the program will display a different message

25 Inputs, Outputs, Variables and Decisions You are all going to be real computer programmers!!!

26 Today We will create a simple calculator in scratch which will add two numbers together and display the result 2 5

27 So how can we get our sprite to do the following? Ask for a number? Store the number? Ask for another number? Store the number? First issue: Scratch only has one variable (storage box) answer. Scratch can therefore only store one number!? Display their Sum We need 2!! Number 1 Number 2

28 Storage What is a variable? In programming, a variable can be thought of as a storage box. The box may be given a name, and it may hold various different things. In scratch, is the name of a ready made variable, and it will store what ever you type into scratch. Variable called ANSWER Contents is anything we type in

29 So how can we get our sprite to do the following? Ask for a number? Store the number? Ask for another number? Store the number? Display their Sum

SCRATCH MODULE 3: NUMBER CONVERSIONS

SCRATCH MODULE 3: NUMBER CONVERSIONS SCRATCH MODULE 3: NUMBER CONVERSIONS INTRODUCTION The purpose of this module is to experiment with user interactions, error checking input, and number conversion algorithms in Scratch. We will be exploring

More information

In this lesson you will learn: How to capture the input from the user. How to write programs using variables and lists. Athletics Swimming Gymnastics

In this lesson you will learn: How to capture the input from the user. How to write programs using variables and lists. Athletics Swimming Gymnastics Lesson 4 A m In this lesson you will learn: How to capture the input from the user. How to write programs using variables and lists. Advanced Scratch Sports Day Jyoti and Tejas are planning to create a

More information

Making a maze with Scratch

Making a maze with Scratch Making a maze with Scratch Can you make it to the end? Student guide An activity by the Australian Computing Academy Let s go! Step 0: Get started Go to www.scratch.mit.edu Sign in with the username and

More information

Unit 9 Tech savvy? Tech support. 1 I have no idea why... Lesson A. A Unscramble the questions. Do you know which battery I should buy?

Unit 9 Tech savvy? Tech support. 1 I have no idea why... Lesson A. A Unscramble the questions. Do you know which battery I should buy? Unit 9 Tech savvy? Lesson A Tech support 1 I have no idea why... A Unscramble the questions. 1. which battery / Do you know / should / buy / I? Do you know which battery I should buy? 2. they / where /

More information

CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch

CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch Purpose: We will take a look at programming this week using a language called Scratch. Scratch is a programming language that was developed

More information

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Slide 1: Cover Welcome to lesson 3 of the db2 on Campus lecture series. Today we're going to talk about tools and scripting, and this is part 1 of 2

More information

The Stack, Free Store, and Global Namespace

The Stack, Free Store, and Global Namespace Pointers This tutorial is my attempt at clarifying pointers for anyone still confused about them. Pointers are notoriously hard to grasp, so I thought I'd take a shot at explaining them. The more information

More information

Exercise 6 - Addressing a Message

Exercise 6 - Addressing a Message Exercise 6 - Addressing a Message All e-mail messages have to include an address for an e-mail to be delivered, just as a normal letter has to have a house address. An e-mail address is made up of: a user

More information

TABLE OF CONTENTS INTRODUCTION

TABLE OF CONTENTS INTRODUCTION TABLE OF CONTENTS INTRODUCTION THE BOTTOM LINE ATTACHED FILES FONTS KEYBOARD WORD PROCESSING PROGRAMS INSTALLING FONTS INSTALLING KEYBOARDS MODIFYING KEYBOARDS TO YOUR LIKING OPEN SOURCE HOW YOU CAN HELP

More information

Introduction to Scratch Programming v1.4 (Second Ed) Lesson 6 Calculator

Introduction to Scratch Programming v1.4 (Second Ed) Lesson 6 Calculator Lesson What you will learn: how to perform simple calculations using Scratch how to use variables how to develop a design how to use the else if function how to create animated buttons Contents Exercise

More information

Instructions for Casual and Relief Staff

Instructions for Casual and Relief Staff Instructions for Casual and Relief Staff Schools W: www.staffsync.nz E: support@staffsync.nz Ph: 0800 878623 Logging In Enter the email address and password you normally use with StaffSync. If using your

More information

GGCS Introduction to Windows 10 Part 4: Cortana and the Mail, Calendar, People and OneNote apps

GGCS Introduction to Windows 10 Part 4: Cortana and the Mail, Calendar, People and OneNote apps GGCS Introduction to Windows 10 Part 4: Cortana and the Mail, Calendar, People and OneNote apps Cortana Cortana is the new digital assistant built into Windows 10. There are still some rough edges, but

More information

CHAPTER 18: CLIENT COMMUNICATION

CHAPTER 18: CLIENT COMMUNICATION CHAPTER 18: CLIENT COMMUNICATION Chapter outline When to communicate with clients What modes of communication to use How much to communicate How to benefit from client communication Understanding your

More information

SPRITES Moving Two At the Same Using Game State

SPRITES Moving Two At the Same Using Game State If you recall our collision detection lesson, you ll likely remember that you couldn t move both sprites at the same time unless you hit a movement key for each at exactly the same time. Why was that?

More information

TABLE OF CONTENTS CHANGES IN 2.0 FROM 1.O

TABLE OF CONTENTS CHANGES IN 2.0 FROM 1.O TABLE OF CONTENTS CHANGES IN 2.0 FROM 1.0 INTRODUCTION THE BOTTOM LINE ATTACHED FILES FONTS KEYBOARD WORD PROCESSING PROGRAMS INSTALLING FONTS INSTALLING KEYBOARDS MODIFYING KEYBOARDS TO YOUR LIKING OPEN

More information

def F a c t o r i a l ( n ) : i f n == 1 : return 1 else : return n F a c t o r i a l ( n 1) def main ( ) : print ( F a c t o r i a l ( 4 ) )

def F a c t o r i a l ( n ) : i f n == 1 : return 1 else : return n F a c t o r i a l ( n 1) def main ( ) : print ( F a c t o r i a l ( 4 ) ) 116 4.5 Recursion One of the most powerful programming techniques involves a function calling itself; this is called recursion. It is not immediately obvious that this is useful; take that on faith for

More information

Meet the Cast. The Cosmic Defenders: Gobo, Fabu, and Pele The Cosmic Defenders are transdimensional

Meet the Cast. The Cosmic Defenders: Gobo, Fabu, and Pele The Cosmic Defenders are transdimensional Meet the Cast Mitch A computer science student who loves to make cool programs, he s passionate about movies and art, too! Mitch is an all-around good guy. The Cosmic Defenders: Gobo, Fabu, and Pele The

More information

CONTENTS: What Is Programming? How a Computer Works Programming Languages Java Basics. COMP-202 Unit 1: Introduction

CONTENTS: What Is Programming? How a Computer Works Programming Languages Java Basics. COMP-202 Unit 1: Introduction CONTENTS: What Is Programming? How a Computer Works Programming Languages Java Basics COMP-202 Unit 1: Introduction Announcements Did you miss the first lecture? Come talk to me after class. If you want

More information

Getting started with social media and comping

Getting started with social media and comping Getting started with social media and comping Promotors are taking a leap further into the digital age, and we are finding that more and more competitions are migrating to Facebook and Twitter. If you

More information

ONLINE REGISTRATION: A STEP-BY-STEP GUIDE

ONLINE REGISTRATION: A STEP-BY-STEP GUIDE ONLINE REGISTRATION: A STEP-BY-STEP GUIDE We encourage all of our Walkers to register online at diabetes.org/stepout. It s quick. It s easy. And, you ll have the opportunity to take advantage of our online

More information

In today s video I'm going show you how you can set up your own online business using marketing and affiliate marketing.

In today s video I'm going show you how you can set up your own online business using  marketing and affiliate marketing. Hey guys, Diggy here with a summary of part two of the four part free video series. If you haven't watched the first video yet, please do so (https://sixfigureinc.com/intro), before continuing with this

More information

CONTENTS: What Is Programming? How a Computer Works Programming Languages Java Basics. COMP-202 Unit 1: Introduction

CONTENTS: What Is Programming? How a Computer Works Programming Languages Java Basics. COMP-202 Unit 1: Introduction CONTENTS: What Is Programming? How a Computer Works Programming Languages Java Basics COMP-202 Unit 1: Introduction Assignment 1 Assignment 1 posted on WebCt and course website. It is due September 22nd

More information

Scratch Lesson 2: Movies Made From Scratch Lesson Framework

Scratch Lesson 2: Movies Made From Scratch Lesson Framework Scratch Lesson 2: Movies Made From Scratch Lesson Framework Scratch makes it easy to program your own interactive stories, games, and animations and share your creations on the web. As you create and share

More information

Computing Curriculum

Computing Curriculum Reception Using mouse and simple programs on computers Paint, Games, 2Simple. Year 1 Beebots Inputting a series of instructions (basic algorithms) Planning a route before inputting Practise giving clear

More information

Reviewers: Approval Date: REF No:

Reviewers: Approval Date: REF No: Title: Parts of a computer Contributors: Mira Hirani Std: 1 Reviewers: Srinath Perur Submission Date: Approval Date: REF No: Brief Description: Goal: Prerequisites: Duration: Resources: This unit covers

More information

QUICK EXCEL TUTORIAL. The Very Basics

QUICK EXCEL TUTORIAL. The Very Basics QUICK EXCEL TUTORIAL The Very Basics You Are Here. Titles & Column Headers Merging Cells Text Alignment When we work on spread sheets we often need to have a title and/or header clearly visible. Merge

More information

Writing. By: Sohail Ahmed M.A English Literature

Writing. By: Sohail Ahmed M.A English Literature E-mail Writing By: Email writing Email writing has become a large part of modern communication, particularly in business. The world has become much smaller now that we have the ability to send and receive

More information

Outpatient Quality Reporting Program

Outpatient Quality Reporting Program CMS Abstraction & Reporting Tool (CART): Knowing the Basics Presentation Transcript Moderator: Karen VanBourgondien, BSN, RN Education Coordinator, Hospital Outpatient Quality Reporting (OQR) Program Speaker(s):

More information

Excel Basics: Working with Spreadsheets

Excel Basics: Working with Spreadsheets Excel Basics: Working with Spreadsheets E 890 / 1 Unravel the Mysteries of Cells, Rows, Ranges, Formulas and More Spreadsheets are all about numbers: they help us keep track of figures and make calculations.

More information

Math Dr. Miller - Constructing in Sketchpad (tm) - Due via by Friday, Mar. 18, 2016

Math Dr. Miller - Constructing in Sketchpad (tm) - Due via  by Friday, Mar. 18, 2016 Math 304 - Dr. Miller - Constructing in Sketchpad (tm) - Due via email by Friday, Mar. 18, 2016 As with our second GSP activity for this course, you will email the assignment at the end of this tutorial

More information

Creating An Account With Outlook

Creating An  Account With Outlook Creating An Email Account With Outlook In this lesson we will show you how to create an email account and go through some of the basic functionality of the account. Lesson 1: Accessing The Website and

More information

Java Programming Fundamentals - Day Instructor: Jason Yoon Website:

Java Programming Fundamentals - Day Instructor: Jason Yoon Website: Java Programming Fundamentals - Day 1 07.09.2016 Instructor: Jason Yoon Website: http://mryoon.weebly.com Quick Advice Before We Get Started Java is not the same as javascript! Don t get them confused

More information

You can delete the default blank background by clicking on its Delete button.

You can delete the default blank background by clicking on its Delete button. Quiz Project In this project, the application presents the user with an electronic quick made up of five questions. Before you start scripting, you need to have your questions ready. Create 5 trivia questions

More information

APPM 2460 Matlab Basics

APPM 2460 Matlab Basics APPM 2460 Matlab Basics 1 Introduction In this lab we ll get acquainted with the basics of Matlab. This will be review if you ve done any sort of programming before; the goal here is to get everyone on

More information

Problem Solving through Programming In C Prof. Anupam Basu Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur

Problem Solving through Programming In C Prof. Anupam Basu Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Problem Solving through Programming In C Prof. Anupam Basu Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Lecture 17 Switch Statement (Refer Slide Time: 00:23) In

More information

Crossley Fields - Computing Vocabulary

Crossley Fields - Computing Vocabulary Crossley Fields - Computing Vocabulary Glossary of terms taken from Kirklees Guidance, CAS/NAACE Computing in the National Curriculum & MIT Scratch Reference Guide. A Algorithm an unambiguous procedure

More information

How to Improve Your Campaign Conversion Rates

How to Improve Your  Campaign Conversion Rates How to Improve Your Email Campaign Conversion Rates Chris Williams Author of 7 Figure Business Models How to Exponentially Increase Conversion Rates I'm going to teach you my system for optimizing an email

More information

Excel Basics Fall 2016

Excel Basics Fall 2016 If you have never worked with Excel, it can be a little confusing at first. When you open Excel, you are faced with various toolbars and menus and a big, empty grid. So what do you do with it? The great

More information

File Upload Instructions Customer Access To Transcript Bulletin Publishing s FTP Site

File Upload Instructions Customer Access To Transcript Bulletin Publishing s FTP Site File Upload Instructions Customer Access To Transcript Bulletin Publishing s FTP Site In order to upload files to our FTP site, you will need a Java-enabled web browser for Microsoft Windows and Mac OS

More information

Eastside Literacy Tutor Support Word Processing Tutorial

Eastside Literacy Tutor Support Word Processing Tutorial Eastside Literacy Tutor Support Word Processing Tutorial Before you start, you will need a blank diskette. You will also need to know how to use the mouse and the keyboard, and how to select text on the

More information

Advanced Excel Charts : Tables : Pivots

Advanced Excel Charts : Tables : Pivots Advanced Excel Charts : Tables : Pivots Protecting Your Tables/Cells Protecting your cells/tables is a good idea if multiple people have access to your computer or if you want others to be able to look

More information

Touring the Mac. S e s s i o n 3 : U S E A N APPLICATION

Touring the Mac. S e s s i o n 3 : U S E A N APPLICATION Touring the Mac S e s s i o n 3 : U S E A N APPLICATION Touring_the_Mac_Session-3_Jan-25-2011 1 This session covers opening an application and typing a document using the TextEdit application which is

More information

Notebook Assignments

Notebook Assignments Notebook Assignments These six assignments are a notebook using techniques from class in the single concrete context of graph theory. This is supplemental to your usual assignments, and is designed for

More information

Hands-On BassetPro. Asset Verification Procedure. 1. Installing BassetPro on Your PC and Workabout

Hands-On BassetPro. Asset Verification Procedure. 1. Installing BassetPro on Your PC and Workabout Asset Verification Procedure Hands-On BassetPro 1. Installing BassetPro on Your PC and Workabout 2. Step by Step Asset Verification: On your Handheld - Adding new locations and editing their descriptions

More information

Measuring in Pixels with Scratch

Measuring in Pixels with Scratch In the Primary division, a big mathematical idea is understanding how to measure correctly, using both non standard and standardized measurements. Many students struggle with measuring because they fail

More information

Build a balloon pop game!

Build a balloon pop game! Build a balloon pop game! Part 2 An MIT App Inventor tutorial Feat. Tim the beaver App overview: Build a balloon pop game! Part 2 In this second version of the Balloon Pop game, we will be adding func=onality

More information

Setup Instructions for Upgrading the Windows XP Panasonic CF-19 Toughbook to Windows 7

Setup Instructions for Upgrading the Windows XP Panasonic CF-19 Toughbook to Windows 7 Setup Instructions for Upgrading the Windows XP Panasonic CF-19 Toughbook to Windows 7 Installation Setup Please ensure that the Windows XP CF-19 Toughbook to be upgraded is plugged in but powered OFF

More information

CMPT 120 Basics of Python. Summer 2012 Instructor: Hassan Khosravi

CMPT 120 Basics of Python. Summer 2012 Instructor: Hassan Khosravi CMPT 120 Basics of Python Summer 2012 Instructor: Hassan Khosravi Python A simple programming language to implement your ideas Design philosophy emphasizes code readability Implementation of Python was

More information

AN INTRODUCTION TO SCRATCH (2) PROGRAMMING

AN INTRODUCTION TO SCRATCH (2) PROGRAMMING AN INTRODUCTION TO SCRATCH (2) PROGRAMMING Document Version 2 (04/10/2014) INTRODUCTION SCRATCH is a visual programming environment and language. It was launched by the MIT Media Lab in 2007 in an effort

More information

Installing a Custom AutoCAD Toolbar (CUI interface)

Installing a Custom AutoCAD Toolbar (CUI interface) Installing a Custom AutoCAD Toolbar (CUI interface) AxciScape produces AutoCAD script files which must be Run within AutoCAD. You can do this by typing SCRIPT into the command line and then select the

More information

Crowdfunding Templates Samples (customize to fit your own project)

Crowdfunding  Templates Samples (customize to fit your own project) Crowdfunding Email Templates Samples (customize to fit your own project) Email Template 1 Pre-Launch to Inner Circle Contacts (Customize as needed for each contact) Subject: Want to join the party? Greetings

More information

Programming Lab 1 (JS Hwk 3) Due Thursday, April 28

Programming Lab 1 (JS Hwk 3) Due Thursday, April 28 Programming Lab 1 (JS Hwk 3) Due Thursday, April 28 Lab You may work with partners for these problems. Make sure you put BOTH names on the problems. Create a folder named JSLab3, and place all of the web

More information

Amyyon customers can t wait to get their hands on it s new application, developed in Uniface.

Amyyon customers can t wait to get their hands on it s new application, developed in Uniface. customers can t wait to get their hands on it s new application, developed in Uniface. 1 CUSTOMER SECTOR Information Technology COUNTRY Netherlands CHALLENGE Migrate the rich functionality of a client/server

More information

Introduction to Spreadsheets Part 1. The Quick and Easy guide to using Openoffice Calc

Introduction to Spreadsheets Part 1. The Quick and Easy guide to using Openoffice Calc Introduction to Spreadsheets Part 1 The Quick and Easy guide to using Openoffice Calc By the end of the lesson, you will be able to say I know what a spreadsheet is, I can enter simple data into a spreadsheet,

More information

SCRATCH. Introduction to creative computing with Scratch 2.0

SCRATCH. Introduction to creative computing with Scratch 2.0 SCRATCH Introduction to creative computing with Scratch 2.0 What is Scratch? Scratch is a visual programming language that allows you to create your interactive stories, games and animations by using blocks

More information

Introduction to Spreadsheets

Introduction to Spreadsheets Introduction to Spreadsheets Spreadsheets are computer programs that were designed for use in business. However, scientists quickly saw how useful they could be for analyzing data. As the programs have

More information

Try typing the following in the Python shell and press return after each calculation. Write the answer the program displays next to the sums below.

Try typing the following in the Python shell and press return after each calculation. Write the answer the program displays next to the sums below. Name: Date: Instructions: PYTHON - INTRODUCTORY TASKS Open Idle (the program we will be using to write our Python codes). We can use the following code in Python to work out numeracy calculations. Try

More information

Welcome Back! Without further delay, let s get started! First Things First. If you haven t done it already, download Turbo Lister from ebay.

Welcome Back! Without further delay, let s get started! First Things First. If you haven t done it already, download Turbo Lister from ebay. Welcome Back! Now that we ve covered the basics on how to use templates and how to customise them, it s time to learn some more advanced techniques that will help you create outstanding ebay listings!

More information

We ve been playing The Game of Life for several weeks now. You have had lots of practice making budgets, and managing income and expenses and savings.

We ve been playing The Game of Life for several weeks now. You have had lots of practice making budgets, and managing income and expenses and savings. We ve been playing The Game of Life for several weeks now. You have had lots of practice making budgets, and managing income and expenses and savings. It is sometimes a challenge to manage a lot of data

More information

2SKILL. Variables Lesson 6. Remembering numbers (and other stuff)...

2SKILL. Variables Lesson 6. Remembering numbers (and other stuff)... Remembering numbers (and other stuff)... Let s talk about one of the most important things in any programming language. It s called a variable. Don t let the name scare you. What it does is really simple.

More information

COMP : Practical 9 ActionScript: Text and Input

COMP : Practical 9 ActionScript: Text and Input COMP126-2006: Practical 9 ActionScript: Text and Input This practical exercise includes two separate parts. The first is about text ; looking at the different kinds of text field that Flash supports: static,

More information

Teach Yourself Microsoft Office Access Topic 2: Getting Started with Microsoft Access

Teach Yourself Microsoft Office Access Topic 2: Getting Started with Microsoft Access http://www.gerrykruyer.com Teach Yourself Microsoft Office Access Topic 2: Getting Started with Microsoft Access Microsoft Access 2016 uses the Ribbon to organise commands, just like the versions of MS

More information

MITOCW watch?v=0jljzrnhwoi

MITOCW watch?v=0jljzrnhwoi MITOCW watch?v=0jljzrnhwoi The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

Intro. Scheme Basics. scm> 5 5. scm>

Intro. Scheme Basics. scm> 5 5. scm> Intro Let s take some time to talk about LISP. It stands for LISt Processing a way of coding using only lists! It sounds pretty radical, and it is. There are lots of cool things to know about LISP; if

More information

The Environment. Scratch Programming. The Environment. The Environment. The Environment. The Environment. Lesson 1: Introduction THE STAGE

The Environment. Scratch Programming. The Environment. The Environment. The Environment. The Environment. Lesson 1: Introduction THE STAGE Scratch Programming Lesson 1: Introduction Jt Scratch Lesson 1 Fall 2011 slide 2 THE STAGE Code Executes Here Default Sprite Jt Scratch Lesson 1 Fall 2011 slide 3 Jt Scratch Lesson 1 Fall 2011 slide 4

More information

All Blocks of Scratch

All Blocks of Scratch All Blocks of Scratch Scratch has over 100 coding blocks, and each one has a unique use. They are all colour-coded into 9 different categories as seen below: You can also create your own block under More

More information

Unit 29. Installing and Upgrading Software Level 3

Unit 29. Installing and Upgrading Software Level 3 Unit 29 Installing and Upgrading Software Level 3 Todays Session What is software? Types of software Software uses What is software? Software is a collection of instructions that enable the user to interact

More information

Cmpt 101 Lab 1 - Outline

Cmpt 101 Lab 1 - Outline Cmpt 101 Lab 1 - Outline Instructions: Work through this outline completely once directed to by your Lab Instructor and fill in the Lab 1 Worksheet as indicated. Contents PART 1: GETTING STARTED... 2 PART

More information

Aesop QuickStart Guide for Substitutes

Aesop QuickStart Guide for Substitutes Aesop QuickStart Guide for Substitutes This guide will show you how to: Log on to the Aesop system Navigate the Aesop Web site Find and accept jobs online* Manage your schedule Cancel an assignment* Manage

More information

the rules The Goal Get all three of your monkeys around the board and into the Banana Grove before anyone else can!

the rules The Goal Get all three of your monkeys around the board and into the Banana Grove before anyone else can! the rules Equipment Code Monkey Island Gameboard, 12 monkey figurines (three of each color), 54 Guide cards, 16 Fruit cards, 10 Boost in a Bottle cards. The Goal Get all three of your monkeys around the

More information

TheBrain Pro Companion Guide for TeamBrain Services

TheBrain Pro Companion Guide for TeamBrain Services TheBrain Pro Companion Guide for TeamBrain Services Posted November 2012 2012. TheBrain Technologies LP. All Rights Reserved. TheBrain, TheBrain, TeamBrain, Brain, Thought, Thoughts, and Work the Way You

More information

BCSWomen Android programming (with AppInventor) Family fun day World record attempt

BCSWomen Android programming (with AppInventor) Family fun day World record attempt BCSWomen Android programming (with AppInventor) Family fun day World record attempt Overview of the day Intros Hello Android! Getting your app on your phone Getting into groups Ideas for apps Overview

More information

Usability Test Report: Tool for Books & More Bento Box 1

Usability Test Report: Tool for Books & More Bento Box 1 Usability Test Report: Tool for Books & More Bento Box 1 Summary Emily Daly and Bendte Fagge conducted usability testing that compared books and media search results using the Books & More tab in the search

More information

Python for Non-programmers

Python for Non-programmers Python for Non-programmers A Gentle Introduction 1 Yann Tambouret Scientific Computing and Visualization Information Services & Technology Boston University 111 Cummington St. yannpaul@bu.edu Winter 2013

More information

Welcome to GoalEnforcer

Welcome to GoalEnforcer Welcome to GoalEnforcer Thank you for choosing GoalEnforcer. We hope GoalEnforcer exceeds your expectations. If you are not familiar with GoalEnforcer, this user guide will provide you with an overview

More information

Pilot document v1 Jan Getting Started with Smart Fleet

Pilot document v1 Jan Getting Started with Smart Fleet Pilot document v1 Jan 2015 Getting Started with Smart Fleet Thank you for taking out RSA Smart Fleet. In the following guide we are going to show you how to get set up to allow you to make the most out

More information

S3 Scratch Programming

S3 Scratch Programming LOREM ST LOUIS IPSUM DOLOR ST LOUIS SCHOOL S3 Computer Literacy S3 Scratch Programming Dominic Kwok CHAPTER 1 Scratch After studying this chapter, you will be able to create a simple Scratch program upload

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

CS 177 Recitation. Week 1 Intro to Java

CS 177 Recitation. Week 1 Intro to Java CS 177 Recitation Week 1 Intro to Java Questions? Computers Computers can do really complex stuff. How? By manipulating data according to lists of instructions. Fundamentally, this is all that a computer

More information

Boolean Expressions. Is Equal and Is Not Equal

Boolean Expressions. Is Equal and Is Not Equal 3 MAKING CHOICES Now that we ve covered how to create constants and variables, you re ready to learn how to tell your computer to make choices. This chapter is about controlling the flow of a computer

More information

Signing up for My Lahey Chart

Signing up for My Lahey Chart Signing up for My Lahey Chart What is My Lahey Chart? My Lahey Chart is a helpful service that allows you to connect with your doctor and your health information online, anytime. Using your personal computer

More information

Aesop QuickStart Guide for Substitutes

Aesop QuickStart Guide for Substitutes Aesop QuickStart Guide for Substitutes This guide will show you how to: Log on to the Aesop system Navigate the Aesop Web site Find and accept jobs online Manage your schedule Cancel an assignment Manage

More information

Boolean Expressions. Is Equal and Is Not Equal

Boolean Expressions. Is Equal and Is Not Equal 3 MAKING CHOICES ow that we ve covered how to create constants and variables, you re ready to learn how to tell your computer to make choices. This chapter is about controlling the flow of a computer program

More information

AppyBuilder Beginner Tutorials

AppyBuilder Beginner Tutorials AppyBuilder Beginner Tutorials Four Simple Tutorials for Getting Started with AppyBuilder 1 TalkToMe: Your first AppyBuilder app 03 2 TalkToMe Part 2: Shaking and User Input 21 3 BallBounce: A simple game

More information

How to connect to a Wi-Fi or Wireless Network

How to connect to a Wi-Fi or Wireless Network How to connect to a Wi-Fi or Wireless Network This guide will walk you through the steps of connecting to a Wi-Fi network that is broadcasting its name. Start the ipad. 1. Tap on the Settings app. The

More information

#2 Madlibs. Print out a story using the five variables into a text box. Make a procedure called madlibs that works with a Main and a Start procedure.

#2 Madlibs. Print out a story using the five variables into a text box. Make a procedure called madlibs that works with a Main and a Start procedure. #2 Madlibs We are going to work on a new project, a game called Madlibs. It will give us some more practice dealing with variables. We are going to follow a defined set of steps in programming this. They

More information

15 Graph Theory Counting the Number of Relations. 2. onto (surjective).

15 Graph Theory Counting the Number of Relations. 2. onto (surjective). 2. onto (surjective). You should convince yourself that if these two properties hold, then it is always going to be the case that f 1 is a function. In order to do this, you should remember the definition

More information

106A assignment review #4. 13 Feb :30p-6:30p.! Miles Seiver

106A assignment review #4. 13 Feb :30p-6:30p.! Miles Seiver Y E 106A assignment review #4 13 Feb 2014 5:30p-6:30p! Miles Seiver A H char important! here's how you convert a char to a String Updating a char char ch = 'a'; Character.toUpperCase(ch); X println(""

More information

Mechanical Turk and AWS Workshop

Mechanical Turk and AWS Workshop Mechanical Turk and AWS Workshop William Kyle Hamilton School of Social Sciences, Humanities, and Arts University of California, Merced 12/5/2013 1 Outline for Today What is MTurk? and How much should

More information

Chapter 1 Operations With Numbers

Chapter 1 Operations With Numbers Chapter 1 Operations With Numbers Part I Negative Numbers You may already know what negative numbers are, but even if you don t, then you have probably seen them several times over the past few days. If

More information

Getting Started with Silo

Getting Started with Silo CHAPTER 1 Getting Started with Silo In this chapter, we discuss how to view, select, and manipulate models in Silo. If you are not familiar with Silo or polygon modeling, make sure to read the About Silo

More information

Term Definition Introduced in: This option, located within the View tab, provides a variety of options to choose when sorting and grouping Arrangement

Term Definition Introduced in: This option, located within the View tab, provides a variety of options to choose when sorting and grouping Arrangement 60 Minutes of Outlook Secrets Term Definition Introduced in: This option, located within the View tab, provides a variety of options to choose when sorting and grouping Arrangement messages. Module 2 Assign

More information

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Created by Simon Monk Last updated on 2016-12-03 03:20:15 AM UTC Guide Contents Guide Contents Overview You Will Need Downloading

More information

Quick Reference Tables

Quick Reference Tables Quick Reference Tables Chapter 1 Raspberry Pi Startup Command Quick Reference Table Command startx sudo sudo shutdown -h now sudo shutdown -r now Launches the Raspbian desktop environment (GUI). Gives

More information

RACKET BASICS, ORDER OF EVALUATION, RECURSION 1

RACKET BASICS, ORDER OF EVALUATION, RECURSION 1 RACKET BASICS, ORDER OF EVALUATION, RECURSION 1 COMPUTER SCIENCE 61AS 1. What is functional programming? Give an example of a function below: Functional Programming In functional programming, you do not

More information

STEP ACTIONS: STEP TOWARDS AND STEP AVOIDING

STEP ACTIONS: STEP TOWARDS AND STEP AVOIDING STEP ACTIONS: STEP TOWARDS AND STEP AVOIDING Oftentimes programmers want to create characters that either avoid other characters or move towards them. Think, for example, of a game where the objective

More information

In this project, you will create a showcase of your HTML projects and learn about links and embedding resources.

In this project, you will create a showcase of your HTML projects and learn about links and embedding resources. Project Showcase Introduction In this project, you will create a showcase of your HTML projects and learn about links and embedding resources. Step 1: Adding Links to Webpages Text links allow you to click

More information

Managing Groups Using InFellowship. A guide for Small Group Leaders

Managing Groups Using InFellowship. A guide for Small Group Leaders Managing Groups Using InFellowship A guide for Small Group Leaders 2 3 Managing Groups Using InFellowship Table of Contents MyLifePoint your InFellowship account...4 InFellowship Groups - Your Dashboard...5

More information

Edsel Ford High School

Edsel Ford High School First time on the Edsel Ford High School Class of 1969 Website? Here s what you need to do to start: Click on the Classmate Profiles link, find your name in the Classmates List and click it. You will be

More information