2018 Pummill Relay problem statement

Size: px
Start display at page:

Download "2018 Pummill Relay problem statement"

Transcription

1 2018 Pummill Relays CS Problem: Minimum Spanning Tree Missouri State University For information about the Pummill Relays CS Problem, please contact: Suppose there are N locations (such as cities), and we wish to build some physical pathway that connects all N locations for instance, a new high-speed internet cable that connects every city. For example, the diagram shows a set of N = 10 cities and the pathway that connects them. (source) The pathway, shown in thick lines, consists of a set of line segments. Each segment connects two cities using a straight line. The new pathway will not directly connect every pair of cities. Instead, a set of line segments will be chosen so that at least one connection exists at every city. There must be only one path between any two cities, but that path may require several line segments. The goal is to minimize the total length of the pathways while connecting all N locations. The numbers shown in the diagram are the length of each segment, totalling 38 units, which is the minimum for this example. This Pummill Relays Problem is to find the length of the Minimum Spanning Tree, and to give one set of line segments that give that length. (There might be ties of MST length: multiple sets of line segments that all give a valid tree of the same length.) This Pummill Relays Problem is provided in three parts of increasing level of challenge, and scoring will be based on the number of parts completed. You need not complete all three parts to enter and score. All teams are encouraged to consider this problem and solve as many parts as possible. Prim s Algorithm. See an animation of Prim s Algorithm. 1. Sort the edges by length, shortest to longest. 2. Choose the shortest edge. (If there is a tie for the shortest edge, select any one at random.) That edge is one of the segments of the Minimum Spanning Tree. Add the edge to a set of edges that are known to be in the MST. Name that set E. (An edge can be identified and stored by using the two endpoints.) 3. Add the two endpoints of that selected edge into a set of points, named P. The set P contains the points that are already known to be part of the Minimum Spanning Tree. 4. If the set P contains every point (location), you have found the complete Minimum Spanning Tree, contained in the set E. You re finished! 5. If you re not yet finished, select the next-shortest edge that has exactly one endpoint in P. (The edge you choose cannot have both endpoints in P.) With that edge, go back to step 3. The order that the edges are found will not necessarily also be in order of increasing edge length. The Minimum Spanning Tree for N points will always have N 1 edges. Page 1

2 Part 1. Find the Minimum Spanning Tree using a spreadsheet, and display the tree Use spreadsheet operations of sorting and plotting to display your Minimum Spanning Tree. Example. Each point (location) in the example graph has been labelled with a red identifying number. There are N = 10 points in the example graph. Refer to the provided spreadsheet, Provided Part 1 Example to observe the steps in finding a Minimum Spanning Tree a. b. 2 c. d. 4 e. f. g. 3 6 h. i. j. k. l. 5 m. n. a. The first spreadsheet tab, Edge Weight, has 21 data rows that correspond to the 21 edges in the test graph. Sort these rows (edges) by length, shortest to longest. Use Prim s Algorithm (previous page) to decide which edges are in the MST. b. The second spreadsheet tab, Point (x,y) is an (x, y) Cartesian coordinate for the location of each red-numbered point. c. The third spreadsheet tab, Plot of MSTree, plots the edges that you found for the Minimum Spanning Tree. i. This plot uses MS Excel Scatter Plot function, which can plot either single data points or a sequence of data points connected by line segments. Separate data with a blank line so that Excel Scatter Plot doesn t connect those points with a line segment. ii. The first line segment you found for the MST is the edge between point 8 and point 9, length 1. The Excel cells that plot that line segment are highlighted in blue in tab The Part 1 task is to find the Minimum Spanning Tree for the points and edges shown in the Excel spreadsheet Part 1 Problem two tabs As the filename indicates, the data in the Part 1 file has two tabs containing the data. Use Excel to plot the Minimum Spanning Tree, as demonstrated in the provided spreadsheet Provided Part 1 Example Turn in: a Word document, with the following clearly stated: o team members and school name o list of the edges in the MST o length of the MST o diagram of the MST (cut-and-paste from Excel Page 2

3 Part 2. Write a program to find the Minimum Spanning Tree. Write a computer program in either Java, C++, or Python to read problem inputs from a data file and produce output for the solution of finding a Minimum Spanning Tree. All data of this problem is numeric integers, and you may use arrays or lists to contain that data. Input to your program: A data file is used to specify the characteristics of this Minimum Spanning Tree problem. Example and test input files are provided on the Pummill Relays website. The input data file contains only a series of integer values described by the following form: N, the number of points for which an MST will be found. Those points will be numbered 1...N. E, the number of edges that will follow this... (until E edges have been listed) Sample input file TestMST.txt (see meanings of each number above): Output of your program: text output. Shown below is the expected form of the output of the example used in part 1. NOTES: There may be more than one valid, equal-length MST, with different sets of edges whose sum length is the same, because you may break ties of equal-length next-selected edges differently. White-space formatting in the output is not critical. Page 3

4 The identifying keyword OUTPUT should not appear in any other printed output lines. OUTPUT Minimum Spanning Tree length is 38 OUTPUT Edge 8-9, length 1 OUTPUT Edge 8-10, length 3 OUTPUT Edge 7-9, length 4 OUTPUT Edge 6-7, length 7 OUTPUT Edge 4-6, length 8 OUTPUT Edge 3-4, length 2 OUTPUT Edge 2-4, length 2 OUTPUT Edge 1-3, length 3 OUTPUT Edge 5-6, length 8 Notes on output: The identifying keyword OUTPUT will help to identify any genuine output from other print statements. Please use that keyword on no other printed output statement. In fact, we would appreciate a minimum of print statements in your submitted code. Turn in: your program source code Part 3. Write a program to find the Minimum Spanning Tree with specific conditions. Similarly to Part 2, write a computer program in either Java, C++, or Python to read problem inputs from a data file and produce output for the solution of finding a Minimum Spanning Tree --- but in this Part 3, the MST has specific conditions. Find an MST for the points of the input file such that: 1. The first edge chosen is the shortest edge between an odd-numbered point and an evennumbered point. 2. All other edges selected are between two odd-odd points or two even-even points. That is, the MST you find will be the union of the MST on the odd-numbered points, the MST on the even-numbered points, and the shortest edge having one odd-numbered endpoint and one evennumbered endpoint. All other instructions are the same as were shown in Part 2. Turn in: your program source code (Contest rules and guidelines are on next page) Page 4

5 Program rules and guidelines (see also submission rules below): 1. Your program must read from a text input file the data for the problems. The form of the input file is described above. 2. Your program must create output with the identifying keyword OUTPUT. Example output is shown above. Pummill relay programming contest hints: 1. Start small and work up. That is, code and test one small activity at a time, then move to the next activity. For instance, for an initial implementation of a recursive function, simply pass a parameter, demonstrate within the recursive routine that the parameter was correctly received, and return. 2. Partial credit will be awarded where it makes sense. 3. A snippet of code to read numeric values from a file is provided in two languages, Java and C Your program will be tested on other, larger, input files than those provided. Important: Of course you may use print statements to debug your code. However, please do not turn in code that causes massive amounts of output to the screen. Rules for submitting entries to the Pummill Relay Programming Contest 1. A team consists of at most three students from the same high school. There may be up to two teams per school. No student can be a member of more than one team. Each team must work independently. Each team may have only one entry (latest-dated entry will be used). 2. Submission of entries should be by of some generally legible format, with contents described above. If you have questions about formatting, please contact KenVollmar@missouristate.edu, There are separate parts to the 2018 Pummill Relays problem. Name your documents or programs to indicate the problem part that program solves. 4. All entries are welcome by , prior to 8:00am Monday Apr. 9, 2018 (the Monday prior to the Wednesday Pummill Relay competition). No entries can be accepted after that time. 5. Important: the form of the contest entry submission: Send entries by to KenVollmar@missouristate.edu, with a subject line that clearly indicates Pummill Relay. You should expect your s to be acknowledged within a few business hours, including a statement that the entry is in a legible format. Clearly show in the the school name, the team members' names, and the supervising teacher's name. Attach to the your source code for solving the Pummill Relay problem. Your source code will be compiled and tested on additional problems of the same format. The latest-dated submitted by a team will be the one used in the competition. 6. On the day of competition, the results of all entries will be displayed in a public area at Missouri State University. 7. Scoring and tiebreakers: number of parts correctly solved, earlier date, quality of source code and solution. Page 5

COMPUTER SCIENCE Paper 2 (PRACTICAL)

COMPUTER SCIENCE Paper 2 (PRACTICAL) COMPUTER SCIENCE Paper 2 (PRACTICAL) (Maximum Marks: 30) (Time allowed: Three hours) (Candidates are allowed additional 15 minutes for only reading the paper. They must NOT start writing during this time.)

More information

Chemistry 30 Tips for Creating Graphs using Microsoft Excel

Chemistry 30 Tips for Creating Graphs using Microsoft Excel Chemistry 30 Tips for Creating Graphs using Microsoft Excel Graphing is an important skill to learn in the science classroom. Students should be encouraged to use spreadsheet programs to create graphs.

More information

CS2 Practical 1 CS2A 22/09/2004

CS2 Practical 1 CS2A 22/09/2004 CS2 Practical 1 Basic Java Programming The purpose of this practical is to re-enforce your Java programming abilities. The practical is based on material covered in CS1. It consists of ten simple programming

More information

CSCE 310 Assignment 3 Summer 2018

CSCE 310 Assignment 3 Summer 2018 Name(s) CSE Login Programming Language(s) Used Question Points Score 1 10 2 10 3 20 4 5 5 5 6 10 7 20 8 120 Total: 200 Graders Notes: Instructions Follow instructions carefully, failure to do so may result

More information

Adding and Editing Chapter and Adviser Information Logging in for the first time (Existing chapters)... 2

Adding and Editing Chapter and Adviser Information Logging in for the first time (Existing chapters)... 2 Chapter Advisers CONTENTS Adding and Editing Chapter and Adviser Information... 2 Logging in for the first time (Existing chapters)... 2 How to edit a chapter s information:... 2 How to view all chapter

More information

PowerSchool Handbook Federal Survey Card Report

PowerSchool Handbook Federal Survey Card Report Handbook Federal Survey Card Report Version 1.0 August 9, 2017 Copyright 2017, San Diego Unified School District. All rights reserved. This document may be reproduced internally by San Diego Unified School

More information

Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data

Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data The following table shows the raw data which you need to fit to an appropriate equation k (s -1 ) T (K) 0.00043 312.5 0.00103 318.47 0.0018

More information

PowerSchool Handbook Federal Survey Form Report

PowerSchool Handbook Federal Survey Form Report Handbook Federal Survey Form Report Version 2.1 August 22, 2018 Copyright 2018, San Diego Unified School District. All rights reserved. This document may be reproduced internally by San Diego Unified School

More information

icue Tests & Assessments for Teachers

icue Tests & Assessments for Teachers icue Tests & Assessments for Teachers December 2011 Table of Contents Table of Contents... 2 Introduction... 3 Logging In... 4 Tests and Assessments... 5 Tests and Assessments Home Page... 5 One-Click

More information

TJ IOI Practice Programming Round. Thomas Jefferson High School for Science and Technology

TJ IOI Practice Programming Round. Thomas Jefferson High School for Science and Technology TJ IOI 2017 Practice Programming Round Thomas Jefferson High School for Science and Technology Saturday, May 13, 2017 Instructions 1. The following section consists of 3 problems, which will not count

More information

Homework 2 Solutions

Homework 2 Solutions CS3510 Design & Analysis of Algorithms Section A Homework 2 Solutions Released: 3pm, Friday, Oct 13, 2017 This homework has a total of 4 problems on 3 pages. Solutions should be submitted to GradeScope

More information

Survey Design, Distribution & Analysis Software. professional quest. Whitepaper Extracting Data into Microsoft Excel

Survey Design, Distribution & Analysis Software. professional quest. Whitepaper Extracting Data into Microsoft Excel Survey Design, Distribution & Analysis Software professional quest Whitepaper Extracting Data into Microsoft Excel WHITEPAPER Extracting Scoring Data into Microsoft Excel INTRODUCTION... 1 KEY FEATURES

More information

Questions Total Points Score

Questions Total Points Score HKUST Department of Computer Science and Engineering # COMP3711H: Design and Analysis of Algorithms Fall 2016 Final Examination Date: Friday December 16, 2016 Time: 16:30-19:30 Venue: LG3 Multipurpose

More information

Graded Project. Excel 2016

Graded Project. Excel 2016 Excel 2016 PENN FOSTER, INC. 2016 INTRODUCTION CONTENTS INTRODUCTION 2 INSTRUCTIONS 2 SCORING GUIDELINES 6 SUBMITTING YOUR PROJECT 8 PAGE 1 GRADED PROJECT EXCEL 2016 INTRODUCTION This project requires

More information

PIVOT TABLES IN MICROSOFT EXCEL 2016

PIVOT TABLES IN MICROSOFT EXCEL 2016 PIVOT TABLES IN MICROSOFT EXCEL 2016 A pivot table is a powerful tool that allows you to take a long list of data and transform it into a more compact and readable table. In the process, the tool allows

More information

Graded Project. Microsoft Excel

Graded Project. Microsoft Excel Graded Project Microsoft Excel INTRODUCTION 1 PROJECT SCENARIO 1 CREATING THE WORKSHEET 2 GRAPHING YOUR RESULTS 4 INSPECTING YOUR COMPLETED FILE 6 PREPARING YOUR FILE FOR SUBMISSION 6 Contents iii Microsoft

More information

Australian Informatics Olympiad Thursday 23 August, Information Booklet

Australian Informatics Olympiad Thursday 23 August, Information Booklet Australian Informatics Olympiad Thursday 23 August, 2018 Information Booklet Information for Teachers and Students Contest Rules Why Did I Score Zero? Please read this booklet before the day of the contest

More information

User Manual Mail Merge

User Manual Mail Merge User Manual Mail Merge Version: 1.0 Mail Merge Date: 27-08-2013 How to print letters using Mail Merge You can use Mail Merge to create a series of documents, such as a standard letter that you want to

More information

User Guide. Creating and Varying Sessional Schedule (Course Convenors, School Admin/Secretaries)

User Guide. Creating and Varying Sessional Schedule (Course Convenors, School Admin/Secretaries) User Guide Creating and Varying Sessional Schedule (Course Convenors, School Admin/Secretaries) Brief Document Description Overview Sessional staff are required to submit their agreed Work Schedule for

More information

Creating & Using Tables

Creating & Using Tables Creating & Using Tables in Microsoft Word 2000 Created by and for: Internet and Technology Training Services Office of Information Technology What is a Table? A table is a structure that is divided into

More information

Interfacing with MS Office Conference 2017

Interfacing with MS Office Conference 2017 Conference 2017 Session Description: This session will detail procedures for importing/exporting data between AeriesSIS Web Version/AeriesSIS Client Version and other software packages, such as word processing

More information

2004 Stanford Local Programming Contest

2004 Stanford Local Programming Contest 2004 Stanford Local Programming Contest Saturday, October 9, 2003 Read these guidelines carefully! Rules 1. You may use resource materials such as books, manuals, and program listings. You may not search

More information

Student name: Teacher:

Student name: Teacher: Student name: ID: Teacher: Group: This paper is part of the 50% of your score. The score will be obtained in relation with the following statements: 1. It must be handwritten (writing clarity and spelling).

More information

Computer Science E-22 Practice Final Exam

Computer Science E-22 Practice Final Exam name Computer Science E-22 This exam consists of three parts. Part I has 10 multiple-choice questions that you must complete. Part II consists of 4 multi-part problems, of which you must complete 3, and

More information

Homework 1 Excel Basics

Homework 1 Excel Basics Homework 1 Excel Basics Excel is a software program that is used to organize information, perform calculations, and create visual displays of the information. When you start up Excel, you will see the

More information

Important Project Dates

Important Project Dates Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.035, Spring 2010 Handout Project Overview Tuesday, Feb 2 This is an overview of the course project and

More information

Graphical Analysis of Data using Microsoft Excel [2016 Version]

Graphical Analysis of Data using Microsoft Excel [2016 Version] Graphical Analysis of Data using Microsoft Excel [2016 Version] Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable physical parameters.

More information

Years after US Student to Teacher Ratio

Years after US Student to Teacher Ratio The goal of this assignment is to create a scatter plot of a set of data. You could do this with any two columns of data, but for demonstration purposes we ll work with the data in the table below. The

More information

Homework 5: Graphs, Minimum Spanning Trees, and Dijkstra Shortest-Path

Homework 5: Graphs, Minimum Spanning Trees, and Dijkstra Shortest-Path Homework 5: Graphs, Minimum Spanning Trees, and Dijkstra Shortest-Path 1. (4 points) A graph is Hamiltonian if there is a cycle in the graph visiting each vertex exactly once. Give an example of an Eulerian

More information

Interactive Game Design with Greenfoot YEAR 1 Greenfoot Single-player Interactive Game

Interactive Game Design with Greenfoot YEAR 1 Greenfoot Single-player Interactive Game MESA VIRTUAL COMPUTER SCIENCE COMPETITION CYBER RULES 2018 Interactive Game Design with Greenfoot YEAR 1 Greenfoot Single-player Interactive Game Level: Type of Contest: Composition of Team: Number of

More information

CSE 21 Summer 2017 Homework 4

CSE 21 Summer 2017 Homework 4 CSE 21 Summer 201 Homework Key Concepts Minimum Spanning Trees, Directed Acyclic Graphs, Topological Sorting, Single source shortest paths, Counting, Basic probability principles, Independence, Linearity

More information

CS2 Practical 6 CS2Bh 24 January 2005

CS2 Practical 6 CS2Bh 24 January 2005 CS2 Practical 6 Data Structures for Dictionaries This practical is based on material of the Algorithms and Data Structures thread. It has two parts: Part A, worth 40 marks, consists of four pen-and-paper

More information

Notes on Minimum Spanning Trees. Red Rule: Given a cycle containing no red edges, select a maximum uncolored edge on the cycle, and color it red.

Notes on Minimum Spanning Trees. Red Rule: Given a cycle containing no red edges, select a maximum uncolored edge on the cycle, and color it red. COS 521 Fall 2009 Notes on Minimum Spanning Trees 1. The Generic Greedy Algorithm The generic greedy algorithm finds a minimum spanning tree (MST) by an edge-coloring process. Initially all edges are uncolored.

More information

Lecture Transcript While and Do While Statements in C++

Lecture Transcript While and Do While Statements in C++ Lecture Transcript While and Do While Statements in C++ Hello and welcome back. In this lecture we are going to look at the while and do...while iteration statements in C++. Here is a quick recap of some

More information

CS150 - Assignment 5 Data For Everyone Due: Wednesday Oct. 16, at the beginning of class

CS150 - Assignment 5 Data For Everyone Due: Wednesday Oct. 16, at the beginning of class CS10 - Assignment Data For Everyone Due: Wednesday Oct. 16, at the beginning of class http://dilbert.com/fast/2008-0-08/ For this assignment we re going to implement some initial data analysis functions

More information

เพ มภาพตามเน อหาของแต ละบท. Microsoft Excel Benjamas Panyangam and Dr. Dussadee Praserttitipong. Adapted in English by Prakarn Unachak

เพ มภาพตามเน อหาของแต ละบท. Microsoft Excel Benjamas Panyangam and Dr. Dussadee Praserttitipong. Adapted in English by Prakarn Unachak เพ มภาพตามเน อหาของแต ละบท Microsoft Excel 2016 Benjamas Panyangam and Dr. Dussadee Praserttitipong Adapted in English by Prakarn Unachak 204100 IT AND MODERN LIFE 1. Excel Basics 2. Calculation and Formula

More information

2. Key the titles in cells A1 to D1, adjust to size 12, click on the bold button, and format with an underline.

2. Key the titles in cells A1 to D1, adjust to size 12, click on the bold button, and format with an underline. Excel Assignment 3 1. Create a new worksheet on Sheet 3. 2. Key the titles in cells A1 to D1, adjust to size 12, click on the bold button, and format with an underline. 3. Under Class in column D key Algebra

More information

MSU STEPS. Cooperating Teachers: Directions for Completing Student Teacher Evaluations

MSU STEPS. Cooperating Teachers: Directions for Completing Student Teacher Evaluations MSU STEPS Cooperating Teachers: Directions for Completing Student Teacher Evaluations STEPS Login Directions 1) Follow the address at the right to access STEPS https://steps.csuchico.edu/ 2) Select Missouri

More information

Credit Cards. Validating Credit Cards. Answers

Credit Cards. Validating Credit Cards. Answers Answers 7 8 9 10 11 12 TI-Nspire Coding Student 60 min Validating Credit Cards Imagine you are building a website that requires financial transactions to take place. Users need to enter their credit card

More information

Using Excel for Graphical Analysis of Data

Using Excel for Graphical Analysis of Data Using Excel for Graphical Analysis of Data Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable physical parameters. Graphs are

More information

Creating and Running a Report

Creating and Running a Report Creating and Running a Report Reports are similar to queries in that they retrieve data from one or more tables and display the records. Unlike queries, however, reports add formatting to the output including

More information

Minimum Spanning Trees

Minimum Spanning Trees Minimum Spanning Trees 5 7 1 6 7 6 8 2 3 4 12 1 9 5 7 1 6 7 6 8 2 3 4 12 This This graph graph is is not not connected. connected. 1 9 5 7 1 6 7 6 8 2 3 4 12 There There is is a a cycle cycle in in this

More information

(the bubble footer is automatically inserted into this space)

(the bubble footer is automatically inserted into this space) CS 2150 Final Exam, Fall 2016 Page 1 of 10 UVa userid: CS 2150 Final Exam Name You MUST write your e-mail ID on EACH page and bubble in your userid at the bottom of this first page. And put your name on

More information

Homework Assignment #3

Homework Assignment #3 CS 540-2: Introduction to Artificial Intelligence Homework Assignment #3 Assigned: Monday, February 20 Due: Saturday, March 4 Hand-In Instructions This assignment includes written problems and programming

More information

ACM INTERNATIONAL COLLEGIATE PROGRAMMING CONTEST. California State University, Sacramento s. Contestant s Guide

ACM INTERNATIONAL COLLEGIATE PROGRAMMING CONTEST. California State University, Sacramento s. Contestant s Guide ACM INTERNATIONAL COLLEGIATE PROGRAMMING CONTEST California State University, Sacramento s PC 2 Contestant s Guide This guide is intended to familiarize you with the process of submitting programs to Contest

More information

Chapter 23. Minimum Spanning Trees

Chapter 23. Minimum Spanning Trees Chapter 23. Minimum Spanning Trees We are given a connected, weighted, undirected graph G = (V,E;w), where each edge (u,v) E has a non-negative weight (often called length) w(u,v). The Minimum Spanning

More information

Problem 1. Which of the following is true of functions =100 +log and = + log? Problem 2. Which of the following is true of functions = 2 and =3?

Problem 1. Which of the following is true of functions =100 +log and = + log? Problem 2. Which of the following is true of functions = 2 and =3? Multiple-choice Problems: Problem 1. Which of the following is true of functions =100+log and =+log? a) = b) =Ω c) =Θ d) All of the above e) None of the above Problem 2. Which of the following is true

More information

aimsweb Data Import Instructions

aimsweb Data Import Instructions 1 aimsweb Data Import Instructions 0 Contents Overview of the Import Feature 1 Understanding the Import Templates 2 Column Heading Font Colors 2 Tabs in the Excel Template 3 Roster Template 3 User Template

More information

Exam 3 Practice Problems

Exam 3 Practice Problems Exam 3 Practice Problems HONOR CODE: You are allowed to work in groups on these problems, and also to talk to the TAs (the TAs have not seen these problems before and they do not know the solutions but

More information

Microsoft Word 2010 Intermediate

Microsoft Word 2010 Intermediate Microsoft Word 2010 Intermediate Agenda 1. Welcome, Introduction, Sign-in 2. Presentation 3. a. Advanced Formatting i. Review: Use Select All to change alignment, font style, spacing ii. Headers and Footers

More information

Lab 19: Excel Formatting, Using Conditional Formatting and Sorting Records

Lab 19: Excel Formatting, Using Conditional Formatting and Sorting Records Lab 19: Excel Formatting, Using Conditional Formatting and Sorting Records () CONTENTS 1 Lab Topic... 2 1.1 In-Lab... 2 1.1.1 In-Lab Materials... 2 1.1.2 In-Lab Instructions... 2 1.2 Out-Lab... 9 1.2.1

More information

Volunteer Management Information System. AVCC User Guide

Volunteer Management Information System. AVCC User Guide Volunteer Management Information System AVCC User Guide Contents 1.0 - Welcome to VMIS... 4 Glossary... 4 VMIS Registration... 5 Army Family Web Portal (AFWP) & AFWP Accounts... 5 Single Sign-On (SSO)...

More information

ICT & MATHS. Excel 2003 in Mathematics Teaching

ICT & MATHS. Excel 2003 in Mathematics Teaching ICT & MATHS Excel 2003 in Mathematics Teaching Published by The National Centre for Technology in Education in association with the Project Maths Development Team. Permission granted to reproduce for educational

More information

STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression

STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression analysis. Analysis of Variance: one way classification,

More information

Microsoft Excel Using Excel in the Science Classroom

Microsoft Excel Using Excel in the Science Classroom Microsoft Excel Using Excel in the Science Classroom OBJECTIVE Students will take data and use an Excel spreadsheet to manipulate the information. This will include creating graphs, manipulating data,

More information

How to Make Graphs in EXCEL

How to Make Graphs in EXCEL How to Make Graphs in EXCEL The following instructions are how you can make the graphs that you need to have in your project.the graphs in the project cannot be hand-written, but you do not have to use

More information

Technology Webinar. Integrating Spreadsheets into Core Curriculum. Part 1

Technology Webinar. Integrating Spreadsheets into Core Curriculum. Part 1 Technology Webinar Integrating Spreadsheets into Core Curriculum Part 1 Online Workshop Adobe Connect overview Core curriculum TEKS Spreadsheet basics Cell cell name Column and row Entering data into a

More information

Gradebook - Grades Tab Create Assignment

Gradebook - Grades Tab Create Assignment Gradebook - Grades Tab Create Assignment If no assignments have been created for the selected class in the selected term, the student names will not display. No Grades Found will be displayed where the

More information

Lesson 19 Organizing and Enhancing Worksheets

Lesson 19 Organizing and Enhancing Worksheets Organizing and Enhancing Worksheets Computer Literacy BASICS: A Comprehensive Guide to IC 3, 5 th Edition 1 Objectives Hide, show, and freeze columns and rows. Create, rename, and delete worksheets. Change

More information

Programming Assignment 3

Programming Assignment 3 UNIVERSITY OF NEBRASKA AT OMAHA Computer Science 4500/8506 Operating Systems Summer 2017 Programming Assignment 3 Introduction For this programming assignment you are to write a C, C++, Java, or Python

More information

CS 374 Fall 2014 Homework 2 Due Tuesday, September 16, 2014 at noon

CS 374 Fall 2014 Homework 2 Due Tuesday, September 16, 2014 at noon CS 374 Fall 2014 Homework 2 Due Tuesday, September 16, 2014 at noon Groups of up to three students may submit common solutions for each problem in this homework and in all future homeworks You are responsible

More information

CSCI 3300 Assignment 7

CSCI 3300 Assignment 7 Austin Peay State University, Tennessee Spring 2015 CSCI 3300: Introduction to Web Development Dr. Leong Lee CSCI 3300 Assignment 7 Total estimated time for this assignment: 12 hours When you see Richard

More information

Business Process Document Student Records: Posting Transfer Credit in Batch

Business Process Document Student Records: Posting Transfer Credit in Batch Department Responsibility/Role File Name Version Document Generation Date 11/21/2007 Date Modified 11/30/2007 Last Changed by Status SA 8.9 - Student Records, Transfer Credit Evaluation Posting Transfer

More information

CS2223: Algorithms D-Term, Assignment 5

CS2223: Algorithms D-Term, Assignment 5 CS2223: Algorithms D-Term, 2015 Assignment 5 Teams: To be done individually Due date: 05/01/2015 (1:50 PM) Note: no late submission of HW5 will be accepted; we will talk about the solution of HW5 during

More information

1 Format. 2 Topics Covered. 2.1 Minimal Spanning Trees. 2.2 Union Find. 2.3 Greedy. CS 124 Quiz 2 Review 3/25/18

1 Format. 2 Topics Covered. 2.1 Minimal Spanning Trees. 2.2 Union Find. 2.3 Greedy. CS 124 Quiz 2 Review 3/25/18 CS 124 Quiz 2 Review 3/25/18 1 Format You will have 83 minutes to complete the exam. The exam may have true/false questions, multiple choice, example/counterexample problems, run-this-algorithm problems,

More information

MATH 1MP3 Homework #4 Due: 11:59pm, Wednesday, March 6.

MATH 1MP3 Homework #4 Due: 11:59pm, Wednesday, March 6. MATH 1MP3 Homework #4 Due: 11:59pm, Wednesday, March 6. Important notes: To start the assignment, download the Jupyter notebook file assignment 4 template.ipynb found here: https://ms.mcmaster.ca/~matt/1mp3/homework/assignment_4_template.

More information

Problem assignment 1 Due: Tuesday, September 12, 2017

Problem assignment 1 Due: Tuesday, September 12, 2017 University of Pittsburgh CS 2710 Foundations of Artificial Intelligence Handout 2 Professor Milos Hauskrecht September 5, 2017 Problem assignment 1 Due: Tuesday, September 12, 2017 Please note that homeworks

More information

DO NOT RE-DISTRIBUTE THIS SOLUTION FILE

DO NOT RE-DISTRIBUTE THIS SOLUTION FILE Professor Kindred Math 104, Graph Theory Homework 2 Solutions February 7, 2013 Introduction to Graph Theory, West Section 1.2: 26, 38, 42 Section 1.3: 14, 18 Section 2.1: 26, 29, 30 DO NOT RE-DISTRIBUTE

More information

Excel 2. Module 2 Formulas & Functions

Excel 2. Module 2 Formulas & Functions Excel 2 Module 2 Formulas & Functions Revised 1/1/17 People s Resource Center Module Overview This module is part of the Excel 2 course which is for advancing your knowledge of Excel. During this lesson

More information

CSCI 3300 Assignment 7

CSCI 3300 Assignment 7 Austin Peay State University, Tennessee Fall 2016 CSCI 3300: Introduction to Web Development Dr. Leong Lee CSCI 3300 Assignment 7 Total estimated time for this assignment: 12 hours When you see Richard

More information

MANAGING SHOW DATA. This document introduces a method using Microsoft Excel and Microsoft Word to:

MANAGING SHOW DATA. This document introduces a method using Microsoft Excel and Microsoft Word to: MANAGING SHOW DATA This document introduces a method using Microsoft Excel and Microsoft Word to: Receive FADS Online Entry Form data Enter the entries data Schedule the show Create an Order of Go document

More information

PowerScheduler Course Tally Worksheet instructions.

PowerScheduler Course Tally Worksheet instructions. PowerScheduler Course Tally Worksheet instructions. This document will describe the process of copying course request information from PowerSchool into an Excel Course Tally Worksheet. Once the information

More information

MANAGING SHOW DATA This document introduces a method using Microsoft Excel and Microsoft Word to manage show data, including:

MANAGING SHOW DATA This document introduces a method using Microsoft Excel and Microsoft Word to manage show data, including: MANAGING SHOW DATA This document introduces a method using Microsoft Excel and Microsoft Word to manage show data, including: TOPIC PAGE FADS Online Entries Record Entry Data 3 Scheduling (includes calculating

More information

Data Management Project Using Software to Carry Out Data Analysis Tasks

Data Management Project Using Software to Carry Out Data Analysis Tasks Data Management Project Using Software to Carry Out Data Analysis Tasks This activity involves two parts: Part A deals with finding values for: Mean, Median, Mode, Range, Standard Deviation, Max and Min

More information

Business Process Procedures

Business Process Procedures Business Process Procedures 14.40 MICROSOFT EXCEL TIPS Overview These procedures document some helpful hints and tricks while using Microsoft Excel. Key Points This document will explore the following:

More information

DAY 7: EXCEL CHAPTER 5. Divya Ganesan February 5, 2013

DAY 7: EXCEL CHAPTER 5. Divya Ganesan February 5, 2013 DAY 7: EXCEL CHAPTER 5 Divya Ganesan divya.ganesan@mail.wvu.edu February 5, 2013 1 FREEZING ROWS AND COLUMNS Freezing keeps rows and columns visible during scrolling Click View tab in Ribbon Click on Freeze

More information

Computer Science E-119 Fall Problem Set 1. Due before lecture on Wednesday, September 26

Computer Science E-119 Fall Problem Set 1. Due before lecture on Wednesday, September 26 Due before lecture on Wednesday, September 26 Getting Started Before starting this assignment, make sure that you have completed Problem Set 0, which can be found on the assignments page of the course

More information

Super User EPIC Reference Guide

Super User EPIC Reference Guide Super User EPIC Reference Guide Electronic Provider Interactive Claims Online SHARS Billing http://www.tsbs.cc/ Username/Login name: Password: 1 LAST REVISED: 8/19/2014 11:35 AM Table of Contents TSBS

More information

OF VICTORIA EXAMINATIONS- DECEMBER 2010 CSC

OF VICTORIA EXAMINATIONS- DECEMBER 2010 CSC Name: ID Number: UNIVERSITY OF VICTORIA EXAMINATIONS- DECEMBER 2010 CSC 225 - Algorithms and Data Structures: I Section A01 (CRN 1089) Instructor: Wendy Myrvold Duration: 3 hours TO BE ANSWERED ON THE

More information

Elementary (Intermediate) Reporting in MyEducation BC

Elementary (Intermediate) Reporting in MyEducation BC Elementary (Intermediate) Reporting in MyEducation BC SCHOOL DISTRICT NO 40 (NEW WESTMINSTER) FEBRUARY 5 TH, 2018 Intermediate Report Cards MyEducation BC Before beginning: please ensure that you are using

More information

UPGRADE AND CONVERT INSTRUCTION Not available on the ipad. This step must be done on your computer and then transfer your files to ipad.

UPGRADE AND CONVERT INSTRUCTION Not available on the ipad. This step must be done on your computer and then transfer your files to ipad. UNIFORM MANAGEMENT ASSIGNMENT CENTER II Welcome to Uniform Management Assignment Center. UMAC II is compatible with Windows, Mac OSX, and ipad. Follow the step-by-step instructions to assign your students

More information

User Manual. perfectionlearning.com/technical-support

User Manual. perfectionlearning.com/technical-support User Manual perfectionlearning.com/technical-support 1 User Manual Accessing Math X... 3 Login... 3 Forgotten Password... 3 Navigation Menu... 4 Logout... 4 Admin... 5 Creating Classes and Students...

More information

CSCI 4210 Operating Systems CSCI 6140 Computer Operating Systems Project 2 (document version 1.4) CPU Scheduling Algorithms

CSCI 4210 Operating Systems CSCI 6140 Computer Operating Systems Project 2 (document version 1.4) CPU Scheduling Algorithms CSCI 4210 Operating Systems CSCI 6140 Computer Operating Systems Project 2 (document version 14) CPU Scheduling Algorithms Overview This project is due by 11:59:59 PM on Monday, October 5, 2015 Projects

More information

Math 485, Graph Theory: Homework #3

Math 485, Graph Theory: Homework #3 Math 485, Graph Theory: Homework #3 Stephen G Simpson Due Monday, October 26, 2009 The assignment consists of Exercises 2129, 2135, 2137, 2218, 238, 2310, 2313, 2314, 2315 in the West textbook, plus the

More information

2010 Canadian Computing Competition: Senior Division. Sponsor:

2010 Canadian Computing Competition: Senior Division. Sponsor: 2010 Canadian Computing Competition: Senior Division Sponsor: 1 Canadian Computing Competition Student Instructions for the Senior Problems 1. You may only compete in one competition. If you wish to write

More information

311 Predictions on Kaggle Austin Lee. Project Description

311 Predictions on Kaggle Austin Lee. Project Description 311 Predictions on Kaggle Austin Lee Project Description This project is an entry into the SeeClickFix contest on Kaggle. SeeClickFix is a system for reporting local civic issues on Open311. Each issue

More information

This homework has an opportunity for substantial extra credit, which is described at the end of this document.

This homework has an opportunity for substantial extra credit, which is described at the end of this document. CS 2316 Pair Homework Box Packer Due: Tuesday, June 17th, before 11:55 PM Out of 100 points Files to submit: 1. boxpacker.py For Help: - TA Helpdesk Schedule posted on class website. - Email TA's or use

More information

Creating and Using an Excel Table

Creating and Using an Excel Table Creating and Using an Excel Table Overview of Excel 2007 tables In earlier Excel versions, the organization of data in tables was referred to as an Excel database or list. An Excel table is not to be confused

More information

MS Office for Engineers

MS Office for Engineers MS Office for Engineers Lesson 4 Excel 2 Pre-reqs/Technical Skills Basic knowledge of Excel Completion of Excel 1 tutorial Basic computer use Expectations Read lesson material Implement steps in software

More information

Campus. Create Data Labels

Campus. Create Data Labels Campus Create Data Labels Macintosh computer users: Follow the instructions in this booklet to create labels in MS Word with the data you export from Campus SPPS Reports Attendance Labels. PC/Windows Users:

More information

download instant at

download instant at CHAPTER 1 - LAB SESSION INTRODUCTION TO EXCEL INTRODUCTION: This lab session is designed to introduce you to the statistical aspects of Microsoft Excel. During this session you will learn how to enter

More information

Using Microsoft Excel for Recording and Analyzing Data Noah Segall

Using Microsoft Excel for Recording and Analyzing Data Noah Segall Using Microsoft Excel for Recording and Analyzing Data Noah Segall The standard computer program used for record keeping of strength and conditioning is Microsoft s Excel. Its simple spreadsheets make

More information

1. Access the Journal Entry Form via University Forms and Documents.

1. Access the Journal Entry Form via University Forms and Documents. Creating and Submitting a Journal Entry Purpose: Journal Entries may be completed to make corrections to posted expenses to include payroll, p-card, expense reports, purchase requisitions, and local funding

More information

ICS 161 Algorithms Winter 1998 Final Exam. 1: out of 15. 2: out of 15. 3: out of 20. 4: out of 15. 5: out of 20. 6: out of 15.

ICS 161 Algorithms Winter 1998 Final Exam. 1: out of 15. 2: out of 15. 3: out of 20. 4: out of 15. 5: out of 20. 6: out of 15. ICS 161 Algorithms Winter 1998 Final Exam Name: ID: 1: out of 15 2: out of 15 3: out of 20 4: out of 15 5: out of 20 6: out of 15 total: out of 100 1. Solve the following recurrences. (Just give the solutions;

More information

CSCI 4210 Operating Systems CSCI 6140 Computer Operating Systems Project 1 (document version 1.3) Process Simulation Framework

CSCI 4210 Operating Systems CSCI 6140 Computer Operating Systems Project 1 (document version 1.3) Process Simulation Framework CSCI 4210 Operating Systems CSCI 6140 Computer Operating Systems Project 1 (document version 1.3) Process Simulation Framework Overview This project is due by 11:59:59 PM on Thursday, October 20, 2016.

More information

Tutorial 9. Review. Data Tables and Scenario Management. Data Validation. Protecting Worksheet. Range Names. Macros

Tutorial 9. Review. Data Tables and Scenario Management. Data Validation. Protecting Worksheet. Range Names. Macros Tutorial 9 Data Tables and Scenario Management Review Data Validation Protecting Worksheet Range Names Macros 1 Examine cost-volume-profit relationships Suppose you were the owner of a water store. An

More information

Admissions & Intro to Report Editing Participants Guide

Admissions & Intro to Report Editing Participants Guide IBM Cognos Analytics Admissions & Intro to Report Editing Participants Guide Welcome to Cognos - Admissions and Introduction to Report Editing! Today s objectives include: Gain a Basic Understanding of

More information

CSCI 3300 Assignment 3

CSCI 3300 Assignment 3 Austin Peay State University, Tennessee Fall 2016 CSCI 3300: Introduction to Web Development Dr. Leong Lee CSCI 3300 Assignment 3 Total estimated time for this assignment: 10 hours When you see Richard

More information

Math 2524: Activity 1 (Using Excel) Fall 2002

Math 2524: Activity 1 (Using Excel) Fall 2002 Math 2524: Activity 1 (Using Excel) Fall 22 Often in a problem situation you will be presented with discrete data rather than a function that gives you the resultant data. You will use Microsoft Excel

More information

CSCI 3300 Assignment 6

CSCI 3300 Assignment 6 Austin Peay State University, Tennessee Spring 2016 CSCI 3300: Introduction to Web Development Dr. Leong Lee CSCI 3300 Assignment 6 Total estimated time for this assignment: 9 hours When you see Richard

More information