1 Morse Code. Function and subfunctions

Size: px
Start display at page:

Download "1 Morse Code. Function and subfunctions"

Transcription

1 CS1132 Fall 2014 Assignment 2 due 11/20 11:59pm Adhere to the Code of Academic Integrity. You may discuss background issues and general strategies with others and seek help from course staff, but the implementations that you submit must be your own. In particular, you may discuss general ideas with others but you may not work out the detailed solutions with others. It is never OK for you to see or hear another student s code and it is never OK to copy code from published/internet sources. If you feel that you cannot complete the assignment on you own, seek help from the course staff. There are two parts to Assignment 2. art 1 is given below; art 2 and the submission instructions will appear in a separate document. Do not use the break or continue statement in any homework or test in CS Morse Code erhaps the most famous of all coding schemes is the Morse code, developed by Samuel Morse in 1832 for use with the telegraph system. The Morse code assigns a series of dots and dashes to each letter of the alphabet, each digit, and a few special characters (such as period, comma, colon, and semicolon). In sound-oriented systems, the dot represents a short sound and the dash represents a long sound. Other representations of dots and dashes are used with light-oriented systems and signal-flag systems. The international version of the Morse code appears in the file mosecode.txt. We will refer to this set of characters (the letters of the alphabet, numbers, and punctuation marks) and their Morse-equivalents as the Morse Table. (i) Function and subfunctions Implement a function and two subfunctions, as specified below, that together will allow us to translate between English and Morse Code. In the description below, English refers to the upper and lower case letters of the English alphabet, the digits (0 to 9), and the punctuation marks in an English paragraph. Function (main function): function morsecell = MorseCodeConverter(morseCodeFilename, inputfilename,... convertedfilename, flag) % Translate a passage from the plain text file named by inputfilename. % If flag is 1, inputfilename contains English text, which should be % translated to Morse code. If flag is 2, inputfilename contains Morse text, % which should be translated to English. Use one blank (space) between % Morse-coded letters in a word; use three blanks between Morse-coded % words. The translated text is stored in the plain text file named by % convertedfilename. The translation of each line of the input file should % appear as one line of the output file. Return a cell array that stores % the data of the Morse Table. % % INUT: % morsecodefilename: a string that names the textfile that stores the Morse % Table. The first line contains title text. Each of the remaining line % has this format: an English character, followed by a comma, followed % by the Morse coding of that character. % inputfilename: a string that names the input file % convertedfilename: a string that names the file that contains the % translated text. % flag: Either 1 or 2. 1 means convert from English to Morse Code; % 2 means convert from Morse Code to English. 1

2 % % OUTUT: % morsecell: an n-by-2 cell array where n is the number of English-Morse % pairings in the Morse Table. morsecell{k,1} stores the kth English % character in the Morse Table; morsecell{k,2} stores the Morse Code (a % string) of the kth character in the Morse Table. The main function must read the data file storing the Morse Table in creating the cell array do not hard code the Morse Table into the function. See section (ii) for the list of built-in functions allowed for file and string handling. The main function must make effective use of the following two subfunctions, which you will implement as specified: function morseword = EnglishtoMorse(engWord,morseCell) % Translate one English word to Morse code. % INUT: % engword is a string. It is a "word" in English, which is simply a string % of non-space characters. E.g., the string CS1132 is considered a % word. Treat any symbol not represented in the Morse Table as a space. % morsecell is the cell array that stores the data of the Morse Table. % OUTUT: % morseword is a string. It is the Morse translation of engword. function engword = MorsetoEnglish(morseWord, morsecell) % Translate one Morse code string representing a word to the corresponding % English word. % INUT: % morseword is a string. It is a word coded in Morse. Assume morseword to % be a correct Morse string (no unspecified symbols). % morsecell is the cell array that stores the data of the Morse Table. % OUTUT: % engword is a string. It is the English translation of morseword. (ii) Built-in functions Below is a list of useful built-in functions for handling characters, strings, and files. Use only these builtin functions for handling characters, strings, and files. You may not need all of them. You can of course still use general built-in functions not related specifically to strings and files, such as length, zeros, rem, etc. You can use: fopen, feof, fgetl, fclose strcmp, upper, isspace, isletter You must NOT use Matlab built-in functions find, strfind, findstr. (iii) Hints The provided file encodedfile.txt contains correct Morse Code that you can use for testing. encodedfile.txt is the Morse translation of the English text file whychoosematlab.txt. Suggestions for program development: 1. Start with reading the Morse Table to create the cell array in the main function. 2

3 2. Next, develop each of the subfunctions one at a time, as an independent function instead of a subfunction! This way you can test each function independently without involving the rest of the code and functions. 3. Continue working on the main function. It is best to isolate the file handling tasks. So read the input text file and store the data in a cell array store one line of text into one cell. Then iterate through the cell array to do the translation, storing the translated text in another cell array. Finally open the output file and write the cell array of translated text into the file. You can implement additional subfunctions as appropriate. 4. Don t forget to close each file that you open. 5. After testing your entire program (all functions) to make sure that it works, copy to MorseCodeConverter.m the other functions that should be subfunctions. Submit only MorseCodeConverter.m. 2 Graphics Fun! eg Solitaire eg solitaire is a one-player board game with the goal of removing all pegs except one from the game board. If a single peg remains on the board and it is in the middle, then you have won! First, take a look at the Wikipedia entry on eg Solitaire ( and pay attention to the second section (Board) and third section (lay) to learn how the player makes a move on the board. You will implement a Matlab function for playing the game on the English board (not European board). Our game board looks like this at the beginning of the game: all the holes in the board are filled with pegs (marked ) except for the hole in the middle of the board. An empty hole is marked in blue. A valid move is always a vertical or horizontal jump of one peg over another into a hole on the board. The jumped over peg is removed from the board. Below we show an example sequence of two moves starting from the initial board configuration. The first move is to select a peg (marked yellow) and jump it east, removing the jumped over peg that was adjacent to the selected peg. The second move in this example selects a peg and jumps it south. Observe that every move results in one more free space (blue) on the board. Select a space to put the yellow peg Select a space to put the yellow peg In this final exercise in the course, we give you the freedom to structure the code as you see fit. You should define helper functions as needed to make your solution modular do not submit one long giant function. The helper functions, i.e., subfunctions, must be saved in the same file containing the main function for the game: egsolitaire.m. The function takes no input argument and does not return any value. Below we give the specifications and some hints: Initialize the game board as the English game baord as shown in the left-most figure above. Valid move: A valid move comprises the selection of a valid peg and the selection of a valid empty space to which the selected peg can jump. Only the four directions north, east, south, and west are used. A peg can be selected for a move if, from that peg looking in any one of the four directions the adjacent position is a peg and is immediately followed by a space. Given a valid selected peg color that peg yellow a space selection is valid if there is exactly one peg between the selected space and the yellow peg. A valid move removes the jumped over peg from the board and turns that position to an empty space (blue). Throughout the game, appropriate messages should be displayed above the game board (the title area of the figure) to tell the user what to do, as shown in the figures above. 3

4 The player clicks on one of the squares of the game board in order to select a peg or a space. Use the Matlab built-in function ginput to get the coordinates of the user s click: [a,b]=ginput(1) stores the x and y coordinates of a user s mouse click in a and b, respectively. Any invalid click should not change the game board and the game proceeds only after the user makes a valid click. Throughout the game, an empty space is a blue square, a peg selected for a move is a yellow square with a inside, and the remaining pegs on the board are each a white square with a inside. The board should be updated according to each valid move. End of game: The game must stop when no valid move is possible. If a single peg remains on the board and it is in the middle, then the player wins; otherwise the player loses. An appropriate message indicating whether the player has won or lost should be displayed above the game board. The interaction happens only in one figure window. Below are some highly recommended subfunctions to design and implement in order to decompose the problem. We give only a descriptive name and the general idea for each recommended subfunction. It is up to you to design and implement the details or modify the purpose of a subfunction. function gameboard = creategameboard(): gameboard is a 7-by-7 matrix representing the English game board. Use 1, 0, and -1 to represent a peg, an open space, and an invalid location. function [isvalid, freespace] = checkroposedeg(peglocation, gameboard): Is a userclicked square a valid peg selection for a move? This subfunction is helpful for both determining whether a peg selection is valid and for checking for the end-of-game condition. This function returns also the locations of the valid free space for the proposed move to make the check for the next user-clicked square, the proposed space for the selected peg, simple. function [peglocation,freespace] = chooseeg(gameboard): Allow user clicks until a valid peg is selected. aint the valid peg yellow. function spacelocation = choosespace(freespace): Allow user clicks until a valid space associated with the selected (yellow) peg is chosen. function gameboard = updateboard(gameboard,peglocation,spacelocation): The function name and parameters say everything that needs to be said. But remember to update both the matrix and the graphic. function isendofgame = endofgame(gameboard): Check that no valid move is possible. 3 Self-check list The following is a list of the minimum necessary criteria that your assignment must meet in order to be considered satisfactory. Failure to satisfy any of these conditions will result in an immediate request to resubmit your assignment. Save yourself and the graders time and effort by going over it before submitting your assignment for the first time. Although all these criteria are necessary, meeting all of them might still not be sufficient to consider your submission satisfactory. We cannot list everything that could be possibly wrong with any particular assignment! Comment your code! Make sure your functions are properly commented, regarding function purpose and input/output parameters. Suppress all unnecessary output by placing semicolons (;) appropriately. At the same time, make sure that all output that your program intentionally produces is formatted in a user-friendly way. Make sure your functions names are exactly the ones we have specified, including case. Check that the number and order of input and output parameters for each of the functions match exactly the specifications we have given. Test each one of your functions independently, whenever possible, or write short scripts to test them. 4

5 Check that your scripts do not crash (i.e., end unexpectedly with an error message) or run into infinite loops. Check your script several times in a row. Before each test run, type the commands clear all; close all; to delete all variables in the workspace and close all figure windows. 4 Submission instructions 1. Upload files MorseCodeConverter.m and egsolitaire.m to CMS in the submission area corresponding to Assignment 1a in CMS before the deadline. Late submission is accepted up to 24 hours after the deadline with a 10% penalty. 2. After grading: If you resubmit the assignment, upload your corrected files and be sure to select the Regrade Request option. 5

Project 2: Bejeweled

Project 2: Bejeweled Project 2: Bejeweled Project Objective: Post: Tuesday March 26, 2013. Due: 11:59PM, Monday April 15, 2013 1. master the process of completing a programming project in UNIX. 2. get familiar with command

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89 by Joseph Collison Copyright 2000 by Joseph Collison All rights reserved Reproduction or translation of any part of this work beyond that permitted by Sections

More information

Math Games For Skills and Concepts

Math Games For Skills and Concepts Math Games p.1 Math Games For Skills and Concepts Original material 2001-2006, John Golden, GVSU permission granted for educational use Other material copyright: Investigations in Number, Data and Space,

More information

Python Lists and Loops

Python Lists and Loops WEEK THREE Python Lists and Loops You ve made it to Week 3, well done! Most programs need to keep track of a list (or collection) of things (e.g. names) at one time or another, and this week we ll show

More information

MATLAB Programming. Problem 1: Sequential

MATLAB Programming. Problem 1: Sequential Division of Engineering Fundamentals, Copyright 1999 by J.C. Malzahn Kampe 1 / 21 MATLAB Programming When we use the phrase computer solution, it should be understood that a computer will only follow directions;

More information

The Richard Pate School. Draft Year 4 Scheme of Work for Scratch

The Richard Pate School. Draft Year 4 Scheme of Work for Scratch The Richard Pate School Draft Year 4 Scheme of Work for Scratch Marcus Gilvear July 2014 (Acknowledgements: Phil Bagge and Duncan Hooper) Re Scratch: This work is licensed under the Creative Commons Attribution-NonCommercial

More information

SECTION 5: Finalizing Your Workbook

SECTION 5: Finalizing Your Workbook SECTION 5: Finalizing Your Workbook In this section you will learn how to: Protect a workbook Protect a sheet Protect Excel files Unlock cells Use the document inspector Use the compatibility checker Mark

More information

Create a Poster Using Publisher

Create a Poster Using Publisher Contents 1. Introduction 1. Starting Publisher 2. Create a Poster Template 5. Aligning your images and text 7. Apply a background 12. Add text to your poster 14. Add pictures to your poster 17. Add graphs

More information

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time.

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time. MS Word, Part 3 & 4 Office 2007 Line Numbering Sometimes it can be helpful to have every line numbered. That way, if someone else is reviewing your document they can tell you exactly which lines they have

More information

Week 2 Practical Objects and Turtles

Week 2 Practical Objects and Turtles Week 2 Practical Objects and Turtles Aims and Objectives Your aim in this practical is: to practise the creation and use of objects in Java By the end of this practical you should be able to: create objects

More information

If you know exactly how you want your business forms to look and don t mind

If you know exactly how you want your business forms to look and don t mind appendix e Advanced Form Customization If you know exactly how you want your business forms to look and don t mind detail work, you can configure QuickBooks forms however you want. With QuickBooks Layout

More information

BrainMaster Macromedia Flash Player

BrainMaster Macromedia Flash Player BrainMaster Macromedia Flash Player The BrainMaster Macromedia Flash Player is a built-in extension that provides the 2.5SE software with the ability to play Flash programs in real time, and to control

More information

Lab 4.4 Secret Messages: Indexing, Arrays, and Iteration

Lab 4.4 Secret Messages: Indexing, Arrays, and Iteration Lab 4.4 Secret Messages: Indexing, Arrays, and Iteration This JavaScript lab (the last of the series) focuses on indexing, arrays, and iteration, but it also provides another context for practicing with

More information

0 Introduction to Data Analysis Using an Excel Spreadsheet

0 Introduction to Data Analysis Using an Excel Spreadsheet Experiment 0 Introduction to Data Analysis Using an Excel Spreadsheet I. Purpose The purpose of this introductory lab is to teach you a few basic things about how to use an EXCEL 2010 spreadsheet to do

More information

Excel Database Management

Excel Database Management How to use AutoFill Whether you just want to copy the same value down or need to get a series of numbers or text values, fill handle in Excel is the feature to help. It's an irreplaceable part of the AutoFill

More information

Colored Hats and Logic Puzzles

Colored Hats and Logic Puzzles Colored Hats and Logic Puzzles Alex Zorn January 21, 2013 1 Introduction In this talk we ll discuss a collection of logic puzzles/games in which a number of people are given colored hats, and they try

More information

Umbraco v4 Editors Manual

Umbraco v4 Editors Manual Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...

More information

Beginner s Matlab Tutorial

Beginner s Matlab Tutorial Christopher Lum lum@u.washington.edu Introduction Beginner s Matlab Tutorial This document is designed to act as a tutorial for an individual who has had no prior experience with Matlab. For any questions

More information

An Introduction to the Moodle Online Learning Platform

An Introduction to the Moodle Online Learning Platform An Introduction to the Moodle Online Learning Platform For a general orientation to features of the course platform review the Computer Configuration, Course Navigation and Moodle Features document presented

More information

Has difficulty with counting reliably in tens from a multiple of ten

Has difficulty with counting reliably in tens from a multiple of ten Has difficulty with counting reliably in tens from a multiple of ten Opportunity for: looking for patterns 5 YR / 100-square Tens cards (Resource sheet 24) Multiples of ten (10 100) written on A5 pieces

More information

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas Introduction Excel Level Two This workshop introduces you to formulas, functions, moving and copying data, using autofill, relative and absolute references, and formatting cells. Contents Introduction

More information

Publisher 2010 Cheat Sheet

Publisher 2010 Cheat Sheet April 20, 2012 Publisher 2010 Cheat Sheet Toolbar customize click on arrow and then check the ones you want a shortcut for File Tab (has new, open save, print, and shows recent documents, and has choices

More information

Using Format Manager For Creating Format Files

Using Format Manager For Creating Format Files Using Format Manager For Creating Format Files This guide will be relevant for the TPS 300, 400, 700, 800 and 1200 series and also GPS 500 and 1200. Format Manager This sub-program can be found in Leica

More information

Curve Fitting, Loglog Plots, and Semilog Plots 1

Curve Fitting, Loglog Plots, and Semilog Plots 1 Curve Fitting, Loglog Plots, and Semilog Plots 1 In this MATLAB exercise, you will learn how to plot data and how to fit lines to your data. Suppose you are measuring the height h of a seedling as it grows.

More information

To add a data form to excel - you need to have the insert form table active - to make it active and add it to excel do the following:

To add a data form to excel - you need to have the insert form table active - to make it active and add it to excel do the following: Excel Forms A data form provides a convenient way to enter or display one complete row of information in a range or table without scrolling horizontally. You may find that using a data form can make data

More information

Instructions for the ACER Laptops

Instructions for the ACER Laptops 20 Manor Road Ruislip Middlesex HA4 7LB Telephone: +44(0)1895 624 774 E-Mail: info@llmedia.com Website: www.llmedia.com Instructions for the ACER Laptops Always, after connecting to a projector, switch

More information

20 CODE CHALLENGES. GCSE (9 1) Computer Science GCSE REFORM. February 2015

20 CODE CHALLENGES. GCSE (9 1) Computer Science GCSE REFORM. February 2015 February 2015 GCSE (9 1) Computer Science GCSE REFORM We will inform centres about any changes to the specification. We will also publish changes on our website. The latest version of our specification

More information

Windows, Menus, and Universal Document Shortcuts

Windows, Menus, and Universal Document Shortcuts Computer Shortcuts Keyboard shortcuts can increase productivity by limiting the number of times your hands need to move away from the keyboard or need to move into uncomfortable positions. The following

More information

Math 2524: Activity 3 (Excel and Matrices, continued) Fall 2002

Math 2524: Activity 3 (Excel and Matrices, continued) Fall 2002 Inverse of a Matrix: This activity will illustrate how Excel can help you find and use the inverse of a matrix. It will also discuss a matrix function called the determinant and a method called Cramer's

More information

Web Forms for Marketers 2.3 for Sitecore CMS 6.5 and

Web Forms for Marketers 2.3 for Sitecore CMS 6.5 and Web Forms for Marketers 2.3 for Sitecore CMS 6.5 and later User Guide Rev: 2013-02-01 Web Forms for Marketers 2.3 for Sitecore CMS 6.5 and later User Guide A practical guide to creating and managing web

More information

Intro to the Art of Computer Science

Intro to the Art of Computer Science 1 LESSON NAME: Intro to the Art of Computer Science Lesson time: 45 60 Minutes : Prep time: 15 Minutes Main Goal: Give the class a clear understanding of what computer science is and how it could be helpful

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 University of North Carolina at Chapel Hill Libraries Carrboro Cybrary Chapel Hill Public Library Durham County Public Library DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites

More information

Sudoku puzzles and how to solve them

Sudoku puzzles and how to solve them Sudoku puzzles and how to solve them Andries E. Brouwer 2006-05-31 1 Sudoku Figure 1: Two puzzles the second one is difficult A Sudoku puzzle (of classical type ) consists of a 9-by-9 matrix partitioned

More information

MATLAB Functions. function [Out_1,Out_2,,Out_N] = function_name(in_1,in_2,,in_m)

MATLAB Functions. function [Out_1,Out_2,,Out_N] = function_name(in_1,in_2,,in_m) MATLAB Functions What is a MATLAB function? A MATLAB function is a MATLAB program that performs a sequence of operations specified in a text file (called an m-file because it must be saved with a file

More information

3. Add and delete a cover page...7 Add a cover page... 7 Delete a cover page... 7

3. Add and delete a cover page...7 Add a cover page... 7 Delete a cover page... 7 Microsoft Word: Advanced Features for Publication, Collaboration, and Instruction For your MAC (Word 2011) Presented by: Karen Gray (kagray@vt.edu) Word Help: http://mac2.microsoft.com/help/office/14/en-

More information

Moving from CS 61A Scheme to CS 61B Java

Moving from CS 61A Scheme to CS 61B Java Moving from CS 61A Scheme to CS 61B Java Introduction Java is an object-oriented language. This document describes some of the differences between object-oriented programming in Scheme (which we hope you

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

(Refer Slide Time: 2:03)

(Refer Slide Time: 2:03) Control Engineering Prof. Madan Gopal Department of Electrical Engineering Indian Institute of Technology, Delhi Lecture - 11 Models of Industrial Control Devices and Systems (Contd.) Last time we were

More information

Years after 2000. US Student to Teacher Ratio 0 16.048 1 15.893 2 15.900 3 15.900 4 15.800 5 15.657 6 15.540

Years after 2000. US Student to Teacher Ratio 0 16.048 1 15.893 2 15.900 3 15.900 4 15.800 5 15.657 6 15.540 To complete this technology assignment, you should already have created a scatter plot for your data on your calculator and/or in Excel. You could do this with any two columns of data, but for demonstration

More information

Chapter 19: XML. Working with XML. About XML

Chapter 19: XML. Working with XML. About XML 504 Chapter 19: XML Adobe InDesign CS3 is one of many applications that can produce and use XML. After you tag content in an InDesign file, you save and export the file as XML so that it can be repurposed

More information

Xylophone. What You ll Build

Xylophone. What You ll Build Chapter 9 Xylophone It s hard to believe that using technology to record and play back music only dates back to 1878, when Edison patented the phonograph. We ve come so far since then with music synthesizers,

More information

Introduction to Microsoft Word 2008

Introduction to Microsoft Word 2008 1. Launch Microsoft Word icon in Applications > Microsoft Office 2008 (or on the Dock). 2. When the Project Gallery opens, view some of the available Word templates by clicking to expand the Groups, and

More information

MatLab Basics. Now, press return to see what Matlab has stored as your variable x. You should see:

MatLab Basics. Now, press return to see what Matlab has stored as your variable x. You should see: MatLab Basics MatLab was designed as a Matrix Laboratory, so all operations are assumed to be done on matrices unless you specifically state otherwise. (In this context, numbers (scalars) are simply regarded

More information

SMART board 101. SMART board 101 Training

SMART board 101. SMART board 101 Training SMART board 101 SMART board 101 Training For those who want to learn/remember how to connect it, turn it on, configure it, and feel better about using it at a basic level. We will talk about how the SMART

More information

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Interneer, Inc. Updated on 2/22/2012 Created by Erika Keresztyen Fahey 2 Workflow - A102 - Basic HelpDesk Ticketing System

More information

BEGINNER S BRIDGE NOTES. Leigh Harding

BEGINNER S BRIDGE NOTES. Leigh Harding BEGINNER S BRIDGE NOTES Leigh Harding PLAYING THE CARDS IN TRUMP CONTRACTS Don t play a single card until you have planned how you will make your contract! The plan will influence decisions you will have

More information

OA3-10 Patterns in Addition Tables

OA3-10 Patterns in Addition Tables OA3-10 Patterns in Addition Tables Pages 60 63 Standards: 3.OA.D.9 Goals: Students will identify and describe various patterns in addition tables. Prior Knowledge Required: Can add two numbers within 20

More information

GDP11 Student User s Guide. V. 1.7 December 2011

GDP11 Student User s Guide. V. 1.7 December 2011 GDP11 Student User s Guide V. 1.7 December 2011 Contents Getting Started with GDP11... 4 Program Structure... 4 Lessons... 4 Lessons Menu... 4 Navigation Bar... 5 Student Portfolio... 5 GDP Technical Requirements...

More information

EVENT REGISTRATION UPLOADER DOCUMENTATION

EVENT REGISTRATION UPLOADER DOCUMENTATION August 8, 2012 EVENT REGISTRATION UPLOADER DOCUMENTATION The Purpose To aid in generating more accurate reporting for engagement, event data needs to be entered into Griffin. The Event Registration Uploader

More information

Decision Logic: if, if else, switch, Boolean conditions and variables

Decision Logic: if, if else, switch, Boolean conditions and variables CS 1044 roject 3 Fall 2009 Decision Logic: if, if else, switch, Boolean conditions and variables This programming assignment uses many of the ideas presented in sections 3 through 5 of the Dale/Weems text

More information

CS1112 Spring 2014 Project 4. Objectives. 3 Pixelation for Identity Protection. due Thursday, 3/27, at 11pm

CS1112 Spring 2014 Project 4. Objectives. 3 Pixelation for Identity Protection. due Thursday, 3/27, at 11pm CS1112 Spring 2014 Project 4 due Thursday, 3/27, at 11pm You must work either on your own or with one partner. If you work with a partner you must first register as a group in CMS and then submit your

More information

Select the Crow s Foot entity relationship diagram (ERD) option. Create the entities and define their components.

Select the Crow s Foot entity relationship diagram (ERD) option. Create the entities and define their components. Α DESIGNING DATABASES WITH VISIO PROFESSIONAL: A TUTORIAL Microsoft Visio Professional is a powerful database design and modeling tool. The Visio software has so many features that we can t possibly demonstrate

More information

Excel Intermediate. Table of Contents UPPER, LOWER, PROPER AND TRIM...28

Excel Intermediate. Table of Contents UPPER, LOWER, PROPER AND TRIM...28 Excel Intermediate Table of Contents Formulas UPPER, LOWER, PROPER AND TRM...2 LEFT, MID, and RIGHT...3 CONCATENATE...4 & (Ampersand)...5 CONCATENATE vs. & (Ampersand)...5 ROUNDUP, and ROUNDDOWN...6 VLOOKUP...7

More information

Excel 2007 - Using Pivot Tables

Excel 2007 - Using Pivot Tables Overview A PivotTable report is an interactive table that allows you to quickly group and summarise information from a data source. You can rearrange (or pivot) the table to display different perspectives

More information

Enhanced Formatting and Document Management. Word 2010. Unit 3 Module 3. Diocese of St. Petersburg Office of Training Training@dosp.

Enhanced Formatting and Document Management. Word 2010. Unit 3 Module 3. Diocese of St. Petersburg Office of Training Training@dosp. Enhanced Formatting and Document Management Word 2010 Unit 3 Module 3 Diocese of St. Petersburg Office of Training Training@dosp.org This Page Left Intentionally Blank Diocese of St. Petersburg 9/5/2014

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

Working with Tables: How to use tables in OpenOffice.org Writer

Working with Tables: How to use tables in OpenOffice.org Writer Working with Tables: How to use tables in OpenOffice.org Writer Title: Working with Tables: How to use tables in OpenOffice.org Writer Version: 1.0 First edition: January 2005 First English edition: January

More information

Creating Maze Games. Game Maker Tutorial. The Game Idea. A Simple Start. Written by Mark Overmars

Creating Maze Games. Game Maker Tutorial. The Game Idea. A Simple Start. Written by Mark Overmars Game Maker Tutorial Creating Maze Games Written by Mark Overmars Copyright 2007-2009 YoYo Games Ltd Last changed: December 23, 2009 Uses: Game Maker 8.0, Lite or Pro Edition, Advanced Mode Level: Beginner

More information

Navigating the Online Application

Navigating the Online Application Navigating the Online Application I. Logging on to the Online Application To log on to the online application follow the instructions in Accessing the Online Application II. Main Menu On first logging

More information

1. Define: (a) Variable, (b) Constant, (c) Type, (d) Enumerated Type, (e) Identifier.

1. Define: (a) Variable, (b) Constant, (c) Type, (d) Enumerated Type, (e) Identifier. Study Group 1 Variables and Types 1. Define: (a) Variable, (b) Constant, (c) Type, (d) Enumerated Type, (e) Identifier. 2. What does the byte 00100110 represent? 3. What is the purpose of the declarations

More information

Media Console Using Atlas Import Wizard

Media Console Using Atlas Import Wizard Media Console Using Atlas Import Wizard Use the Atlas Import Wizard to create media plans when you have large campaigns or campaigns that use many different URLs and ads. This job aid covers the basic

More information

Adobe Conversion Settings in Word. Section 508: Why comply?

Adobe Conversion Settings in Word. Section 508: Why comply? It s the right thing to do: Adobe Conversion Settings in Word Section 508: Why comply? 11,400,000 people have visual conditions not correctible by glasses. 6,400,000 new cases of eye disease occur each

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 Screen Elements Quick Access Toolbar The Ribbon Formula Bar Expand Formula Bar Button File Menu Vertical Scroll Worksheet Navigation Tabs Horizontal Scroll Bar Zoom

More information

Basic Excel Handbook

Basic Excel Handbook 2 5 2 7 1 1 0 4 3 9 8 1 Basic Excel Handbook Version 3.6 May 6, 2008 Contents Contents... 1 Part I: Background Information...3 About This Handbook... 4 Excel Terminology... 5 Excel Terminology (cont.)...

More information

Solving the Rubik's Revenge (4x4x4) Home Pre-Solution Stuff Step 1 Step 2 Step 3 Solution Moves Lists

Solving the Rubik's Revenge (4x4x4) Home Pre-Solution Stuff Step 1 Step 2 Step 3 Solution Moves Lists Solving your Rubik's Revenge (4x4x4) 07/16/2007 12:59 AM Solving the Rubik's Revenge (4x4x4) Home Pre-Solution Stuff Step 1 Step 2 Step 3 Solution Moves Lists Turn this... Into THIS! To solve the Rubik's

More information

Assignment 2: Matchismo 2

Assignment 2: Matchismo 2 Assignment 2: Matchismo 2 Objective This assignment extends the card matching game Matchismo we started last week to get experience understanding MVC, modifying an MVC s View in Xcode, creating your own

More information

Live Text at Centenary College Quick Tips Guide

Live Text at Centenary College Quick Tips Guide Live Text at Centenary College Quick Tips Guide Please read all the information on this page. LiveText can help you create and maintain a digital portfolio of all the assignments and teaching materials

More information

Microsoft Excel 2013 Tutorial

Microsoft Excel 2013 Tutorial Microsoft Excel 2013 Tutorial TABLE OF CONTENTS 1. Getting Started Pg. 3 2. Creating A New Document Pg. 3 3. Saving Your Document Pg. 4 4. Toolbars Pg. 4 5. Formatting Pg. 6 Working With Cells Pg. 6 Changing

More information

Basic Website Creation. General Information about Websites

Basic Website Creation. General Information about Websites Basic Website Creation General Information about Websites Before you start creating your website you should get a general understanding of how the Internet works. This will help you understand what goes

More information

STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc.

STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc. STATGRAPHICS Online Statistical Analysis and Data Visualization System Revised 6/21/2012 Copyright 2012 by StatPoint Technologies, Inc. All rights reserved. Table of Contents Introduction... 1 Chapter

More information

Web Ambassador Training on the CMS

Web Ambassador Training on the CMS Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create

More information

COMMONWEALTH OF PA OFFICE OF ADMINISTRATION. Human Resource Development Division. SAP LSO-AE Desk Guide 15 T H J A N U A R Y, 2 0 1 3

COMMONWEALTH OF PA OFFICE OF ADMINISTRATION. Human Resource Development Division. SAP LSO-AE Desk Guide 15 T H J A N U A R Y, 2 0 1 3 COMMONWEALTH OF PA OFFICE OF ADMINISTRATION Human Resource Development Division SAP LSO-AE Desk Guide 15 T H J A N U A R Y, 2 0 1 3 S A P L S O A U T H O R I N G E N V I R O N M E N T Authoring & Publishing

More information

Employer Portal User Guide Last Updated: October 2015

Employer Portal User Guide Last Updated: October 2015 Employer Portal User Guide Last Updated: October 2015 San Francisco City Option PO Box 194367 San Francisco, CA 94119-4367 Phone: 1(415) 615-4492 Fax: 1(415) 615-4392 Email: employerservices@sfcityoption.org

More information

One pile, two pile, three piles

One pile, two pile, three piles CHAPTER 4 One pile, two pile, three piles 1. One pile Rules: One pile is a two-player game. Place a small handful of stones in the middle. At every turn, the player decided whether to take one, two, or

More information

How to Make the Most of Excel Spreadsheets

How to Make the Most of Excel Spreadsheets How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which

More information

VERSION 3.0 MAC USER GUIDE

VERSION 3.0 MAC USER GUIDE VERSION 3.0 MAC USER GUIDE TABLE OF CONTENTS Introduction... 5 What s New?... 5 What This Guide Is Not... 6 Getting Started... 7 Activating... 7 Activate Via the Internet... 7 Activate Via Email... 7 Upgrading...

More information

JAVASCRIPT AND COOKIES

JAVASCRIPT AND COOKIES JAVASCRIPT AND COOKIES http://www.tutorialspoint.com/javascript/javascript_cookies.htm Copyright tutorialspoint.com What are Cookies? Web Browsers and Servers use HTTP protocol to communicate and HTTP

More information

Introduction to scripting with Unity

Introduction to scripting with Unity Introduction to scripting with Unity Scripting is an essential part of Unity as it defines the behaviour of your game. This tutorial will introduce the fundamentals of scripting using Javascript. No prior

More information

Special Notice. Rules. Weiss Schwarz Comprehensive Rules ver. 1.64 Last updated: October 15 th 2014. 1. Outline of the Game

Special Notice. Rules. Weiss Schwarz Comprehensive Rules ver. 1.64 Last updated: October 15 th 2014. 1. Outline of the Game Weiss Schwarz Comprehensive Rules ver. 1.64 Last updated: October 15 th 2014 Contents Page 1. Outline of the Game. 1 2. Characteristics of a Card. 2 3. Zones of the Game... 4 4. Basic Concept... 6 5. Setting

More information

Most laptops allow you to plug in a second monitor, which can be a TV screen or Projector I will refer to a monitor in this document.

Most laptops allow you to plug in a second monitor, which can be a TV screen or Projector I will refer to a monitor in this document. Introduction This is a guide to setting up / using a laptop with a TV screen or projector. IT IS STRONGLY RECOMMENDED THAT YOU TRY THIS OUT SOME TIME AHEAD OF YOUR PRESENTATION. PowerPoint If using PowerPoint

More information

OBJECTIVES. The BIG Idea. How will taking notes improve my performance in school and on the job? Taking Notes

OBJECTIVES. The BIG Idea. How will taking notes improve my performance in school and on the job? Taking Notes Taking Notes 2 Study Skills The BIG Idea How will taking notes improve my performance in school and on the job? AGENDA Approx. 45 minutes I. Warm Up: Scavenger Hunt (5 minutes) II. What s My Line? (10

More information

Version of Barcode Toolbox adds support for Adobe Illustrator CS

Version of Barcode Toolbox adds support for Adobe Illustrator CS Introduction Traditionally the printing industry has used manual design paste up and stripping for the implementation of barcode symbols but today the computer is used more often to generate barcode symbols

More information

ADDING DOCUMENTS TO A PROJECT. Create a a new internal document for the transcript: DOCUMENTS / NEW / NEW TEXT DOCUMENT.

ADDING DOCUMENTS TO A PROJECT. Create a a new internal document for the transcript: DOCUMENTS / NEW / NEW TEXT DOCUMENT. 98 Data Transcription The A-Docs function, introduced in ATLAS.ti 6, allows you to not only transcribe your data within ATLAS.ti, but to also link documents to each other in such a way that they can be

More information

City of De Pere. Halogen How To Guide

City of De Pere. Halogen How To Guide City of De Pere Halogen How To Guide Page1 (revised 12/14/2015) Halogen Performance Management website address: https://global.hgncloud.com/cityofdepere/welcome.jsp The following steps take place to complete

More information

Current California Math Standards Balanced Equations

Current California Math Standards Balanced Equations Balanced Equations Current California Math Standards Balanced Equations Grade Three Number Sense 1.0 Students understand the place value of whole numbers: 1.1 Count, read, and write whole numbers to 10,000.

More information

SAP Business Intelligence ( BI ) Financial and Budget Reporting. 7.0 Edition. (Best Seller At Least 43 copies Sold)

SAP Business Intelligence ( BI ) Financial and Budget Reporting. 7.0 Edition. (Best Seller At Least 43 copies Sold) SAP Business Intelligence ( BI ) Financial and Budget Reporting 7.0 Edition (Best Seller At Least 43 copies Sold) November 2011 Table of Contents Log In... 3 Initial Variable Screen... 5 Multiple / Single

More information

Algebra I Notes Relations and Functions Unit 03a

Algebra I Notes Relations and Functions Unit 03a OBJECTIVES: F.IF.A.1 Understand the concept of a function and use function notation. Understand that a function from one set (called the domain) to another set (called the range) assigns to each element

More information

COMP 112 Assignment 1: HTTP Servers

COMP 112 Assignment 1: HTTP Servers COMP 112 Assignment 1: HTTP Servers Lead TA: Jim Mao Based on an assignment from Alva Couch Tufts University Due 11:59 PM September 24, 2015 Introduction In this assignment, you will write a web server

More information

Barcode Labels Feature Focus Series. POSitive For Windows

Barcode Labels Feature Focus Series. POSitive For Windows Barcode Labels Feature Focus Series POSitive For Windows Inventory Label Printing... 3 PFW System Requirement for Scanners... 3 A Note About Barcode Symbologies... 4 An Occasional Misunderstanding... 4

More information

Council of Ontario Universities. COFO Online Reporting System. User Manual

Council of Ontario Universities. COFO Online Reporting System. User Manual Council of Ontario Universities COFO Online Reporting System User Manual Updated September 2014 Page 1 Updated September 2014 Page 2 Table of Contents 1. Security... 5 Security Roles Defined in the Application...

More information

Computer Programming In QBasic

Computer Programming In QBasic Computer Programming In QBasic Name: Class ID. Computer# Introduction You've probably used computers to play games, and to write reports for school. It's a lot more fun to create your own games to play

More information

Selecting Features by Attributes in ArcGIS Using the Query Builder

Selecting Features by Attributes in ArcGIS Using the Query Builder Helping Organizations Succeed with GIS www.junipergis.com Bend, OR 97702 Ph: 541-389-6225 Fax: 541-389-6263 Selecting Features by Attributes in ArcGIS Using the Query Builder ESRI provides an easy to use

More information

Getting Started in Tinkercad

Getting Started in Tinkercad Getting Started in Tinkercad By Bonnie Roskes, 3DVinci Tinkercad is a fun, easy to use, web-based 3D design application. You don t need any design experience - Tinkercad can be used by anyone. In fact,

More information

Creating Basic Excel Formulas

Creating Basic Excel Formulas Creating Basic Excel Formulas Formulas are equations that perform calculations on values in your worksheet. Depending on how you build a formula in Excel will determine if the answer to your formula automatically

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

IE Class Web Design Curriculum

IE Class Web Design Curriculum Course Outline Web Technologies 130.279 IE Class Web Design Curriculum Unit 1: Foundations s The Foundation lessons will provide students with a general understanding of computers, how the internet works,

More information

User s Manual CAREpoint EMS Workstation D-Scribe Reporting System

User s Manual CAREpoint EMS Workstation D-Scribe Reporting System 1838021B User s Manual CAREpoint EMS Workstation D-Scribe Reporting System EDITORS NOTE FORM BUILDER IS A PART OF D-SCRIBE S REPORTING SYSTEM (D-SCRIBE S FORM BUILDER). FORMS WHICH ARE CREATED AND/OR USED

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

Microsoft Excel 2010 Part 3: Advanced Excel

Microsoft Excel 2010 Part 3: Advanced Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting

More information