Problem 5 Example Solutions

Size: px
Start display at page:

Download "Problem 5 Example Solutions"

Transcription

1 Problem 5 Example Solutions This document provides pictures of a working Tynker program for both game options described. Keep in mind that these are example solutions. Problems can be solved computationally in many ways, so the best way to know if the solution is correct is by testing it! This document provides suggested solutions for teachers to refer to. Option 1: Color Confusion Game Stage Program 1. Clear the screen from any previous run of the program. 2. Initialize the score to Welcome the player then broadcast round 1 to begin. Note the wait blocks. If there are no wait blocks, programs will run too fast and the program might look like it missed a step, but it was just executing too quickly! 4. The two scripts about displaying score are a nice option to keep the player up to date with the score after each round (display score) as well as at the end of the game (display final score). PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 1

2 First Actor Program The code for the actors will be very similar. In fact, it is a copy/paste with minor edits for round numbers, color selection, and the text displayed. 2. When round 1 is broadcasted, the first actor should respond by going to the center of the screen (or any position the student would like!), becoming visible, and displaying the text of the color name (here it is orange) in a given font color (here it is also orange). Students can pick any color and combinations they like for this game. 3. Wait 1 second then hide again, clear the screen from the text drawn then broadcast to the next actor to start round When clicked the actor should either add a point to the score or subtract one. It depends on the case the student chooses to make for each round. In this case below, the color name matches its font color (orange) so it adds 1 point and broadcasts the display score message, which the Stage responds to. PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 2

3 Second Actor Program This is a copy of the previous actor, with minor edits for round numbers, color selection, and the text displayed. 2. When round 2 is broadcasted, the second actor should respond by going to the center of the screen (or any position the student would like!), becoming visible, and displaying the text of the color name (here it is blue) in a given font color (here it is dark red). Students can pick any color and combinations they like for this game. 3. Wait 1 second then hide again, clear the screen from the text drawn then broadcast to the next actor to start round When clicked the actor should either add a point to the score or subtract one. It depends on the case the student chooses to make for each round. In this case below, the color name does not match its font color so it subtracts 1 point and broadcasts the display score message, which the Stage responds to. PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 3

4 Third Actor Program This is a copy of the previous actor, with minor edits for round numbers, color selection, and the text displayed. 2. When round 3 is broadcasted, the third actor should respond by going to the center of the screen (or any position the student would like!), becoming visible, and displaying the text of the color name (here it is yellow) in a given font color (here it is blue). Students can pick any color and combinations they like for this game. 3. Wait 1 second then hide again, clear the screen from the text drawn then broadcast to the next actor to start round When clicked the actor should either add a point to the score or subtract one. It depends on the case the student chooses to make for each round. In this case below, the color name does not match its font color so it subtracts 1 point and broadcasts the display score message, which the Stage responds to. PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 4

5 Fourth Actor Program This is a copy of the previous actor, with minor edits for round numbers, color selection, and the text displayed. 2. When round 4 is broadcasted, the fourth actor should respond by going to the center of the screen (or any position the student would like!), becoming visible, and displaying the text of the color name (here it is red) in a given font color (here it is also red). Students can pick any color and combinations they like for this game. 3. Wait 1 second then hide again, clear the screen from the text drawn then broadcast to the next actor to start round When clicked the actor should either add a point to the score or subtract one. It depends on the case the student chooses to make for each round. In this case below, the color name matches its font color (red) so it adds 1 point and broadcasts the display score message, which the Stage responds to. PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 5

6 Fifth Actor Program This is a copy of the previous actor, with minor edits for round numbers, color selection, and the text displayed. 2. When round 5 is broadcasted, the fifth actor should respond by going to the center of the screen (or any position the student would like!), becoming visible, and displaying the text of the color name (here it is brown) in a given font color (here it is also brown). Students can pick any color and combinations they like for this game. 3. Wait 1 second then hide again, clear the screen from the text drawn then broadcast the display final score message which the Stage will respond to. 4. When clicked the actor should either add a point to the score or subtract one. It depends on the case the student chooses to make for each round. In this case below, the color name matches its font color (brown) so it adds 1 point. There is no need to broadcast the display score message since the display final score is called at the end of the when I receive round 5 script. PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 6

7 Option 2: Memory Game In this example solution, the balls will always be displayed in a straight horizontal line (with y = 200). The x positions will be 300, 100, 100, and 300. The actors that display the multiple choice answers will always appear in a vertical fashion (with x = 200). The y positions will be 300, 150, 0, and 150. Recall the game will look like this: Note that each round (aka sequence of balls to memorize) will require a new set of actors (like the four kid actors used here) to display the multiple choice answers so that when touched, it is clear to the actor which sequence was displayed and whether to give the player a point or take one away. This will cause some duplication of effort, which is why limiting this project to two or three rounds is plenty! There is another way to avoid the duplication and only use four actors by using a global variable. The code for Stage and Green Ball is shown at the end of this document. PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 7

8 Stage Program 1. Clear the screen from any previous run of the program. 2. Initialize the score to Welcome the player then broadcast round 1 to begin. Note the broadcast and wait blocks are best for this game since the stage will be controlling the entire game flow. So it calls for round 1, waits for it to complete, then calls for round 1 options (multiple choice answers) to appear, and then calls the next round, etc. Note that the extra 1 second waits in between are simply to add a short pause between the switches in display in the game, rather than everything switching quickly from one display to the next. 4. After all rounds have been played (the code below shows only two rounds but students can do more than that if time permits), the score is displayed. PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 8

9 Green Ball Program The code for the balls will be very similar. In fact, it is a copy/paste with minor edits for the x- and y-coordinates for each round. 2. When a round number is broadcasted, the ball will go to an x-y position then appear on the screen. It is up to the students to decide on the position of the ball on the screen. The example code below shows green all the way on the left (x = 300) in round 1 and in third position (x = 100) in round Wait 2 seconds then hide again. In this program, there is no need to broadcast to the next round, since the Stage is waiting for a round to complete and will broadcast the next round (difference between using broadcast and broadcast and wait blocks!) PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 9

10 Pink, Blue, and Orange Balls Programs The code is a copy of the previous ball with minor edits for the x- and y-coordinates for each round. 2. When a round number is broadcasted, the ball will go to an x-y position then appear on the screen. It is up to the students to decide on the position of the ball on the screen. 3. Wait 2 seconds then hide again. PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 10

11 PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 11

12 First Actor Program The code for the actors will also be very similar. In fact, it is a copy/paste with minor edits for the y-coordinates, the text displayed, and the score update. 2. When a broadcast for round 1 options is sent, the actor will go to its x-y position (see this game s introduction above) then appear on the screen. 3. The green code blocks show how to select a font color and size and draw the text at a specific x-y position. The key is to move it away from the actor just enough so it is not covered by the actor, but still close enough to be obvious that they go together! The player needs to click on the actor, not the text (the text does not detect the clicking event!) 4. Wait 5 seconds then hide again. 5. When the actor is touched, it will either add 1 point to the score or take away a point. For this specific actor, the answer it displayed was incorrect; therefore it subtracts 1 from the score. PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 12

13 Second, Third, and Fourth Actors Programs This is a copy of the previous actor, with minor edits for the text displayed and the y position. 2. When a broadcast for round 1 options is sent, the actor will go to its x-y position (see this game s introduction above) then appear on the screen. 3. Actor displays the text using the Drawing blocks. 4. Wait 5 seconds then hide again. 5. When the actor is touched, it will either add 1 point to the score or take away a point. The answer displayed by actors 2 and 4 are incorrect; therefore they subtract 1 from the score. Actor 3, showing the correct answer, adds 1 to it. PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 13

14 PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 14

15 Alternative Approach: Using a Global Variable As mentioned in the introduction to this game solution, there is a way to avoid duplicating the actors to display answers for each round. You will need to use a global variable which will be the indicator to the actors what sequence the balls were displayed in. The global variable round number will be created on the Stage and defined as a Global Variable. The stage can set that variable to the round number the game is in (like 1, 2, 3, etc.) Then in each of the four actors used to present the multiple choice answers, use an if-then-else statement that will check which round number it is and, based on that, determine which what action to take on the score. Stage Program The code is the same as the previous approach, except the new step where the stage sets the global variable round number before broadcasting the rounds. PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 15

16 Sample Actor Program The code below will be very similar for all four actors in the game. The code is the same as the previous approach, except for dealing with the score update. The actor will now need to check to see which round it is in the game, and decide whether to add or subtract a point. Let s say the sequence displayed in the text for this actor does NOT match the balls in round 1, but matches them in round 2. This code shows how to deal with that situation. The next question would be what if there are more than two rounds? Use as many nested if-then-else statements as needed. Here is an example: PLTW Launch Input/Output: Computer Systems Problem 5 Example Solutions Page 16

Overview. Teacher s Manual and reproductions of student worksheets to support the following lesson objective:

Overview. Teacher s Manual and reproductions of student worksheets to support the following lesson objective: Overview Lesson Plan #1 Title: Ace it! Lesson Nine Attached Supporting Documents for Plan #1: Teacher s Manual and reproductions of student worksheets to support the following lesson objective: Find products

More information

Chapter 2: Lines And Points

Chapter 2: Lines And Points Chapter 2: Lines And Points 2.0.1 Objectives In these lessons, we introduce straight-line programs that use turtle graphics to create visual output. A straight line program runs a series of directions

More information

Integer Chips. Explore Mode. In this tool, you can model and solve expressions using integer chips.

Integer Chips. Explore Mode. In this tool, you can model and solve expressions using integer chips. In this tool, you can model and solve expressions using integer chips. Explore Mode 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1. Textbox Add annotations to the activity area. 2. Textbox with Arrow Add comments

More information

PHY221 Lab 1 Discovering Motion: Introduction to Logger Pro and the Motion Detector; Motion with Constant Velocity

PHY221 Lab 1 Discovering Motion: Introduction to Logger Pro and the Motion Detector; Motion with Constant Velocity PHY221 Lab 1 Discovering Motion: Introduction to Logger Pro and the Motion Detector; Motion with Constant Velocity Print Your Name Print Your Partners' Names Instructions August 31, 2016 Before lab, read

More information

Linkage 3.6. User s Guide

Linkage 3.6. User s Guide Linkage 3.6 User s Guide David Rector Friday, December 01, 2017 Table of Contents Table of Contents... 2 Release Notes (Recently New and Changed Stuff)... 3 Installation... 3 Running the Linkage Program...

More information

TABLE OF CONTENTS Introduction About Timo Kiander Step #1: Step #2: Step #3: Step #4: Step #5: Step #6: Step #7: Step #8: Step #9: Step #10:

TABLE OF CONTENTS Introduction About Timo Kiander Step #1: Step #2: Step #3: Step #4: Step #5: Step #6: Step #7: Step #8: Step #9: Step #10: TABLE OF CONTENTS Introduction. 3 About Timo Kiander. 5 Step #1: Read a Book of Your Choice. 6 Step #2: Write an E-mail Autoresponder Series. 8 Step #3: Compile All the Messages as One Document. 10 Step

More information

(Skip to step 11 if you are already familiar with connecting to the Tribot)

(Skip to step 11 if you are already familiar with connecting to the Tribot) LEGO MINDSTORMS NXT Lab 5 Remember back in Lab 2 when the Tribot was commanded to drive in a specific pattern that had the shape of a bow tie? Specific commands were passed to the motors to command how

More information

Programs. onevent("can", "mousedown", function(event) { var x = event.x; var y = event.y; circle( x, y, 10 ); });

Programs. onevent(can, mousedown, function(event) { var x = event.x; var y = event.y; circle( x, y, 10 ); }); Loops and Canvas Programs AP CSP Program 1. Draw something like the figure shown. There should be: a blue sky with no black outline a green field with no black outline a yellow sun with a black outline

More information

Background. About automation subtracks

Background. About automation subtracks 16 Background Cubase provides very comprehensive automation features. Virtually every mixer and effect parameter can be automated. There are two main methods you can use to automate parameter settings:

More information

LINE IN, LINE OUT AUDIO IN, AUDIO OUT FIXED, VARIABLE TO TV, VIDEO IN, VIDEO OUT Sony Electronics Inc. All rights reserved.

LINE IN, LINE OUT AUDIO IN, AUDIO OUT FIXED, VARIABLE TO TV, VIDEO IN, VIDEO OUT Sony Electronics Inc. All rights reserved. This is a general recommendation based on the information you provided. You can customize the connections to suit your individual preferences and viewing habits. Some hookup recommendations have two cable

More information

Taking Control of Your TV

Taking Control of Your TV Taking Control of Your TV A Guide to Using AT&T s U-Verse TV Features 2019 Huntington Pointe Association Some Basics Note that the features described in this booklet are keyed to the buttons on the remote

More information

Control4 Philips Hue Lighting Driver Version 8

Control4 Philips Hue Lighting Driver Version 8 Old Mill Barns Sidlesham Chichester PO20 7LX United Kingdom UK Tel: +44 (0)20 8144 9354 US Tel +1 (801) 285 9354 www.extravegetables.com Control4 Philips Hue Lighting Driver Version 8 Contents Introduction...

More information

Let's Learn About Notes

Let's Learn About Notes Product of Australia Contents Let's Learn About Notes by Beatrice Wilder Sheet Sheet 2 Sheet 3 Sheet 4 Sheet 5 Sheet 6 Sheet 7 Sheet 8 Sheet 9 Sheet 0 Sheet Sheet 2 Sheet 3 Basic Information About Notes

More information

ILDA Image Data Transfer Format

ILDA Image Data Transfer Format ILDA Technical Committee Technical Committee International Laser Display Association www.laserist.org Introduction... 4 ILDA Coordinates... 7 ILDA Color Tables... 9 Color Table Notes... 11 Revision 005.1,

More information

DESIGN PRINCIPLES AND ELEMENTS. By Mark Gillan

DESIGN PRINCIPLES AND ELEMENTS. By Mark Gillan DESIGN PRINCIPLES AND ELEMENTS By Mark Gillan ELEMENTS OF DESIGN Components or part of which can be defined in any visual design or art work. The carry the work the structure PRINCIPLES OF DESIGN Concepts

More information

3jFPS-control Contents. A Plugin (lua-script) for X-Plane 10 by Jörn-Jören Jörensön

3jFPS-control Contents. A Plugin (lua-script) for X-Plane 10 by Jörn-Jören Jörensön 3jFPS-control-1.23 A Plugin (lua-script) for X-Plane 10 by Jörn-Jören Jörensön 3j@raeuber.com Features: + smoothly adapting view distance depending on FPS + smoothly adapting clouds quality depending on

More information

VideoClock. Quick Start

VideoClock. Quick Start VideoClock Quick Start Connect Limitimer, thetimeprompt, or PerfectCue to the dongle and the dongle to the USB port. (Note: Both the dongle and software are matched to the respective device. Do not mix.

More information

Logic Design II (17.342) Spring Lecture Outline

Logic Design II (17.342) Spring Lecture Outline Logic Design II (17.342) Spring 2012 Lecture Outline Class # 05 February 23, 2012 Dohn Bowden 1 Today s Lecture Analysis of Clocked Sequential Circuits Chapter 13 2 Course Admin 3 Administrative Admin

More information

YOUR MONEY LIFE: YOUR 50S BY PETER DUNN

YOUR MONEY LIFE: YOUR 50S BY PETER DUNN YOUR MONEY LIFE: YOUR 50S BY PETER DUNN DOWNLOAD EBOOK : Click link bellow and free register to download ebook: YOUR MONEY LIFE: YOUR 50S BY PETER DUNN DOWNLOAD FROM OUR ONLINE LIBRARY Here, we have numerous

More information

evirtuoso-online Lessons

evirtuoso-online Lessons Key Signatures Lesson 2 Circle of Fifths and Fourths evirtuoso-online Lessons www.evirtuoso.com The Major and Minor Keys previously discussed are also used in the Circle of Fifths and Fourths. The circle

More information

T/R 1: How many think one third? You all agree. Can you tell me why you would give it the number name one third?

T/R 1: How many think one third? You all agree. Can you tell me why you would give it the number name one third? Page: 1 of 6 [T/R 1 takes one red rod away.] If I had to give another name, a number name for the red rod, if I called the dark green rod one, what would I call the red rod? What number name would I give

More information

Setting Up Your ThinkorSwim Charts for Beginners

Setting Up Your ThinkorSwim Charts for Beginners Setting Up Your ThinkorSwim Charts for Beginners @azintothewoods Feb 10,2017 A beginner s guide to creating studies, chart settings, adding support/resistance levels and saving your workspace. When you

More information

EndNote Online. Getting Started Guide (Windows)

EndNote Online. Getting Started Guide (Windows) EndNote Online Getting Started Guide (Windows) Volda University College, 2017 Table of Contents Registering and creating an account... 2 Downloading and installing the Cite While You Write EndNote Plug-In

More information

Logo Guidelines Version 1.1, September 2008

Logo Guidelines Version 1.1, September 2008 Thermaltake Corporate Trademark Logo Guidelines Version 1.1, September 2008 - The following pages contain all necessary details for proper use of Thermaltake Logo. - Any application of Thermaltake Logo

More information

Capstone Experiment Setups & Procedures PHYS 1111L/2211L

Capstone Experiment Setups & Procedures PHYS 1111L/2211L Capstone Experiment Setups & Procedures PHYS 1111L/2211L Picket Fence 1. Plug the photogate into port 1 of DIGITAL INPUTS on the 850 interface box. Setup icon. the 850 box. Click on the port 1 plug in

More information

PROCESSING YOUR EEG DATA

PROCESSING YOUR EEG DATA PROCESSING YOUR EEG DATA Step 1: Open your CNT file in neuroscan and mark bad segments using the marking tool (little cube) as mentioned in class. Mark any bad channels using hide skip and bad. Save the

More information

Remote Control Operation

Remote Control Operation Remote Control Operation When you first switch the TV on, you will be presented with either the preview screen which shows the current program along with a brief summary of future programs or the full

More information

Step by Step: Format a Research Paper GET READY. Before you begin these steps, be sure to launch Microsoft Word. Third line: History 101

Step by Step: Format a Research Paper GET READY. Before you begin these steps, be sure to launch Microsoft Word. Third line: History 101 Step by Step: Format a Research Paper GET READY. Before you begin these steps, be sure to launch Microsoft Word. 1. OPEN the First Ladies document from the lesson folder. The document is unformatted. 2.

More information

CHEMISTRY SEMESTER ONE

CHEMISTRY SEMESTER ONE APPENDIX A USING THE SPECTROMETER FOR AN EMISSION SPECTROSCOPY NANSLO REMOTE WEB-BASED SCIENCE LAB ACTIVITY The following provides information how to use the spectrometer controls for the Emission Spectroscopy

More information

Welcome Accelerated Algebra 2!

Welcome Accelerated Algebra 2! Welcome Accelerated Algebra 2! Tear-Out: Pg. 445-452 (Class notes) Pg. 461 (homework) U6H2: Pg. 390 #21-24 Pg. 448 #6-7, 9-11 Pg. 461 #6-8 Updates: U6Q1 will be February 15 th (Thursday) U6T will be March

More information

*High Frequency Words also found in Texas Treasures Updated 8/19/11

*High Frequency Words also found in Texas Treasures Updated 8/19/11 Child s name (first & last) after* about along a lot accept a* all* above* also across against am also* across* always afraid American and* an add another afternoon although as are* after* anything almost

More information

GCSE MARKING SCHEME AUTUMN 2017 GCSE MATHEMATICS NUMERACY UNIT 1 - INTERMEDIATE TIER 3310U30-1. WJEC CBAC Ltd.

GCSE MARKING SCHEME AUTUMN 2017 GCSE MATHEMATICS NUMERACY UNIT 1 - INTERMEDIATE TIER 3310U30-1. WJEC CBAC Ltd. GCSE MARKING SCHEME AUTUMN 2017 GCSE MATHEMATICS NUMERACY UNIT 1 - INTERMEDIATE TIER 3310U30-1 INTRODUCTION This marking scheme was used by WJEC for the 2017 examination. It was finalised after detailed

More information

Spinner- an exercise in UI development. Spin a record Clicking

Spinner- an exercise in UI development. Spin a record Clicking - an exercise in UI development. I was asked to make an on-screen version of a rotating disk for scratching effects. Here's what I came up with, with some explanation of the process I went through in designing

More information

A few quick notes about the use of Spectran V2

A few quick notes about the use of Spectran V2 A few quick notes about the use of Spectran V2 The full fledged help file of Spectran is not ready yet, but many have asked for some sort of help. This document tries to explain in a quick-and-dirty way

More information

DIFFERENTIATE SOMETHING AT THE VERY BEGINNING THE COURSE I'LL ADD YOU QUESTIONS USING THEM. BUT PARTICULAR QUESTIONS AS YOU'LL SEE

DIFFERENTIATE SOMETHING AT THE VERY BEGINNING THE COURSE I'LL ADD YOU QUESTIONS USING THEM. BUT PARTICULAR QUESTIONS AS YOU'LL SEE 1 MATH 16A LECTURE. OCTOBER 28, 2008. PROFESSOR: SO LET ME START WITH SOMETHING I'M SURE YOU ALL WANT TO HEAR ABOUT WHICH IS THE MIDTERM. THE NEXT MIDTERM. IT'S COMING UP, NOT THIS WEEK BUT THE NEXT WEEK.

More information

Music 1. Aural Skills. Centre Number. Student Number. Do NOT write in this area. General Instructions

Music 1. Aural Skills. Centre Number. Student Number. Do NOT write in this area. General Instructions Centre Number 2017 HIGHER SCHOOL CERTIFICATE EXAMINATION Student Number Music 1 Aural Skills General Instructions Reading time 5 minutes Write using black pen Extra writing space is provided at the back

More information

Alpharetta High School Orchestras Placement Audition Directions

Alpharetta High School Orchestras Placement Audition Directions Alpharetta High School Orchestras 2018-2019 Placement Audition Directions Dear orchestra student, Thank you for your interest in auditioning for the Alpharetta High School Orchestra! Auditions are required

More information

Brand Guidelines. January 2015

Brand Guidelines. January 2015 Brand Guidelines January 2015 Table of Contents 1.0 What s a brand? 3 1.1 The logo 4 1.2 Colour 1.2.1 Spot & Process 1.2.2 Black & White 5 5 6 1.3 Logo Sizing 1.3.1 Minimum Clear Space 1.3.2 Positioning

More information

Humorous Speech Contest Script

Humorous Speech Contest Script Humorous Speech Contest Script -2018-19 General Introductions for entire contest event: [All the Contest master speeches are in standard font. Instructions are in brackets, bold and underlined.] The Chief

More information

Product Specification

Product Specification Product Specification Name:RGBW 4 channel controller Model:RF104 I. Summarization RGBW 4 channel controller is a multifunction controller, mainly used for control 4 channel lamps, it supports switch the

More information

CIRCLE Progress Monitoring System STORY RETELL AND COMPREHENSION Instructions & Score Sheet

CIRCLE Progress Monitoring System STORY RETELL AND COMPREHENSION Instructions & Score Sheet STORY RETELL AND COMPREHENSION Instructions & Score Sheet Step 1: Read the Story Hank s First Day The teacher reads the corresponding text for each picture in the story. The teacher must speak clearly

More information

The Circle of Fifths *

The Circle of Fifths * OpenStax-CNX module: m10865 1 The Circle of Fifths * Catherine Schmidt-Jones This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract Picturing a circle

More information

Introduction to CMOS VLSI Design (E158) Lab 3: Datapath and Zipper Assembly

Introduction to CMOS VLSI Design (E158) Lab 3: Datapath and Zipper Assembly Harris Introduction to CMOS VLSI Design (E158) Lab 3: Datapath and Zipper Assembly An n-bit datapath consists of n identical horizontal bitslices 1. Data signals travel horizontally along the bitslice.

More information

LINE IN, LINE OUT AUDIO IN, AUDIO OUT FIXED, VARIABLE TO TV, VIDEO IN, VIDEO OUT Sony Electronics Inc. All rights reserved.

LINE IN, LINE OUT AUDIO IN, AUDIO OUT FIXED, VARIABLE TO TV, VIDEO IN, VIDEO OUT Sony Electronics Inc. All rights reserved. This is a general recommendation based on the information you provided. You can customize the connections to suit your individual preferences and viewing habits. Some hookup recommendations have two cable

More information

10:30-11:00 FREEZE DANCE RHYMING GAME and FIND SUPER LETTERS

10:30-11:00 FREEZE DANCE RHYMING GAME and FIND SUPER LETTERS 10:30-11:00 FREEZE DANCE RHYMING GAME and FIND SUPER LETTERS GOALS: WHAT CAMPERS WILL LEARN To be able to use auditory and/or visual discrimination to decipher between ALL family words and NON-ALL family

More information

7thSense Design Delta Media Server

7thSense Design Delta Media Server 7thSense Design Delta Media Server Channel Alignment Guide: Warping and Blending Original by Andy B Adapted by Helen W (November 2015) 1 Trademark Information Delta, Delta Media Server, Delta Nano, Delta

More information

ICSA LABS LOGO USAGE GUIDELINES

ICSA LABS LOGO USAGE GUIDELINES ICSA LABS LOGO USAGE GUIDELINES CONTENTS ICSA LABS LOGO THE LOGO UNACCEPTABLE USAGE ICSA LABS EVALUATED LOGO THE LOGO UNACCEPTABLE USAGE ICSA LABS CERTIFIED LOGO THE LOGO UNACCEPTABLE USAGE COLOR PALETTE

More information

Nintendo. January 21, 2004 Good Emulators I will place links to all of these emulators on the webpage. Mac OSX The latest version of RockNES

Nintendo. January 21, 2004 Good Emulators I will place links to all of these emulators on the webpage. Mac OSX The latest version of RockNES 98-026 Nintendo. January 21, 2004 Good Emulators I will place links to all of these emulators on the webpage. Mac OSX The latest version of RockNES (2.5.1) has various problems under OSX 1.03 Pather. You

More information

Line Spectra and Energy Levels. A Chem 101A Tutorial

Line Spectra and Energy Levels. A Chem 101A Tutorial Line Spectra and Energy Levels A Chem 101A Tutorial A normal incandescent light bulb contains a hot piece of metal wire, which produces white light. A hydrogen discharge tube contains hot hydrogen gas,

More information

VISSIM TUTORIALS This document includes tutorials that provide help in using VISSIM to accomplish the six tasks listed in the table below.

VISSIM TUTORIALS This document includes tutorials that provide help in using VISSIM to accomplish the six tasks listed in the table below. VISSIM TUTORIALS This document includes tutorials that provide help in using VISSIM to accomplish the six tasks listed in the table below. Number Title Page Number 1 Adding actuated signal control to an

More information

LINE IN, LINE OUT AUDIO IN, AUDIO OUT FIXED, VARIABLE TO TV, VIDEO IN, VIDEO OUT Sony Electronics Inc. All rights reserved.

LINE IN, LINE OUT AUDIO IN, AUDIO OUT FIXED, VARIABLE TO TV, VIDEO IN, VIDEO OUT Sony Electronics Inc. All rights reserved. This is a general recommendation based on the information you provided. You can customize the connections to suit your individual preferences and viewing habits. Some hookup recommendations have two cable

More information

Pitch correction on the human voice

Pitch correction on the human voice University of Arkansas, Fayetteville ScholarWorks@UARK Computer Science and Computer Engineering Undergraduate Honors Theses Computer Science and Computer Engineering 5-2008 Pitch correction on the human

More information

Easy Peasy All-in-One High School American Literature Final Writing Project Due Day 180

Easy Peasy All-in-One High School American Literature Final Writing Project Due Day 180 Easy Peasy All-in-One High School American Literature Final Writing Project Due Day 180 Choose a fiction novel or a play by an American author for your project. This must be something we have not read

More information

CAMPAIGN TAGLINE GUIDELINES

CAMPAIGN TAGLINE GUIDELINES CAMPAIGN TAGLINE GUIDELINES 1 Campaign Tagline The campaign tagline should appear on all campaign-related communications. The campaign tagline should always be used in conjunction with the Block W logo

More information

About This Guide. About Church Motion Graphics

About This Guide. About Church Motion Graphics About This Guide Worship slides, also known as lyric slides, are an extremely valuable part of the modern church experience. They enable regular attendees and newcomers alike to comfortably sing along

More information

MODULE 4: Building with Numbers

MODULE 4: Building with Numbers UCL SCRATCHMATHS CURRICULUM MODULE 4: Building with Numbers TEACHER MATERIALS Developed by the ScratchMaths team at the UCL Knowledge Lab, London, England Image credits (pg. 3): Top left: CC BY-SA 3.0,

More information

SUSTAINABLE DEVELOPMENT GOALS

SUSTAINABLE DEVELOPMENT GOALS SUSTAINABLE DEVELOPMENT GOALS Guidelines for the use of the SDG logo, including the colour wheel, and 17 icons. UNITED NATIONS DEPARTMENT OF GLOBAL COMMUNICATIONS January 2019 Effective 1 January 2018,

More information

Lesson 25: Solving Problems in Two Ways Rates and Algebra

Lesson 25: Solving Problems in Two Ways Rates and Algebra : Solving Problems in Two Ways Rates and Algebra Student Outcomes Students investigate a problem that can be solved by reasoning quantitatively and by creating equations in one variable. They compare the

More information

AUCA Standard Graphic Identity Manual

AUCA Standard Graphic Identity Manual AUCA Standard Graphic Identity Manual GRAPHIC STANDARDS MANUAL This is the Graphic Standards Manual for the American University of Central Asia. It sets the standard for the design of all AUCA public communications

More information

What makes a good logo?

What makes a good logo? Logo Design Theory The word logo is rooted in the Greek word lógos meaning a word, saying, speech, discourse, thought, proportion, and ratio. In the world of graphic design a logo must represent all these

More information

Identification - electrical services

Identification - electrical services Identification - electrical services Aesthetic All live phase cable sheathing to be brown coloured and neutral phase cable sheathing to be blue coloured, all labelled L1, L2, L3 & N respectively in accordance

More information

SuperStar Basics. Brian Bruderer. Sequence Editors

SuperStar Basics. Brian Bruderer. Sequence Editors SuperStar Basics Brian Bruderer Sequence Editors Traditional sequence editors use a large grid to control when channels are turned on and off. This approach is like a Paint program where pictures are created

More information

PRODUCTION OF. Ages. Ages Shows. Performance Guide. Series sponsor:

PRODUCTION OF. Ages. Ages Shows. Performance Guide. Series sponsor: A PRODUCTION OF Ages Ages 4+ 6 Shows 4+ Performance Guide Series sponsor: TABLE OF CONTENTS Synopsis of the story About the Playwright About the Author History of the show Designing the show Props Sound

More information

Mobile Math Teachers Circle The Return of the iclicker

Mobile Math Teachers Circle The Return of the iclicker Mobile Math Teachers Circle The Return of the iclicker June 20, 2016 1. Dr. Spock asked his class to solve a percent problem, Julia set up the proportion: 4/5 = x/100. She then cross-multiplied to solve

More information

9:15-9:45 GROW A LETTER! CRAFT ACTIVITY

9:15-9:45 GROW A LETTER! CRAFT ACTIVITY 9:15-9:45 GROW A LETTER! CRAFT ACTIVITY GOALS: WHAT CAMPERS WILL LEARN To create a letter keepsake To practice the association between the letter sound and the letter that makes that sound, focusing on

More information

LINE IN, LINE OUT AUDIO IN, AUDIO OUT FIXED, VARIABLE TO TV, VIDEO IN, VIDEO OUT Sony Electronics Inc. All rights reserved.

LINE IN, LINE OUT AUDIO IN, AUDIO OUT FIXED, VARIABLE TO TV, VIDEO IN, VIDEO OUT Sony Electronics Inc. All rights reserved. This is a general recommendation based on the information you provided. You can customize the connections to suit your individual preferences and viewing habits. Some hookup recommendations have two cable

More information

Graphic Standards. A guide to Lane s visual identity, with information on using the college logo, Lane colors and typefaces, stationery, and more.

Graphic Standards. A guide to Lane s visual identity, with information on using the college logo, Lane colors and typefaces, stationery, and more. Graphic Standards A guide to Lane s visual identity, with information on using the college logo, Lane colors and typefaces, stationery, and more. TABLE OF CONTENTS Introduction to Graphic Standards...1

More information

A nice list for those who do not want to compile their own!

A nice list for those who do not want to compile their own! A nice list for those who do not want to compile their own! THE ELEMENTS OF DESIGN AND PRINCIPLES OF DESIGN The Elements of Design are the things that artists and designers work with to create a design,

More information

LINE IN, LINE OUT AUDIO IN, AUDIO OUT FIXED, VARIABLE TO TV, VIDEO IN, VIDEO OUT Sony Electronics Inc. All rights reserved.

LINE IN, LINE OUT AUDIO IN, AUDIO OUT FIXED, VARIABLE TO TV, VIDEO IN, VIDEO OUT Sony Electronics Inc. All rights reserved. This is a general recommendation based on the information you provided. You can customize the connections to suit your individual preferences and viewing habits. Some hookup recommendations have two cable

More information

Introduction. Overview. Organization

Introduction. Overview. Organization Introduction Skylla Producer is a Windows application that enables you to import, manage and delete audio content in the Skylla inventory. This chapter provides an overview of Skylla Producer. Subsequent

More information

Logisim: A graphical system for logic circuit design and simulation

Logisim: A graphical system for logic circuit design and simulation Logisim: A graphical system for logic circuit design and simulation October 21, 2001 Abstract Logisim facilitates the practice of designing logic circuits in introductory courses addressing computer architecture.

More information

LINE IN, LINE OUT AUDIO IN, AUDIO OUT FIXED, VARIABLE TO TV, VIDEO IN, VIDEO OUT Sony Electronics Inc. All rights reserved.

LINE IN, LINE OUT AUDIO IN, AUDIO OUT FIXED, VARIABLE TO TV, VIDEO IN, VIDEO OUT Sony Electronics Inc. All rights reserved. This is a general recommendation based on the information you provided. You can customize the connections to suit your individual preferences and viewing habits. Some hookup recommendations have two cable

More information

PosDroid. Essential Guide to Menumate Handhelds

PosDroid. Essential Guide to Menumate Handhelds PosDroid Essential Guide to Menumate Handhelds Copyright Copyright 2011 Menumate Limited All rights reserved No part of the document and publication may be reproduced, stored in or introduced into a retrieval

More information

BRAND GUIDELINES VENDOR COPY AUGUST ecoatm BRAND GUIDELINES

BRAND GUIDELINES VENDOR COPY AUGUST ecoatm BRAND GUIDELINES BRAND GUIDELINES VENDOR COPY AUGUST 2014 7059.0814 1 BRAND STANDARDS CONTENTS Brand Standards Primary Logo Endorsers Logo Lockup Secondary Logos, Black and White Margins and Minimum Size Incorrect Usage

More information

AP Lit & Comp 9/27 9/28 17

AP Lit & Comp 9/27 9/28 17 AP Lit & Comp 9/27 9/28 17 1. Thesis statements for BNW theme essays 2. Theme essays 101 3. The Man Who Spilled Light 4. Socratic prep work seminar next class Reminders Death to the one word theme. Look

More information

Intra-frame JPEG-2000 vs. Inter-frame Compression Comparison: The benefits and trade-offs for very high quality, high resolution sequences

Intra-frame JPEG-2000 vs. Inter-frame Compression Comparison: The benefits and trade-offs for very high quality, high resolution sequences Intra-frame JPEG-2000 vs. Inter-frame Compression Comparison: The benefits and trade-offs for very high quality, high resolution sequences Michael Smith and John Villasenor For the past several decades,

More information

Apply(produc&on(methods(to(plan(and( create(advanced(digital(media(video( projects.

Apply(produc&on(methods(to(plan(and( create(advanced(digital(media(video( projects. Objec&ve(206 Apply(produc&on(methods(to(plan(and( create(advanced(digital(media(video( projects. Course'Weight':'20% 1 Objec&ve(206(,(Video Objectives are broken down into three sub-objectives : pre-production,

More information

Calibrating the timecode signal input

Calibrating the timecode signal input Chapter 5 Calibrating the timecode signal input Computer hardware can introduce an offset between the timecode signal and the video signal, which causes the timecode and video to be offset when they are

More information

Ratios. How are the numbers in each ad compared? Which ads are most effective?

Ratios. How are the numbers in each ad compared? Which ads are most effective? 5 and part to part, part to whole versions of ratios There are different ways to compare numbers. Look @ these advertisments. How are the numbers in each ad compared? Which ads are most effective? 1 5

More information

Add Second Life to your Training without Having Users Log into Second Life. David Miller, Newmarket International.

Add Second Life to your Training without Having Users Log into Second Life. David Miller, Newmarket International. 708 Add Second Life to your Training without Having Users Log into Second Life David Miller, Newmarket International www.elearningguild.com DevLearn08 Session 708 Reference This session follows a case

More information

PC/HDTV to PC/HDTV converter (CP-251F)

PC/HDTV to PC/HDTV converter (CP-251F) PC/HDTV to PC/HDTV converter (CP-251F) Operation Manual This Converter has been especially modified to also accept RGsB Sync on Green Operation Controls and Functions Front Panel 1. Reset/ and +- The and

More information

Usability Comparison of

Usability Comparison of 1 Usability Comparison of IMDb.com and RottenTomatoes.com Janae Francese, Evelyn Johnson, Jacob Morrison, Aaron Sklar Overview This project is about comparing how users interact with two different, yet

More information

The willing suspension of disbelief.

The willing suspension of disbelief. Theatre Fundamentals The willing suspension of disbelief. Theatre Fundamentals Thespis: Greek poet from Icaria in Attica, usually considered the founder of drama, since he was the first to use an actor

More information

Final Projects. For ANY Novel. Unique & engaging projects with rubrics!

Final Projects. For ANY Novel. Unique & engaging projects with rubrics! Addie Williams Final Projects For ANY Novel Unique & engaging projects with rubrics! Eight final project ideas on unique and creative worksheets. Will Work with Any novel! Project Ideas for ANY Novel!

More information

Activity #5: Reaction Timer Using the PIN and CON commands Real World Testing Chapter 3 Review Links

Activity #5: Reaction Timer Using the PIN and CON commands Real World Testing Chapter 3 Review Links Chapter 3: Digital Inputs - Pushbuttons Presentation based on: "What's a Microcontroller?" By Andy Lindsay Parallax, Inc Presentation developed by: Martin A. Hebel Southern Illinois University Carbondale

More information

iii Table of Contents

iii Table of Contents i iii Table of Contents Display Setup Tutorial....................... 1 Launching Catalyst Control Center 1 The Catalyst Control Center Wizard 2 Enabling a second display 3 Enabling A Standard TV 7 Setting

More information

Characterization and improvement of unpatterned wafer defect review on SEMs

Characterization and improvement of unpatterned wafer defect review on SEMs Characterization and improvement of unpatterned wafer defect review on SEMs Alan S. Parkes *, Zane Marek ** JEOL USA, Inc. 11 Dearborn Road, Peabody, MA 01960 ABSTRACT Defect Scatter Analysis (DSA) provides

More information

After Effects Compositing Basics

After Effects Compositing Basics This tutorial is a continuation of the VIllus Capillary tutorial where you went through the basics of creating a Maya scene from A-to-Z. You re now ready to stitch together a final movie from the individual

More information

Leonard Bernstein at 100 Centennial Logo Guide

Leonard Bernstein at 100 Centennial Logo Guide Leonard Bernstein at 100 Centennial Logo Guide Introduction to the Leonard Bernstein at 100 Logo Guide In an effort to assemble all of the events of the Leonard Bernstein Centennial under one unifying

More information

Reading & Writing Workshop Suggested Sequence for Units of Study K-5 Sequence of Units. Kindergarten

Reading & Writing Workshop Suggested Sequence for Units of Study K-5 Sequence of Units. Kindergarten USD 489 & Writing Workshop 2018-19 Suggested Sequence for Units of Study 2018-19 K-5 Sequence of Units Kindergarten Aug-Sept We Are Readers (Book 1) Launching the Writing Workshop (Book 1) Oct- Early Emergent

More information

Avast logo manual. Logo Overview

Avast logo manual. Logo Overview 2 Overview The Avast logo consists of a symbol (the amoeba) and a wordmark. Both elements of the logo have been carefully redesigned to work together for maximum legibility. Do not redraw the symbol, typeset

More information

This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore.

This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore. This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore. Title Deregulation and commercialization of the broadcast media : implications for public service programmers

More information

L O G O G U I D E L I N E S J A N U A R Y

L O G O G U I D E L I N E S J A N U A R Y LOGO GUIDELINES JANUARY 2012 INTEGRITY ANNOUNCEMENT NBC SPORTS LOGO THE NBC SPORTS LOGO IS THE OFFICIAL MARK OF NBC S LEGACY OF PREMIERE SPORTS BROADCASTING. THIS MANUAL ESTABLISHES EXACT GUIDELINES FOR

More information

Reading & Writing Workshop Suggested Sequence for Units of Study K-5 Sequence of Units. Kindergarten

Reading & Writing Workshop Suggested Sequence for Units of Study K-5 Sequence of Units. Kindergarten USD 489 Reading & Workshop 2017-2018 Suggested Sequence for Units of Study 2017-2018 K-5 Sequence of Units Kindergarten Aug-Sept We Are Readers (Book 1) Launching the Workshop (Book 1) Oct- Early Emergent

More information

1 Ver.mob Brief guide

1 Ver.mob Brief guide 1 Ver.mob 14.02.2017 Brief guide 2 Contents Introduction... 3 Main features... 3 Hardware and software requirements... 3 The installation of the program... 3 Description of the main Windows of the program...

More information

Brand standards and usage guidelines for partners

Brand standards and usage guidelines for partners Brand standards and usage guidelines for partners 1 Successful implementation PURPOSE AND GOAL Colorado Crisis Services exists to provide help to Coloradans in need. This document serves that mission by

More information

Hi, I m Gary Bouton and welcome to another Xara TV tutorial at Xaraxone.com.

Hi, I m Gary Bouton and welcome to another Xara TV tutorial at Xaraxone.com. This is not word for word, but it is what I used for the script to the video. Copyright 2012 Gary David Bouton See the video that goes with this script at http://www.xaraxone.com/tutorials/march-2012-video-tutorial/

More information

Should you have any questions that aren t answered here, simply call us at Live Connected.

Should you have any questions that aren t answered here, simply call us at Live Connected. Interactive TV User Guide This is your video operations manual. It provides simple, straightforward instructions for your TV service. From how to use your Remote Control to Video On Demand, this guide

More information

CSE Data Visualization. Color. Jeffrey Heer University of Washington

CSE Data Visualization. Color. Jeffrey Heer University of Washington CSE 512 - Data Visualization Color Jeffrey Heer University of Washington Color in Visualization Identify, Group, Layer, Highlight Colin Ware Purpose of Color To label To measure To represent and imitate

More information

Project Design. Eric Chang Mike Ilardi Jess Kaneshiro Jonathan Steiner

Project Design. Eric Chang Mike Ilardi Jess Kaneshiro Jonathan Steiner Project Design Eric Chang Mike Ilardi Jess Kaneshiro Jonathan Steiner Introduction In developing the Passive Sonar, our group intendes to incorporate lessons from both Embedded Systems and E:4986, the

More information