CSCI 1100 Computer Science 1 Homework 1 Calculations and Functions

Size: px
Start display at page:

Download "CSCI 1100 Computer Science 1 Homework 1 Calculations and Functions"

Transcription

1 CSCI 1100 Computer Science 1 Homework 1 Calculations and Functions Overview This homework is a combination of what was supposed to be Homeworks 1 and 2, and is worth 70 points toward your overall homework grade. There are three distinct parts to the assignment. The initial part explores how to submit homeworks for grading, including the types of error messages to expect. The other two parts practice material on Python as a calculator from Lecture 2 and the use of functions, as discussed in Lecture 3. All parts of this homework must be submitted on-line using the submission server by 11:59 pm on Wednesday, September 12 in order to receive full credit. Remember, time is measured according to the submission server s clock, not yours, and anything that is a minute or more late is considered a day late. All submissions for the homework will be going through a Department of Computer Science web server. You will log into this server, upload your Python programs, and view the results. Later in the semester we may automatically grade part of your homework, but not now while we are just getting started. You will either soon be receiving or have already received an from root@cs.rpi.edu informing you that you have an account on the RPI CS department machines where you can submit homework assignments. This will include a password. You are welcome to use this password throughout the semester (it is pretty secure, but hard to remember), but you are encouraged to change it. The contains instructions on how to use ssh to log onto a department server and make the change. The also has a pointer to the website with more detailed instructions. Note that you are only using this account for homework submissions, and it will disappear at the end of the semester. If you do not receive an from labstaff@cs.rpi.edu by Thursday night (9/6), please send to this address. Once you have established the account, you are ready to submit homework solutions. However, you can work on Part 1 and Part 2 of the homework even before you work on the submission server. Also, there will be time available in lab next week to help students with submission issues. Part 0: Using the Submission Server Start by creating a folder for CS 1 homework inside your dropbox and subfolder for HW 1. From the course Piazza site under Homework 1 on the Resources page, download the file part0.py. This simple Python program to compute the surface area of a rectangular solid (the sum of the areas of the six rectangular faces) contains both syntax errors (two) and a semantic error. Before fixing these errors we want you to start by just submitting the incorrect program to the on-line server to see what happens. By the end of this part of the homework, you will fix both the syntax errors and the semantic error. Please follow these steps: 1. Look at part0.py in the Wing IDE (on your virtual machine) and, without making any changes, attempt to run it (click the green triangle/arrow). It will complain of syntax error(s). Do NOT fix these errors yet. Instead, submit this to the homework server to see what happens.

2 2. To do this, using a web browser log onto the site You will see three rows of radio buttons in the table for HW 1, one for each part of the homework. Click on the button for Part 0, then click on the Choose File button, browse your file system to part0.py, and click on Send File. The homework server will attempt to run this program using Python. It will fail, of course, because of the syntax errors, and the server will generate output that looks like this This is what the server shows you when your program has syntax errors. Remember, Python only shows you the first error! 3. Please find and fix the two syntax errors, making sure that the program runs on your virtual machine using the Wing IDE. It would be best if you do not fix the semantic error yet. 2

3 4. Submit the syntactically-correct version of part0.py to the homework server, again using the Part 0 button. (This illustrates the fact that you can resubmit the same homework multiple times we will grade your last submission!) The server will now be able to run your program. It will display your results side-by-side with the expected results, and you will be able to see any discrepancies. Here is an example 5. Finally, fix the semantic error in the program and resubmit, doing so until your answer matches ours. Once you do so, you will earn the full 10 points for part 0. Congratulations! Part 1 This part is worth 30 points. Before getting started, practice writing Python expressions and assignment statements using the Python interpreter! If nothing else, repeat some of the problems we worked on during lecture to see if you can solve them yourself... For this part of the homework you are going to write one Python (.py) file that outputs the results of several calculations. Your code should use variables, expressions, assignment statements and print statements. You may write a function to make your code shorter, as discussed in Lecture 3, but while it is desirable it is not necessary in order to earn full credit. To make your code easier to read, your.py file should have blank lines separating the groups of calculations. The distances (in miles) of the planets to the sun and the diameters of the five planets closest to the sun are as follows: Planet Diameter Distance Mercury 3,032 35,983,610 Venus 7,531 67,232,360 Earth 7,926 92,957,100 Mars 4, ,635,300 Jupiter 88, ,632,000 Write Python code that outputs the name Mercury and then outputs on each successive line its distance to the sun relative to the distance of the earth from the sun, its diameter relative to the earth s diameter, 3

4 the time, in minutes, that light takes to travel from the sun to Mercury (use 186,000 miles per second as the speed of light), and Mercury s volume relative to that of the earth. When you run the program (in the Wing IDE) the output should look something like Mercury relative distance relative diameter light time (minutes) relative volume Repeat the calculations for Venus, Mars and Jupiter, outputting a blank line after the output for each planet. At this point, you can introduce a function if you wish to perform the calculations for a single planet and then call this function once for each of the four planets. The final output from your program should be the average distance of the five planets from the sun and the average diameter of the planets. You may use integer arithmetic to complete these calculations. The complete output from your program should look very close to Mercury relative distance relative diameter light time (minutes) relative volume Venus relative distance relative diameter light time (minutes) relative volume Mars relative distance relative diameter light time (minutes) relative volume Jupiter relative distance relative diameter light time (minutes) relative volume Average planetary distance in miles is Average planetary diameter in miles is In order to complete Part 1 of the HW 1, please submit the file (e.g. part1.py) containing your solution to the submission server. Be sure to submit for Part 1, which is the second submission line on the website. Do not submit anything other than your single Python file! 4

5 Final note: You could write a Python program that simply prints the output provided above. It would start with something like print "Mercury" print " relative distance " print " relative diameter " print " light time (minutes) " print " relative volume " print "" etc. If you do this, you will earn 0 points for the assignment. You must let Python do all of the calculations. To illustrate, if we suddenly realized that we had mistyped Earth s distance from the sun, you should have to change only one line of your code and the rest of your program should work correctly! The same is true of Part 2. Part 2 This part is worth 30 points. Before getting started, practice writing Python functions using the Python interpreter! If nothing else, repeat some of the problems we worked on during lecture to see if you can solve them yourself... The (fictional) Acme computing and social networks company has large data centers distributed throughout the world and these centers consume a large amount of energy each year. Environmental organizations would like Acme to reduce its carbon footprint, and pay in carbon credits for the pollution it produces. Each data center is formed by a sequence of standard shipping containers, each containing 1,160 servers, and each requiring about 250 kilowatts of energy. A common measurement of energy usage is to multiple the kilowatts times a unit of time, typically an hour, yielding the kilowatt-hour. As a sanity check to make this clear, these numbers imply that a container uses million kilowatt-hours per year. To give a sense of the scale of this number, an efficient refrigerator uses about 500 kilowatt-hours of energy per year. Each data center uses about 200 containers, and Acme has about 15 data centers. The unnamed environmental organization wants Acme to pay $12 per ton of carbon used, and Acme consumes about tons of carbon per kilowatt-hour. Using this information, write a Python program to calculate and output how much enery Acme uses for the year 2012 and how much Acme must pay in carbon credits. Assuming Acme adds 4 containers to each center in each year and adds 2 data centers in 2013, 5 in 2014, and 3 in 2015, how much must Acme pay in carbon credits each year? The central part of your program is that you must write a function that takes the number of centers that Acme has and the number of containers per center and calculates the amount of money Acme must pay. The output from your program should be In 2012 Acme should pay $ In 2013 Acme should pay $ In 2014 Acme should pay $ In 2015 Acme should pay $

6 Please submit your program using the submission server, being sure to select Part 2, which is the third row of submissions. Do not submit anything other than your single Python file! A Note on Grading Most of the points for this assignment will be given just for getting the calculations and output correct. As we progress through the semester, however, the quality and clarity of your programs will become increasingly important. To practice this, please try to choose variable names that have meaning in regards to the calculations your code is performing and make your code as readable as possible by introducing blank lines between important sections of code. 6

Customizing your Blackboard Course

Customizing your Blackboard Course Customizing your Blackboard Course Changing the visual appearance Menu Buttons Changing your course buttons can add a splash of color to your course and make it more visually appealing to your students.

More information

Using the CCNY Server Space with Secure Shell 3.0 for Windows Created by Doris Grasserbauer dgrasserbauer@ccny.cuny.edu

Using the CCNY Server Space with Secure Shell 3.0 for Windows Created by Doris Grasserbauer dgrasserbauer@ccny.cuny.edu Using the CCNY Server Space with Secure Shell 3.0 for Windows Created by Doris Grasserbauer dgrasserbauer@ccny.cuny.edu Topics: 1. Logging on to the server space 2. How to create a new folder on the server

More information

www.nuvox.net, enter the administrator user name and password for that domain.

www.nuvox.net, enter the administrator user name and password for that domain. Page 1 of 7 Cute_FTP Server Names and Authentication Before connecting to an FTP site you need three pieces of information: the server name or the site you are connecting to and a user name and password.

More information

Made Easy Windows Sync App Tutorial

Made Easy Windows Sync App Tutorial Investor Storage Newsletter Made Easy Windows Sync App Tutorial The aim of this tutorial is simply to demonstrate how to set up Synchronization using the Storage Made Easy Sync App that is installed as

More information

Proofpoint provides the capability for external users to send secure/encrypted emails to EBS-RMSCO employees.

Proofpoint provides the capability for external users to send secure/encrypted emails to EBS-RMSCO employees. Proofpoint provides the capability for external users to send secure/encrypted emails to EBS-RMSCO employees. To create a new email message to be sent securely to an EBS-RMSCO employee: 1. Click on the

More information

Using Windows Task Scheduler instead of the Backup Express Scheduler

Using Windows Task Scheduler instead of the Backup Express Scheduler Using Windows Task Scheduler instead of the Backup Express Scheduler This document contains a step by step guide to using the Windows Task Scheduler instead of the Backup Express Scheduler. Backup Express

More information

Outlook Data File navigate to the PST file that you want to open, select it and choose OK. The file will now appear as a folder in Outlook.

Outlook Data File navigate to the PST file that you want to open, select it and choose OK. The file will now appear as a folder in Outlook. Migrate Archived Outlook Items Outlook includes archiving functionality that is used to free up space on the mail server by moving older items from the mail server to PST files stored on your computer

More information

Student Quick Start Guide

Student Quick Start Guide Student Quick Start Guide Welcome to Top Hat! This guide will help you register a student account and understand how to use Top Hat for your class. Creating an Account 1. If you don t already have a previous

More information

Paper PO03. A Case of Online Data Processing and Statistical Analysis via SAS/IntrNet. Sijian Zhang University of Alabama at Birmingham

Paper PO03. A Case of Online Data Processing and Statistical Analysis via SAS/IntrNet. Sijian Zhang University of Alabama at Birmingham Paper PO03 A Case of Online Data Processing and Statistical Analysis via SAS/IntrNet Sijian Zhang University of Alabama at Birmingham BACKGROUND It is common to see that statisticians at the statistical

More information

User Guide for the Junior Lab Scheduling Software

User Guide for the Junior Lab Scheduling Software User Guide for the Junior Lab Scheduling Software Introduction................................................................. 1 Reserving Time on Experiments.............................................

More information

Easy Casino Profits. Congratulations!!

Easy Casino Profits. Congratulations!! Easy Casino Profits The Easy Way To Beat The Online Casinos Everytime! www.easycasinoprofits.com Disclaimer The authors of this ebook do not promote illegal, underage gambling or gambling to those living

More information

SNAMP Data Server Tutorial

SNAMP Data Server Tutorial SNAMP Data Server Tutorial The server hosted by UC Merced is a data server that is used to share data among the science teams and with the public. To ensure the proper data disclosure, a sharing level

More information

Teaching with Fanuc Certified Education CNC Training On-Line Content

Teaching with Fanuc Certified Education CNC Training On-Line Content Teaching with Fanuc Certified Education CNC Training On-Line Content Thank you for deciding to use our on-line content to help you teach your CNC classes. We hope you find that it streamlines your teaching

More information

RGILink User s Guide

RGILink User s Guide RGILink User s Guide 1 Table of Contents 1. Introduction... 3 1.1 Introduction to RGILink... 3 2. Getting Started with RGILink... 3 2.1 New User Registration... 3 2.2 Login... 3 2.3 Forgot password...

More information

E-Learning User Manual

E-Learning User Manual E-Learning User Manual 1 University of Puthisastra Lecturer Features Main Page 1 st Main Page Needs a proper login. 1. Select your preferred language from the list box (English or Khmer) 2. To go back

More information

Factoring Whole Numbers

Factoring Whole Numbers 2.2 Factoring Whole Numbers 2.2 OBJECTIVES 1. Find the factors of a whole number 2. Find the prime factorization for any number 3. Find the greatest common factor (GCF) of two numbers 4. Find the GCF for

More information

CEFNS Web Hosting a Guide for CS212

CEFNS Web Hosting a Guide for CS212 CEFNS Web Hosting a Guide for CS212 INTRODUCTION: TOOLS: In CS212, you will be learning the basics of web development. Therefore, you want to keep your tools to a minimum so that you understand how things

More information

Activity 1 Simple Searches

Activity 1 Simple Searches Activity Simple Searches Load a copy of ViewPoint and open the Solar System datafile. Look through the database sheets, using the Preview Sheet and Next Sheet buttons and answer the following questions:

More information

Journey to other celestial objects. learning outcomes

Journey to other celestial objects. learning outcomes The eight planets Journey to other celestial objects C 44 time 80 minutes. learning outcomes To: know which planets have moons know which planets have rings know the colours of the different planets know

More information

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 Rocksalt International Pty Ltd support@vpasp.com www.vpasp.com Table of Contents 1 INTRODUCTION... 3 2 FEATURES... 4 3 WHAT

More information

How to set up your Secure Email in Outlook 2010*

How to set up your Secure Email in Outlook 2010* How to set up your Secure Email in Outlook 2010* This guide is for hosting clients who are hosting their email with us. If you are using a third party email, you should not use these instructions. 1. Open

More information

CS5331 Web Security - Assignment 0

CS5331 Web Security - Assignment 0 CS5331 Web Security - Assignment 0 Due : 25 Jan 2016 1 Background The objective of this assignment is to give you a hands-on experience of setting up a virtual machine. This is an INDIVIDUAL assignment

More information

Accurate speed test results are difficult to obtain. Below are a few pointers for users on the LGfL 2.0 network.

Accurate speed test results are difficult to obtain. Below are a few pointers for users on the LGfL 2.0 network. Download speeds the dilemma of speed testing Accurate speed test results are difficult to obtain. Below are a few pointers for users on the LGfL 2.0 network. Your school s connection a few examples Normally

More information

Astronomy 101: On-Line Reading Quizzes

Astronomy 101: On-Line Reading Quizzes Astronomy 101: On-Line Reading Quizzes San Diego State University, Prof. Leonard Note that the website at which the weekly reading quizzes will be taken will not be available for registration until Thursday,

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

CS 170 Java Programming 1. Welcome to CS 170. All about CS 170 The CS 170 Online Materials Java Mechanics: Your First Program

CS 170 Java Programming 1. Welcome to CS 170. All about CS 170 The CS 170 Online Materials Java Mechanics: Your First Program CS 170 Java Programming 1 Welcome to CS 170 All about CS 170 The CS 170 Online Materials Java Mechanics: Your First Program What s the Plan? Topic I: What s CS 170 All About? Contact information Topics,

More information

PROCEDURE FOR USING ONLINE REPORTING

PROCEDURE FOR USING ONLINE REPORTING _ PROCEDURE FOR USING ONLINE REPORTING SYSTEM FOR NAV RETURNS November 2012 1 Table of Contents 1. Homepage Login... 3 2. Uploading NAV files.... 8 2.1 Load a NAV Return File... 8 2.2 View /Edit Returns...

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

Quick start guide to using Attendant

Quick start guide to using Attendant Quick start guide to using Attendant Attendant is an easy way to create and take registers for the classes you teach. These can be lectures, tutorials, studios, labs or any class that you would like to

More information

ESMO Online event registration instructions Register someone else or few participants (1-9 persons)

ESMO Online event registration instructions Register someone else or few participants (1-9 persons) ESMO Online event registration instructions Register someone else or few participants (1-9 persons) INDEX Registration requirements... Page 2 1. Account with ESMO... Page 3 2. Login into your personal

More information

How to use FTP Commander

How to use FTP Commander FTP (File Transfer Protocol) software can be used to upload files and complete folders to your web server. On the web, there are a number of free FTP programs that can be downloaded and installed onto

More information

Signing up Signing in Finding a course Starting a course Completing a course Submitting your work Checking your grades Certificates

Signing up Signing in Finding a course Starting a course Completing a course Submitting your work Checking your grades Certificates LONDON CACTUS COLLEGE Page 1 This document is to visually assist students/ learners with using our online learning platform, Moodle. http://www.mycccollege.org/ This document covers the following topics

More information

Your Archiving Service

Your Archiving Service It s as simple as 1, 2, 3 This email archiving setup guide provides you with easy to follow instructions on how to setup your new archiving service as well as how to create archiving users and assign archiving

More information

User Guide for Patients

User Guide for Patients User Guide for Patients Creating a My Health Online Account Before you can create a My Health Online account you must register for this service at your GP practice. Your practice will provide you with

More information

BidCentral Online Bidding for Subcontractors (BOBS) Trade Contractor User Guide

BidCentral Online Bidding for Subcontractors (BOBS) Trade Contractor User Guide BidCentral Online Bidding for Subcontractors (BOBS) Trade Contractor User Guide Table of Contents 1.) Getting Started... 3 2.) Submit Bid... 3 2.1.) Select Form... 4 2.2.) Bidder Information... 5 2.3.)

More information

Page 18. Using Software To Make More Money With Surveys. Visit us on the web at: www.takesurveysforcash.com

Page 18. Using Software To Make More Money With Surveys. Visit us on the web at: www.takesurveysforcash.com Page 18 Page 1 Using Software To Make More Money With Surveys by Jason White Page 2 Introduction So you re off and running with making money by taking surveys online, good for you! The problem, as you

More information

Information Systems Track-It! Helpdesk System Introduction

Information Systems Track-It! Helpdesk System Introduction Information Systems Track-It! Helpdesk System Introduction To report technology questions, requests, or problems to the Information Systems Department, you should submit a Track-It work order. Step One

More information

Leaders in Healthcare Poster Guidelines, Liverpool, 2016

Leaders in Healthcare Poster Guidelines, Liverpool, 2016 Leaders in Healthcare Poster Guidelines, Liverpool, 2016 Congratulations on being accepted. Your work will be on show to around 1,300 delegates from across the nation over the course of 3 days. Please

More information

How to use the Online Module Enrolment Application

How to use the Online Module Enrolment Application How to use the Online Module Enrolment Application Introduction This guide will take you through how to select your preferred optional modules for the new academic year using Online Module Enrolment. Note:

More information

Aspen Gradebook - Teacher

Aspen Gradebook - Teacher Aspen Gradebook - Teacher Gradebook Setup You can use the teacher Gradebook in Staff View to enter and track assignments, and grades in your course sections. To begin using the gradebook you ll need to

More information

Helping you through the process

Helping you through the process Helping you through the process Accommodation Acceptance Guide 2015/2016 This is a guide to help you accept your offer of accommodation, once it is made. Things to do Check your accommodation account at

More information

Using MyMathLab. Features

Using MyMathLab. Features Using MyMathLab Features You must already be registered or enrolled in a current MyMathLab class in order to use MyMathLab. If you are not registered or enrolled in a new class, see another PowerPoint

More information

Mass Announcement Service Operation

Mass Announcement Service Operation Mass Announcement Service Operation The Mass Announcement Service enables you to automate calling a typically large number of contacts, and playing them a pre-recorded announcement. For example, a weather

More information

Questions and Answers for using MyCareCouncil

Questions and Answers for using MyCareCouncil Questions and Answers for using MyCareCouncil Below you will find questions and answers about using MyCareCouncil. The questions have been grouped by topic. Please scroll to the appropriate topic. Topic

More information

Bootstrap guide for the File Station

Bootstrap guide for the File Station Bootstrap guide for the File Station Introduction Through the File Server it is possible to store files and create automated backups on a reliable, redundant storage system. NOTE: this guide considers

More information

School account creation guide

School account creation guide School account creation guide Contents Your welcome email Page 2 The CSV file Page 3 Uploading the CSV and creating the accounts Page 5 Retrieving staff usernames and passwords Page 8 Retrieving student

More information

Ashgate FTP Web Login

Ashgate FTP Web Login Ashgate FTP Web Login You can access our FTP site very simply via our web portal or by downloading a dedicated program (see pg. 6 below). 1. In your favourite web browser go to www.ashgatepublishing.co.uk.

More information

ebook Basics: An Introduction to Overdrive and Hoopla Created by Elayna Turner

ebook Basics: An Introduction to Overdrive and Hoopla Created by Elayna Turner ebook Basics: An Introduction to Overdrive and Hoopla Created by Elayna Turner Before You Start Downloading Before we start downloading anything, it is important to note that sometimes you may need to

More information

GENERAL FILE TRANSFER GUIDELINES

GENERAL FILE TRANSFER GUIDELINES GENERAL FILE TRANSFER GUIDELINES EMSTARS extracts (the XML files containing patient care records) will be transferred to the FDOH Secure Server at intervals defined in the EMSTARS Business Rules (available

More information

Skål International Skål International Event Registration System (SIERS)

Skål International Skål International Event Registration System (SIERS) Skål International Skål International Event Registration System (SIERS) SIERS Club Administrators Guide Tim Waterhouse SIERS Project Manager 28 th February 2015 INTRODUCTION Welcome to the Skål international

More information

User Guide. Provider Portal

User Guide. Provider Portal User Guide Provider Portal Table of Contents Getting Started 2 Website URL 3 Website Layout/Menu Links Basics 4 Alerts/Selecting IPA 5 Search Methods 6 Indicator Icons Using the Provider Portal 7 Provider

More information

EDI Insight Manual. Training Manual. Presented By

EDI Insight Manual. Training Manual. Presented By EDI Insight Manual Training Manual Presented By EDI Insight Manual 2 Step 1 Upload File: Select the file to transmit on the eceno claims transmission screen and click connect. Login to EDI Insight, when

More information

Network License File. Program CD Workstation

Network License File. Program CD Workstation Setting up Network Licensing for Visual Water Designer These directions will provide a detailed description of how to set up and run the network license version of Visual Water Designer. A network license

More information

HW 07: Ch 12 Investigating Windows

HW 07: Ch 12 Investigating Windows 1 of 7 5/15/2015 2:40 AM HW 07: Ch 12 Investigating Windows Click 'check' on each question or your score will not be recorded. resources: windows special folders ntfs.com Windows cmdline ref how ntfs works

More information

Table of Contents. Access this document and other HRIS information at http://ai.catholic.net.au/hris Page 1

Table of Contents. Access this document and other HRIS information at http://ai.catholic.net.au/hris Page 1 Table of Contents 1. Introduction... 2 2. General... 3 2.1 What is a Secret Question and Answer... 3 2.2 Set up Secret Question and Answer... 4 2.3 General Questions... 6 3. Home Portal... 7 3.1 Mail Inbox...

More information

ITP 101 Project 3 - Dreamweaver

ITP 101 Project 3 - Dreamweaver ITP 101 Project 3 - Dreamweaver Project Objectives You will also learn how to make a website outlining your company s products, location, and contact info. Project Details USC provides its students with

More information

Angel Learning Management System Introductory Tutorial for Students

Angel Learning Management System Introductory Tutorial for Students Angel Learning Management System Introductory Tutorial for Students Welcome! Angel is the Learning Management System that you ll be using to access your classes. You ll use it to view lessons, submit assignments,

More information

Using the SB Partners Client Web Portal

Using the SB Partners Client Web Portal Using the SB Partners Client Web Portal Note: These are instructions for clients of SB Partners LLP. Table of Contents Overview... 2 Receiving your username and password... 3 Logging on... 4 Navigating

More information

Online Test Monitor Certification Course 2014-2015 Transcript

Online Test Monitor Certification Course 2014-2015 Transcript Online Test Monitor Certification Course 2014-2015 Transcript Slide # Slide 1 Slide 2 Slide 3 Slide 4 Slide 5 Slide 6 Slide 7 Minnesota Assessments Test Security Training for Districts and Schools Welcome

More information

1.0 Procedure for offline filing of e-return(formiii)

1.0 Procedure for offline filing of e-return(formiii) Commercial Tax Department Government of Uttarakhand e-return of FormIII : Instruction manual for offline filing 1.0 Procedure for offline filing of e-return(formiii) Step-1: Download MS-Excel sheet of

More information

Note that this tutorial uses ECM templates as an example, but the process is the same for all WC templates as well.

Note that this tutorial uses ECM templates as an example, but the process is the same for all WC templates as well. USING VIRTUAL EMS TO MAKE A ROOM REQUEST: Note that this tutorial uses ECM templates as an example, but the process is the same for all WC templates as well. Point your web browser to (https://www.calendar.rochester.edu),

More information

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical These instructions describe the process for configuring a SAS Metadata server to work with JMP Clinical. Before You Configure

More information

Create AKINDI Courses In AKINDI, create an AKINDI course for each section you teach. STUDENTS TAKE TEST VIEW RESULTS AND ADDRESS EXCEPTIONS

Create AKINDI Courses In AKINDI, create an AKINDI course for each section you teach. STUDENTS TAKE TEST VIEW RESULTS AND ADDRESS EXCEPTIONS USC Marshall School of Business Customer Technology Services AKINDI Test Forms Creating and Grading Test Forms You can use AKINDI to create multiple choice test forms that can be printed out for student

More information

Transferring data safely

Transferring data safely Transferring data safely Secure drop-box users guide INTRODUCTION You ve been registered to make use of a secure web-based drop-box in order to safely exchange data across the Internet between yourself

More information

Portrait Importer Utility

Portrait Importer Utility Portrait Importer Utility User Guide 1 Table of Contents 1 Introduction...3 1.1 Welcome...3 1.2 About this Document...3 2 Uploading Student Portraits Using the Pixami Portrait Importer Utility...3 2.1

More information

Footprints Customer Interface Guide

Footprints Customer Interface Guide Footprints Customer Interface Guide Introduction Each support group in MIS has its own Service Desk within the Footprints System, and each service desk has its own colors and banner. Within each service

More information

VCL Access. VCL provides access to Linux and Windows 7 Virtual Machines. Users will only see those images that they are authorized to access.

VCL Access. VCL provides access to Linux and Windows 7 Virtual Machines. Users will only see those images that they are authorized to access. What is VCL? VCL (Virtual Computer Lab) is a service running on servers in IIT s datacenter that enables users to schedule and connect to virtual desktops running specific academic software applications

More information

Quick Reference Guide Course Homepage Management (Faculty)

Quick Reference Guide Course Homepage Management (Faculty) Quick Reference Guide Course Homepage Management (Faculty) Table of Contents View Faculty Schedule... 3 Print Faculty Schedule... 3 Create Course Homepage... 3 Add a New Activity to the Course Homepage...

More information

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

More information

Client Administration in the Cambridge LMS. CLMS release version 10

Client Administration in the Cambridge LMS. CLMS release version 10 Client Administration in the Cambridge LMS CLMS release version 10 Cambridge LMS 2013 Table of Contents Overview 3 How to Manage your Classes 3 Getting started 3 Creating a new Group 5 Editing a Group

More information

Managing Expense Claims

Managing Expense Claims Managing Expense Claims Page 1 of 14 Version 1.2, July 2012 Introduction Functionality provided by People Inc. Employee Intranet enables you to process expense claims electronically. This is done via the

More information

Information Systems Track-It! Helpdesk System Introduction

Information Systems Track-It! Helpdesk System Introduction Information Systems Track-It! Helpdesk System Introduction The Information Systems department has deployed a new technology work order system called Track-It!. While the new system is similar to the old

More information

Online Sharing User Manual

Online Sharing User Manual Online Sharing User Manual June 13, 2007 If discrepancies between this document and Online Sharing are discovered, please contact backupfeedback@verizon.net. Copyrights and Proprietary Notices The information

More information

USC Marshall School of Business ShareFile_With_Outlook_Client_v2.docx 6/12/13 1 of 9

USC Marshall School of Business ShareFile_With_Outlook_Client_v2.docx 6/12/13 1 of 9 About ShareFile When you wish to send someone a file or need a file from someone else, your best option is to use ShareFile. It not only provides increased security by automatically encrypting files but

More information

The below instructions are valid whether you are using the site from your computer or a mobile device. All functions are available from both.

The below instructions are valid whether you are using the site from your computer or a mobile device. All functions are available from both. User Guide for the Delta Locum Tenens Online Worklog Application The below instructions are valid whether you are using the site from your computer or a mobile device. All functions are available from

More information

Application Instructions for YSEALI Generation: Youth Unite Against Drugs Workshop Portal Step-by-Step

Application Instructions for YSEALI Generation: Youth Unite Against Drugs Workshop Portal Step-by-Step Application Instructions for YSEALI Generation: Youth Unite Against Drugs Workshop Portal Step-by-Step I. REGISTERING FOR THE PROGRAM Google Chrome and Mozilla Firefox work best when completing the YSEALI

More information

Microsoft SharePoint is provided by Information Services for staff in Aberystwyth University.

Microsoft SharePoint is provided by Information Services for staff in Aberystwyth University. USING SHAREPOINT E-Services and Communications, Information Services, Aberystwyth University CONTENTS This document shows you how to: Access SharePoint Use your personal My Site area to try out features

More information

Montefiore Portal Quick Reference Guide

Montefiore Portal Quick Reference Guide Montefiore Portal Quick Reference Guide Montefiore s remote portal allows users to securely access Windows applications, file shares, internal web applications, and more. To use the Portal, you must already

More information

Utilizing Dropbox to Share Files

Utilizing Dropbox to Share Files Utilizing Dropbox to Share Files At times it is necessary to share large files with instructors or other students. Dropbox.com provides a very user friendly solution to fill this need. Dropbox is designed

More information

PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu

PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu PaperStream Connect Setup Guide Version 1.0.0.0 Copyright Fujitsu 2014 Contents Introduction to PaperStream Connect... 2 Setting up PaperStream Capture to Release to Cloud Services... 3 Selecting a Cloud

More information

Excel Budget Homework

Excel Budget Homework Excel Budget Homework CSE 3, Fall 2009 Due at the BEGINNING of your next lab. A. Annual Budget One of the most common uses of a spreadsheet is to chart financial information. We are going to create an

More information

IBI Group FTP: Usage Instructions

IBI Group FTP: Usage Instructions IBI Group FTP: Usage Instructions Version: Windows; Last Updated: April 22 nd 2009 There are two IBI Group supported methods for connecting to the FTP site, My Computer and FileZilla Client Software. If

More information

COSTARS Sales Reporting Manual December 2013

COSTARS Sales Reporting Manual December 2013 COSTARS Sales Reporting Manual December 2013-1 - DGS/COSTARS website Suppliers access the COSTARS website through the DGS website. Follow the steps below to navigate to the COSTARS website. 1. Navigate

More information

Helpful Information is found at this page: http://students.asu.edu/facultycenter

Helpful Information is found at this page: http://students.asu.edu/facultycenter Academic Status Report: The Academic Status Report (ASR) allows you to identify and communicate with students who are performing poorly in class. The system allows you to select specific reasons and corrective

More information

How to Attach the Syllabus and Course Schedule to a Content Item

How to Attach the Syllabus and Course Schedule to a Content Item How to Attach the Syllabus and Course Schedule to a Content Item Getting Started Part of preparing your course for delivery to students includes uploading your syllabus and course schedule to your online

More information

Student Orientation Guide CHIPOLA COLLEGE e-learning Desire2Learn (D2L)

Student Orientation Guide CHIPOLA COLLEGE e-learning Desire2Learn (D2L) Student Orientation Guide CHIPOLA COLLEGE e-learning Desire2Learn (D2L) Chipola d2l Student Orientation Guide Page 1 Table of Contents What s in this Orientation?... 3 Chipola College e-learning with D2L...

More information

Student User Guide. Introduction to the Module Management System (MMS) in Philosophy. Logging in; Submitting work; Logging out

Student User Guide. Introduction to the Module Management System (MMS) in Philosophy. Logging in; Submitting work; Logging out Student User Guide Introduction to the Module Management System (MMS) in Philosophy Logging in; Submitting work; Logging out Revised Oct 2008 (version 3.1P) University of St Andrews MMS Student Guide MMS

More information

The course assumes successful completion of CSCI E-50a and CSCI E-50b, i.e. at least two semesters of programming, with a grade of C- or better.

The course assumes successful completion of CSCI E-50a and CSCI E-50b, i.e. at least two semesters of programming, with a grade of C- or better. Syllabus Artificial Intelligence CSCI E-220 Fall 2012 Time Thursdays, 5:30-7:30pm Location Maxwell-Dworkin G135 Instructor Eric Breck (http://www-personal.umich.edu/~ebreck) Email ebreck@fas.harvard.edu

More information

Quick Start Configuration Guide Salesforce.com Integration

Quick Start Configuration Guide Salesforce.com Integration Quick Start Configuration Guide Salesforce.com Integration Introduction The basic integration of WorldSmart and Salesforce.com offers the following features: WorldSmart tabs in Salesforce dashboard. Click

More information

Leicestershire County Council s Secure File Transfer System

Leicestershire County Council s Secure File Transfer System any comms + Leicestershire County Council s Secure File Transfer System Guide for Early Years Providers AnyComms+ User Guide v1.0 Page 1 of 14 mark.hearfield@leics.gov.uk Introduction anycomms+ is a file

More information

L OCUTOUR. Get Ready to Spell! MULTIMEDIA COGNITIVE REHABILITATION

L OCUTOUR. Get Ready to Spell! MULTIMEDIA COGNITIVE REHABILITATION L OCUTOUR MULTIMEDIA COGNITIVE REHABILITATION Get Ready to Spell! Get Ready to Spell! Why Use This Program? This program is based on the observation that we learn by repetition. Many of the activities

More information

Samsung Xchange for Mac User Guide. Winter 2013 v2.3

Samsung Xchange for Mac User Guide. Winter 2013 v2.3 Samsung Xchange for Mac User Guide Winter 2013 v2.3 Contents Welcome to Samsung Xchange IOS Desktop Client... 3 How to Install Samsung Xchange... 3 Where is it?... 4 The Dock menu... 4 The menu bar...

More information

Health Indicators Advancing Healthy Aging in Your Community. Database Instructions for Managers

Health Indicators Advancing Healthy Aging in Your Community. Database Instructions for Managers Health Indicators Advancing Healthy Aging in Your Community Database Instructions for Managers Getting to the Database Website You can access the Health Indicators online database in two different ways.

More information

LOGO. HBS Bi-Weekly Exempt Employee Training. Bi-Weekly Exempt Timesheets. Updated 01.27.11

LOGO. HBS Bi-Weekly Exempt Employee Training. Bi-Weekly Exempt Timesheets. Updated 01.27.11 LOGO Bi-Weekly Exempt s HBS Bi-Weekly Exempt Employee Training Updated 01.27.11 Welcome to HBS Training! Welcome to the HBS online training for UCSF Exempt Employees paid on a Bi-Weekly pay cycle. This

More information

Making a Website with Hoolahoop

Making a Website with Hoolahoop Making a Website with Hoolahoop 1) Open up your web browser and goto www.wgss.ca/admin (wgss.hoolahoop.net temporarily) and login your the username and password. (wgss.ca is for teachers ONLY, you cannot

More information

Using D2L Brightspace for the First Time

Using D2L Brightspace for the First Time Using D2L Brightspace for the First Time Online courses at Saint Paul College require access to D2L Brightspace a learning management system designed for providing course information online. By utilizing

More information

Phases of the Moon. Preliminaries:

Phases of the Moon. Preliminaries: Phases of the Moon Sometimes when we look at the Moon in the sky we see a small crescent. At other times it appears as a full circle. Sometimes it appears in the daylight against a bright blue background.

More information

Voice-Over PowerPoint (VOPP) and FTP Instructions for Online Courses (for Windows PC Computers) December 2009

Voice-Over PowerPoint (VOPP) and FTP Instructions for Online Courses (for Windows PC Computers) December 2009 Voice-Over PowerPoint (VOPP) and FTP Instructions for Online Courses (for Windows PC Computers) December 2009 A. How to add narration to a PowerPoint presentation: 1. Attach a microphone to your computer

More information

Using. Microsoft Virtual PC. Page 1

Using. Microsoft Virtual PC. Page 1 Using Microsoft Virtual PC T4 Page 1 Microsoft Virtual PC Microsoft Virtual PC allows multiple Guest Operating Systems (Virtual Machines) to run using the resources of the Host Operating System (The PC

More information

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information