COMP 110 INTRODUCTION TO PROGRAMMING WWW

Size: px
Start display at page:

Download "COMP 110 INTRODUCTION TO PROGRAMMING WWW"

From this document you will learn the answers to the following questions:

  • What is displayed on the chessbard?

  • What does the ending of the chess piece?

  • What is the crrespnding of the chess piece?

Transcription

1 COMP 110 INTRODUCTION TO PROGRAMMING WWW Fall 2011 Hmewrk 4 Submissin Deadline: 10:59 AM, Nv 2 Overview Using Functins fr Validating Single Chess Mve Fr this assignment yu will replace yur Javascript cde frm HW 3 with ne that uses functins fr validating a single chess mve. As befre, chess pieces can be a King (K), Queen (Q), Bishp (B), Knight (N), Rk (R), r a Pawn (P). Yur prgram will ask the user t enter the type f the chess piece, as well as its starting (current) psitin and ending (intended) psitin. It will then validate whether this piece can change its psitin with a single valid mve. If the input fields are valid, Yur prgram will then display a chessbard with the crrespnding valid/invalid mve. Mst f the specificatin fr this hmewrk is the same as that fr HW 3 (simplified versin) and/r HW 2. The parts that are different have been highlighted in red clr. Prgram Specificatin Specifically, yur prgram shuld d the fllwing (in the same rder): Prmpt the user t enter the type f the (white) chess piece. The valid ptins are: K, Q, B, N, R, P. Prmpt the user t enter the starting clumn (valid ptins are: a, b, c, d, e, f, g, h). Prmpt the user t enter the starting rw (valid ptins are: 1, 2, 3, 4, 5, 6, 7, 8). Prmpt the user t enter the ending clumn (valid ptins are: a,b, c, d, e, f, g, h). Prmpt the user fr ending rw (valid ptins are: 1,2, 3, 4, 5, 6, 7, 8). If the piece can mve frm the starting psitin t the ending psitin in a single mve, then: Display a chessbard, in which the starting and ending cells are highlighted in green (#00FF00), and the piece is displayed in the ending cell. Display the text string: This is a valid mve belw the chess bard. If the piece can nt mve frm the starting psitin t the ending psitin in a single mve, then:

2 Page 2 f 6 Display a chessbard, in which the starting and ending cells are highlighted in red (#FF0000), and the piece is displayed in the starting cell, and a bld?! (questin & exclamatin mark) is displayed in the ending cell. Display the text string: This is an INVALID mve belw the chess bard. Align yur chess bard t the center f the page. Nte: Cnsider (and display) nly white pieces. Define (including defining parameters and return values) and use functins fr the fllwing: isvalidinput: returns whether r nt a 5 parameter input is valid. This functin, in turn shuld rely n the fllwing 3 functins: isvalidpiece isvalidrw isvalidclumn cnverttnumber: cnverts a character input (fr the clumn f a mve) t a number. isvalidmve: returns whether r nt a 5 parameter input represents a valid mve. displaychessbard: displays a chess bard based n the mve entered by the user. If any f the user input is invalid, simply display an apprpriate errr message, and d nthing else (d nt display the chess bard). Use the chess rules specified belw t figure ut if a mve is valid r invalid. (Nte: belw, we assume that 64 cells f the chess bard can be specified using (X,Y) crdinates, where the cell in the lwer left hand crner has a crdinate f (1,1), and the cell n the upper right hand crner has a crdinate f (8,8). Similarly, the cell n the upper left hand crner will have a psitin f (1,8) and the cell n the lwer righthand crner will have a psitin f (8,1). ) Valid King (K) mve: If the piece mves frm (X 1, Y 1 ) t (X 2, Y 2 ), the mve is valid if and nly if X 2 X 1 1, and Y 2 Y 1 1. Valid Bishp (B) mve: If the piece mves frm (X 1, Y 1 ) t (X 2, Y 2 ), the mve is valid if and nly if X 2 X 1 = Y 2 Y 1. Valid Rk (R) mve: If the piece mves frm (X 1, Y 1 ) t (X 2, Y 2 ), the mve is valid if and nly if X 2 = X 1 r Y 2 = Y 1. Valid Queen (Q) mve: A queen s mve is valid if it is either a valid mve fr either a bishp r a rk. Valid Knight (N) mve: If the piece mves frm (X 1, Y 1 ) t (X 2, Y 2 ), the mve is valid if and nly if ( X 2 X 1 = 1 and Y 2 Y 1 = 2) r (( X 2 X 1 = 2 and Y 2 Y 1 = 1). Valid Pawn (P) mve:

3 Page 3 f 6 If the piece mves frm (X 1, Y 1 ) t (X 2, Y 2 ), the mve is valid if and nly if X 2 = X 1 and Y 2 Y 1 = 1. Use (nested) lps fr displaying the chess bard. Sample Output: Belw, yu ll find screenshts f a cuple f sample utputs (Firefx brwser). Sample Input 1: N d 4 f 5 blue Sample Output 1:

4 Page 4 f 6 Sample Input 2: Q g 6 e 3 white Sample Output 2:

5 Page 5 f 6 Prgramming Style/Guidelines Abut 10% f the grade is reserved fr a gd prgramming style. S d remember t indent yur cde prperly and d remember t add sufficient cmments. Tips This hmewrk is designed t give yu practice n designing and using functins. This is the nly additinal cnstructs yu need t cmplete this hmewrk. Yur hmewrk will be public and available t the whle wrld including web search engines such as Ggle. S dn't put any infrmatin n the pages that yu dn't want the whle wrld t see. D nt create a link t this page frm any ther page. Submissin Instructins Yur HTML shuld include the fllwing cmments at the tp f the page Yur name COMP 110 Assignment number 4 Ttal time taken t cmplete this assignment Pledge: I have neither given nr received unauthrized aid n this assignment (signed) Sign the pledge by typing yur full name. Give a secret (and cryptic) name t yur HTML file (e.g., xx4yzrt.html). Please d nt use this example name use a different ne. This will help ensure that thers cannt cpy yur submissin. D nt share the name f yur file with anyne (ther than the instructr r the TAs). D nt create a link t this file frm any ther web page! Turn in a single sheet that cntains n paper yur pledge fr this hmewrk (the pledge shuld have yur name, assignment number, yur pledge, and signature). Please type set (d nt hand write). Hand this t either the instructr r the TAs by the submissin deadline. Submit n blackbard the full URL and surce cde fr yur web page n blackbard. e.g., if yur ONYEN lgin id is nyen, and yur assignment file is called xx4yzrt.html, then under Assignment # 4 : Submit the fllwing text in the Cmments bx under Assignment # 4 : Als submit yur HTML file as an attachment, by using the attach lcal file under Assignment # 4 (and chsing xx4yzrt.html). Yu d nt need t turn in a paper cpy f yur HTML file.

6 Page 6 f 6 D NOT mdify yur HTML files after submitting the abve URL n blackbard! S make sure yur hmewrk is ready fr grading befre yu submit it. If yur file is mdified after the submissin deadline, yur assignment will be cnsidered (crrespndingly) late. A Reminder n the Hnr Cde Please review the hnr cde fr this curse. It is k t: Discussing the assigned hmewrk prblem t understand its meaning. Discuss abut specific HTML and Javascript features In all cases yu must explicitly acknwledge any and all substantive help received frm ther individuals. That is, if yu cllabrate in any f the abve ways with ther individuals then yu must include an explicit acknwledgment in yur hmewrk slutin f the persns frm whm yu received aid. Acknwledging thers, if dne prperly, will nt adversely affect yur grade. Unacceptable cllabratin n written hmewrk includes: Cpying HTML r Javascript cde (r any prtin f yur hmewrk slutin) frm ther students, r frm the web. Shuld questins arise during the curse f wrking n a prblem please feel free t cntact the instructr. In principle, if yu wrk with thers in gd faith and are hnest and generus with yur attributins f credit yu will have n prblems.

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free.

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free. 990 e-pstcard FAQ Fr frequently asked questins abut filing the e-pstcard that are nt listed belw, brwse the FAQ at http://epstcard.frm990.rg/frmtsfaq.asp# (cpy and paste this link t yur brwser). General

More information

CSE 231 Fall 2015 Computer Project #4

CSE 231 Fall 2015 Computer Project #4 CSE 231 Fall 2015 Cmputer Prject #4 Assignment Overview This assignment fcuses n the design, implementatin and testing f a Pythn prgram that uses character strings fr data decmpressin. It is wrth 45 pints

More information

Welcome to CNIPS Training: CACFP Claim Entry

Welcome to CNIPS Training: CACFP Claim Entry Welcme t CNIPS Training: CACFP Claim Entry General Cmments frm SCN CACFP claiming begins with submissin f the Octber claim due by Nvember 15, 2012. Timelines/Due Dates With CNIPS, SCN will cntinue t enfrce

More information

AP Capstone Digital Portfolio - Teacher User Guide

AP Capstone Digital Portfolio - Teacher User Guide AP Capstne Digital Prtfli - Teacher User Guide Digital Prtfli Access and Classrm Setup... 2 Initial Lgin New AP Capstne Teachers...2 Initial Lgin Prir Year AP Capstne Teachers...2 Set up Yur AP Capstne

More information

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents BRILL s Editrial Manager (EM) Manual fr Authrs Table f Cntents Intrductin... 2 1. Getting Started: Creating an Accunt... 2 2. Lgging int EM... 3 3. Changing Yur Access Cdes and Cntact Infrmatin... 3 3.1

More information

SDES Service Desk Portal: Opening a Service Ticket

SDES Service Desk Portal: Opening a Service Ticket Opening a Service Ticket 1 SDES Service Desk Prtal: Opening a Service Ticket IMPORTANT: At any pint during the ticket creatin prcess, r yur ther use f the Service Desk prtal, it is imprtant that yu use

More information

Supervisor Quick Guide

Supervisor Quick Guide Payrll Office: ext. 7611 payrll@dixie.edu Supervisr Quick Guide This dcument prvides an verview f the daily functins and respnsibilities t be cmpleted by Supervisrs in the EMPOWERTIME Autmated Timekeeping

More information

How to put together a Workforce Development Fund (WDF) claim 2015/16

How to put together a Workforce Development Fund (WDF) claim 2015/16 Index Page 2 Hw t put tgether a Wrkfrce Develpment Fund (WDF) claim 2015/16 Intrductin What eligibility criteria d my establishment/s need t meet? Natinal Minimum Data Set fr Scial Care (NMDS-SC) and WDF

More information

Create a Non-Catalog Requisition

Create a Non-Catalog Requisition Create a Nn-Catalg Requisitin Jb Aid This jb aid describes hw t create a standard nn-catalg (i.e., nn-ibuynu) purchase request. REFER TO ADDITIONAL TRAINING GUIDES If yu need t create a special requisitin

More information

Connecting to Email: Live@edu

Connecting to Email: Live@edu Cnnecting t Email: Live@edu Minimum Requirements fr Yur Cmputer We strngly recmmend yu upgrade t Office 2010 (Service Pack 1) befre the upgrade. This versin is knwn t prvide a better service and t eliminate

More information

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3 EEC Single Sign In (SSI) Applicatin The EEC Single Sign In (SSI) Single Sign In (SSI) is the secure, nline applicatin that cntrls access t all f the Department f Early Educatin and Care (EEC) web applicatins.

More information

Helpdesk Support Tickets & Knowledgebase

Helpdesk Support Tickets & Knowledgebase Helpdesk Supprt Tickets & Knwledgebase User Guide Versin 1.0 Website: http://www.mag-extensin.cm Supprt: http://www.mag-extensin.cm/supprt Please read this user guide carefully, it will help yu eliminate

More information

Accessing SpringBoard Online Table of Contents: Websites, pg 1 Access Codes, 2 Educator Account, 2 How to Access, 3 Manage Account, 7

Accessing SpringBoard Online Table of Contents: Websites, pg 1 Access Codes, 2 Educator Account, 2 How to Access, 3 Manage Account, 7 Accessing SpringBard Online Table f Cntents: Websites, pg 1 Access Cdes, 2 Educatr Accunt, 2 Hw t Access, 3 Manage Accunt, 7 SpringBard Online Websites SpringBard Online is the fficial site fr teachers,

More information

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories.

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories. 11 This chapter includes infrmatin regarding custmized reprts that users can create using data entered int the CA prgram, including: Explanatin f Accessing List Screen Creating a New Ad Hc Reprt Running

More information

Chalkable Classroom For Students

Chalkable Classroom For Students Chalkable Classrm Fr Students Abut This Dcument This dcument cntains an verview f the Chalkable Classrm Hme Prtal, which is used by students. Table f Cntents Chalkable Classrm Fr Students 1 Abut This Dcument...1

More information

Note: Additional Information Regarding Reporting Requirements Is Presented Following This Table. Allowable. Instructions Name

Note: Additional Information Regarding Reporting Requirements Is Presented Following This Table. Allowable. Instructions Name Nte: Additinal Infrmatin Regarding Reprting Requirements Is Presented Fllwing This Table. Clumn Clumn Allwable Instructins Name Values A SSN Numbers 9-digit SSN, including lead zeres if applicable D nt

More information

Phone support is available if you have any questions or problems with the NASP PRO software during your tournament.

Phone support is available if you have any questions or problems with the NASP PRO software during your tournament. NASP Pr Turnament Instructins Updated 11/4/13 - NASP Pr Turnament Step by Step It is HIGHLY recmmended that yu read and fllw these instructins. Als, print these instructins and have them available at yur

More information

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions FOCUS Service Management Sftware fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins

More information

Times Table Activities: Multiplication

Times Table Activities: Multiplication Tny Attwd, 2012 Times Table Activities: Multiplicatin Times tables can be taught t many children simply as a cncept that is there with n explanatin as t hw r why it is there. And mst children will find

More information

How To Install Fcus Service Management Software On A Pc Or Macbook

How To Install Fcus Service Management Software On A Pc Or Macbook FOCUS Service Management Sftware Versin 8.4 fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin

More information

CU Payroll Data Entry

CU Payroll Data Entry Lg int PepleSft Human Resurces: Open brwser G t: https://cubshr9.clemsn.edu/psp/hpprd/?cmd=lgin Enter yur Nvell ID and Passwrd Click Sign In A. Paysheets are created by the Payrll Department. B. The Payrll

More information

Excel Contact Reports

Excel Contact Reports Excel Cntact Reprts v.1.0 Anther efficient and affrdable ACT! Add-On by http://www.expnenciel.cm Excel Cntact Reprts User s Manual 2 Table f cntents Purpse f the add-n... 3 Installatin prcedure... 3 The

More information

Hartford Seminary s. Online Application Instructions

Hartford Seminary s. Online Application Instructions Hartfrd Seminary s Online Applicatin Instructins Hartfrd Seminary is pleased t annunce that nline applicatin is nw pssible fr mst f ur prgrams as fllws: Dctr f Ministry: Use nline applicatin Master f Arts:

More information

Hi-Tech will not be responsible if your hardware fails and you lose your residents medical record documentation and/or MDS records.

Hi-Tech will not be responsible if your hardware fails and you lose your residents medical record documentation and/or MDS records. Overview... 1 Prepare fr E-Signatures... 1 Set Up Electrnic Signatures fr Clinical Assessments, Ntes and the MDS 3.0... 2 Put Users Electrnic Signatures n File... 2 Select Recrds t be Signed Electrnically...

More information

Topic: Import MS Excel data into MS Project Tips & Troubleshooting

Topic: Import MS Excel data into MS Project Tips & Troubleshooting Tpic: Imprt MS Excel data int MS Prject Tips & Trubleshting by Ellen Lehnert, MS Prject MVP, PMP, MCT, MCP www.lehnertcs.cm April, 2014 There are several things yu shuld be aware f regarding the imprt

More information

1 GETTING STARTED. 5/7/2008 Chapter 1

1 GETTING STARTED. 5/7/2008 Chapter 1 5/7/2008 Chapter 1 1 GETTING STARTED This chapter intrduces yu t the web-based UIR menu system. Infrmatin is prvided abut the set up necessary t assign users permissin t enter and transmit data. This first

More information

efusion Table of Contents

efusion Table of Contents efusin Cst Centers, Partner Funding, VAT/GST and ERP Link Table f Cntents Cst Centers... 2 Admin Setup... 2 Cst Center Step in Create Prgram... 2 Allcatin Types... 3 Assciate Payments with Cst Centers...

More information

Tipsheet: Sending Out Mass Emails in ApplyYourself

Tipsheet: Sending Out Mass Emails in ApplyYourself GEORGETOWN GRADUATE SCHOOL Tipsheet: Sending Out Mass Emails in ApplyYurself In ApplyYurself (AY), it is very simple and easy t send a mass email t all f yur prspects, applicants, r students with applicatins

More information

Shelby County Schools Online Employee Accident Reporting User Manual

Shelby County Schools Online Employee Accident Reporting User Manual Shelby Cunty Schls Online Emplyee Accident Reprting User Manual Department f Risk Management Nvember, 2013 Overview In accrdance with SCS bard plicy 4014, Accidents n the Jb (als referred t as On the Jb

More information

Using PayPal Website Payments Pro UK with ProductCart

Using PayPal Website Payments Pro UK with ProductCart Using PayPal Website Payments Pr UK with PrductCart Overview... 2 Abut PayPal Website Payments Pr & Express Checkut... 2 What is Website Payments Pr?... 2 Website Payments Pr and Website Payments Standard...

More information

STIClassroom Win Rosters, Attendance, Lesson Plans and Textbooks

STIClassroom Win Rosters, Attendance, Lesson Plans and Textbooks STIClassrm Win Rsters, Attendance, Lessn Plans and Textbks Student Class Rster T access the student class rster, click the icn in the Classrm desktp. Frm the Rster screen, teachers may access the items

More information

HeartCode Information

HeartCode Information HeartCde Infrmatin Hw t Access HeartCde Curses... 1 Tips fr Cmpleting Part 1 the nline curse... 5 HeartCde Part 2... 6 Accessing a Cmpleted Curse... 7 Frequently Asked Questins... 8 Hw t Access HeartCde

More information

IT Quick Reference Guides Using Outlook 2011 for Mac for Faculty and Staff

IT Quick Reference Guides Using Outlook 2011 for Mac for Faculty and Staff IT Quick Reference Guides Using Outlk 2011 fr Mac fr Faculty and Staff Outlk Guides This guide cvers using Outlk 2011 fr Mac fr SU faculty and staff n campus cmputers. This des nt cver using Outlk 2011

More information

STANLEY Healthcare University Training & Certification Portal. Student Quick Reference Guide

STANLEY Healthcare University Training & Certification Portal. Student Quick Reference Guide STANLEY Healthcare University Training & Certificatin Prtal Student Quick Reference Guide Table f Cntents Registering fr a STANLEY Healthcare University Site User Accunt... 3 Lgging int the STANLEY Healthcare

More information

Army DCIPS Employee Self-Report of Accomplishments Overview Revised July 2012

Army DCIPS Employee Self-Report of Accomplishments Overview Revised July 2012 Army DCIPS Emplyee Self-Reprt f Accmplishments Overview Revised July 2012 Table f Cntents Self-Reprt f Accmplishments Overview... 3 Understanding the Emplyee Self-Reprt f Accmplishments... 3 Thinking Abut

More information

DIRECT DATA EXPORT (DDE) USER GUIDE

DIRECT DATA EXPORT (DDE) USER GUIDE 2 ND ANNUAL PSUG-NJ CONFERNCE PSUG-NJ STUDENT MANAGEMENT SYSTEM DIRECT DATA EXPORT (DDE) USER GUIDE VERSION 7.6+ APRIL, 2013 FOR USE WITH POWERSCHOOL PREMIER VERSION 7.6+ Prepared by: 2 TABLE OF CONTENTS

More information

Creating Vehicle Requests

Creating Vehicle Requests Overview Vehicle requisitins, including additins, replacements, dnatins and leases, are submitted, reviewed, and apprved using the State f Gergia Frms in VITAL Insights. The prcess has three levels f review

More information

TaskCentre v4.5 Send Message (SMTP) Tool White Paper

TaskCentre v4.5 Send Message (SMTP) Tool White Paper TaskCentre v4.5 Send Message (SMTP) Tl White Paper Dcument Number: PD500-03-17-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION

More information

Service Request Form

Service Request Form New Prfessinal Services Order Frm Editable PDF Service Request Frm If yu have any questins while filling ut this frm, please cntact yur CDM, email Prfessinal Services at PS@swipeclck.cm, r call 888-223-3250

More information

This page provides help in using WIT.com to carry out the responsibilities listed in the Desk Aid Titled Staffing Specialists

This page provides help in using WIT.com to carry out the responsibilities listed in the Desk Aid Titled Staffing Specialists This page prvides help in using WIT.cm t carry ut the respnsibilities listed in the Desk Aid Titled Staffing Specialists 1. Assign jbs t yurself G t yur hme page Click n Yur Center has new jb pstings r

More information

Volunteer Tracking Software input received from APGA volunteer section members

Volunteer Tracking Software input received from APGA volunteer section members Vlunteer Tracking Sftware input received frm APGA vlunteer sectin members Cmments received n the fllwing systems: 1. Micrsft Access Database/Excel 2. Vlgistics 3. Raiser s Edge Questins asked: What data

More information

Chris Chiron, Interim Senior Director, Employee & Management Relations Jessica Moore, Senior Director, Classification & Compensation

Chris Chiron, Interim Senior Director, Employee & Management Relations Jessica Moore, Senior Director, Classification & Compensation TO: FROM: HR Officers & Human Resurces Representatives Chris Chirn, Interim Senir Directr, Emplyee & Management Relatins Jessica Mre, Senir Directr, Classificatin & Cmpensatin DATE: May 26, 2015 RE: Annual

More information

AvePoint Perimeter Pro 1.6. Secured Share User Guide

AvePoint Perimeter Pro 1.6. Secured Share User Guide AvePint Perimeter Pr 1.6 Secured Share User Guide Issued May 2016 Table f Cntents What s New in this Guide... 4 Overview... 5 Internal Users... 6 Site Cllectin Administratrs... 7 External Prtal Users...

More information

iphone Mobile Application Guide Version 2.2.2

iphone Mobile Application Guide Version 2.2.2 iphne Mbile Applicatin Guide Versin 2.2.2 March 26, 2014 Fr the latest update, please visit ur website: www.frte.net/mbile Frte Payment Systems, Inc. 500 West Bethany, Suite 200 Allen, Texas 75013 (800)

More information

Click here to open the library

Click here to open the library Dcument Management What is a Dcument Library? Use a dcument library t stre, rganize, sync, and share dcuments with peple. Yu can use cauthring, versining, and check ut t wrk n dcuments tgether. With yur

More information

Revised CMS-1500 Health Insurance Claim Form (02/12)

Revised CMS-1500 Health Insurance Claim Form (02/12) Revised CMS-1500 Health Insurance Claim Frm (02/12) Effective July 1, 2014, prfessinal claims submitted via paper billing must be submitted n the new 02/12 versin f the CMS-1500 Health Insurance Claim

More information

learndirect Test Information Guide The National Test in Adult Numeracy

learndirect Test Information Guide The National Test in Adult Numeracy learndirect Test Infrmatin Guide The Natinal Test in Adult Numeracy 1 Cntents The Natinal Test in Adult Numeracy: Backgrund Infrmatin... 3 What is the Natinal Test in Adult Numeracy?... 3 Why take the

More information

Budget Planning. Accessing Budget Planning Section. Select Click Here for Budget Planning button located close to the bottom of Program Review screen.

Budget Planning. Accessing Budget Planning Section. Select Click Here for Budget Planning button located close to the bottom of Program Review screen. Budget Planning Accessing Budget Planning Sectin Select Click Here fr Budget Planning buttn lcated clse t the bttm f Prgram Review screen. Depending n what types f budgets yur prgram has, yu may r may

More information

P a g e 1. Banner Workflow: Teaching Effort Approver Procedure Guide. Teaching Effort Approver Procedures

P a g e 1. Banner Workflow: Teaching Effort Approver Procedure Guide. Teaching Effort Approver Procedures P a g e 1 Banner Wrkflw: Teaching Effrt Apprver Prcedure Guide Teaching Effrt Apprver Prcedures Versin: Octber 2013 Table f Cntents Banner Wrkflw: What is a Wrkflw?... 1 Teaching Effrt web frm: What is

More information

FINRA Regulation Filing Application Batch Submissions

FINRA Regulation Filing Application Batch Submissions FINRA Regulatin Filing Applicatin Batch Submissins Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 FTP Access t FINRA... 2 FTP Accunt n FINRA s

More information

CLIENT PORTAL GUIDE SUMMARY

CLIENT PORTAL GUIDE SUMMARY CLIENT PORTAL GUIDE SUMMARY Using the CISI nline prtal is simple. Just g t www.culturalinsurance.cm and fllw the steps belw. As the grup administratr, simply g t the green mycisi buttn n the tp f the page

More information

Completing Contracts Online

Completing Contracts Online Cmpleting Cntracts Online Getting started using zipfrm Plus t cmplete cntracts nline quickly and efficiently The ziplgix Advantage Seamless prfessinal wrkflw Easy t use Reduced data entry Always accurate,

More information

STIOffice Integration Installation, FAQ and Troubleshooting

STIOffice Integration Installation, FAQ and Troubleshooting STIOffice Integratin Installatin, FAQ and Trubleshting Installatin Steps G t the wrkstatin/server n which yu have the STIDistrict Net applicatin installed. On the STI Supprt page at http://supprt.sti-k12.cm/,

More information

PENNSYLVANIA SURPLUS LINES ASSOCIATION Electronic Filing System (EFS) Frequently Asked Questions and Answers

PENNSYLVANIA SURPLUS LINES ASSOCIATION Electronic Filing System (EFS) Frequently Asked Questions and Answers PENNSYLVANIA SURPLUS LINES ASSOCIATION Electrnic Filing System (EFS) Frequently Asked Questins and Answers 1 What changed in Release 2.0?...2 2 Why was my accunt disabled?...3 3 Hw d I inactivate an accunt?...4

More information

HR Management Information (HRS)

HR Management Information (HRS) HR Management Infrmatin (HRS) Fact Sheet N 10. Managing Access t Claims Online T give access t ther departmental staff yu must be a Site Leader ie a Principal r Preschl Directr. If yu are nt a site leader

More information

3/2 MBA Application Instructions

3/2 MBA Application Instructions 3/2 MBA Applicatin Instructins IMPORTANT INFORMATION Deadlines fr admissin are psted t the 3/2 MBA website. Applicatins are encuraged t be submitted by Nvember 1 f the Junir year. Please nte that all required

More information

Frequently Asked Questions November 19, 2013. 1. Which browsers are compatible with the Global Patent Search Network (GPSN)?

Frequently Asked Questions November 19, 2013. 1. Which browsers are compatible with the Global Patent Search Network (GPSN)? Frequently Asked Questins Nvember 19, 2013 General infrmatin 1. Which brwsers are cmpatible with the Glbal Patent Search Netwrk (GPSN)? Ggle Chrme (v23.x) and IE 8.0. 2. The versin number and dcument cunt

More information

Regions File Transmission

Regions File Transmission Regins File Transmissin Getting Started with FTPS Regins Bank Member FDIC Revised 022113 It s time t expect mre. Table f Cntents Getting Started with FTPS Setting Up FTPS Cnnectin in FTP Client 3 4 9 Regins

More information

o 1.1 - How AD Query Works o 1.2 - Installation Requirements o 2.1 - Inserting your License Key o 2.2 - Selecting and Changing your Search Domain

o 1.1 - How AD Query Works o 1.2 - Installation Requirements o 2.1 - Inserting your License Key o 2.2 - Selecting and Changing your Search Domain SysOp Tls Active Directry Management sftware Active Directry Query v1.x Sftware Installatin and User Guide Updated September 29, 2008 In This Dcument: 1.0 Intrductin 1.1 - Hw AD Query Wrks 1.2 - Installatin

More information

edoc Lite Recruitment Guidelines

edoc Lite Recruitment Guidelines edc Lite Recruitment Guidelines Intrductin OneStart & the Academic Psitin Search Channel edc Lite Ruting and Wrkgrups Ruting Actin List Ruting Cntrls Wrkgrups Dcument Search edc Lite Dcuments Vacancy Ntice

More information

Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008

Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008 Exercise 5 Server Cnfiguratin, Web and FTP Instructins and preparatry questins Administratin f Cmputer Systems, Fall 2008 This dcument is available nline at: http://www.hh.se/te2003 Exercise 5 Server Cnfiguratin,

More information

UTO Training Bb Discussion Boards. Technical Assistance: Website: http://help.asu.edu Help Desk Phone: 855.278.5080 (24/7 support) Instruction

UTO Training Bb Discussion Boards. Technical Assistance: Website: http://help.asu.edu Help Desk Phone: 855.278.5080 (24/7 support) Instruction Bb Discussin Bards Technical Assistance: Website: http://help.asu.edu Help Desk Phne: 855.278.5080 (24/7 supprt) Instructin 1. Discussin Bard Basics Instructrs can create frums fr the curse r fr Grups

More information

INTERMEDIATE CAD FILE MANAGEMENT

INTERMEDIATE CAD FILE MANAGEMENT INTERMEDIATE CAD FILE MANAGEMENT Intrductin File mismanagement is the dwnfall f many brilliant individuals. If yu are wise, yu wn't be ne f the peple wh meet disaster due t pr file management. Cmputers

More information

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions FOCUS Service Management Sftware Versin 8.5 fr CunterPint Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins will

More information

Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010

Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010 Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010 0. Nte that frm LISTSERV versin 15.5, LISTSERV supprts using an external LDAP directry (r Windws Active Directry) fr lgin authenticatin in additin t

More information

User Guide Version 3.9

User Guide Version 3.9 User Guide Versin 3.9 Page 2 f 22 Summary Cntents 1 INTRODUCTION... 3 1.1 2 CREATE A NEW ACCOUNT... 4 2.1 2.2 3 NAVIGATION... 3 CREATE AN EMAIL ACCOUNT... 4 CREATE AN ALIAS ACCOUNT... 6 MODIFYING AN EXISTING

More information

Getting Started Guide

Getting Started Guide AnswerDash Resurces http://answerdash.cm Cntextual help fr sales and supprt Getting Started Guide AnswerDash is cmmitted t helping yu achieve yur larger business gals. The utlined pre-launch cnsideratins

More information

How To Write A Webex Conference On A Pc Or Mac Or Ipad (For Pc)

How To Write A Webex Conference On A Pc Or Mac Or Ipad (For Pc) Jining a WebEx Webcnference Writing fr Envirnmental Prfessinals WebEx allws the curse instructr and participants t cnnect using web cnferencing and VIP using yur cmputer r smart device! By jining via WebEx's

More information

Using McAllister Payment Solutions and Updating to AVImark version 2009.0.0.7263

Using McAllister Payment Solutions and Updating to AVImark version 2009.0.0.7263 Using McAllister Payment Slutins and Updating t AVImark versin 2009.0.0.7263 Befre the cnfiguratin f McAllister Payment Slutins (MPS) and AVImark, the McAllister Payment Slutins PA-DSS Implementatin Guide

More information

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers)

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers) Firewall/Prxy Server Settings t Access Hsted Envirnment Client firewall settings in mst cases depend n whether the firewall slutin uses a Stateful Inspectin prcess r ne that is cmmnly referred t as an

More information

Tips & Tricks. Table of Contents. Browser Update - WebEx Plugin. Updated Global Access Numbers

Tips & Tricks. Table of Contents. Browser Update - WebEx Plugin. Updated Global Access Numbers Tips & Tricks Table f Cntents Brwser Update - WebEx Plugin... 1 Updated Glbal Access Numbers... 1 WebEx Prfile Settings (Time zne, Email )... 2 Hsting a successful WebEx call with Vide... 2 Using the WebEx

More information

esupport Quick Start Guide

esupport Quick Start Guide esupprt Quick Start Guide Last Updated: 5/11/10 Adirndack Slutins, Inc. Helping Yu Reach Yur Peak 908.725.8869 www.adirndackslutins.cm 1 Table f Cntents PURPOSE & INTRODUCTION... 3 HOW TO LOGIN... 3 SUBMITTING

More information

e-qip Online Checklist

e-qip Online Checklist U.S. Custms and Versin 3.03 Brder Prtectin e-qip Online Checklist Please cmplete each step in the rder listed belw befre submitting yur e-qip frms. If yu fail t cmplete these steps in rder, yu will delay

More information

Learning Management System

Learning Management System JICS 6.4 Learning Management System Student Guide June 30, 2006 2006, Jenzabar, Inc. 5 Cambridge Center Cambridge, MA 02142 1.877.535.0222 www.jenzabar.net This dcument is cnfidential and cntains prprietary

More information

Norwood Public Schools Internet & Cell Phone Use Agreement School Year 2015-16

Norwood Public Schools Internet & Cell Phone Use Agreement School Year 2015-16 Yu must read and agree t fllw the netwrk rules belw t use yur netwrk accunt r access the internet. Nrwd Public Schls makes available t students access t cmputers and the Internet. Students are expected

More information

Success in Mathematics

Success in Mathematics Success in Mathematics Tips n hw t study mathematics, hw t apprach prblem-slving, hw t study fr and take tests, and when and hw t get help. Math Study Skills Be actively invlved in managing the learning

More information

Software Update Notification

Software Update Notification Sftware Update Ntificatin PSS0223-02 Mastersizer 3000 v1.01 sftware Abstract This dcument details the release f sftware PSS0223-02 v1.01 f the sftware fr the Mastersizer 3000 laser diffractin system. It

More information

1) Update the AccuBuild Program to the latest version Version 9.3.0.3 or later.

1) Update the AccuBuild Program to the latest version Version 9.3.0.3 or later. Certified Payrll XML Exprt As f June 4 th, 2015, The Califrnia Department f Industrial Relatins (DIR) is requiring that all certified payrll reprts be submitted nline using the ecpr system. The ecpr System

More information

Enrollee Health Assessment Program Implementation Guide and Best Practices

Enrollee Health Assessment Program Implementation Guide and Best Practices Enrllee Health Assessment Prgram Implementatin Guide and Best Practices March 2015 033129 (03-2015) This guide will help yu answer these questins: What is the Enrllee Health Assessment (EHA) prgram and

More information

Macintosh Operating System Online Proctoring Guide

Macintosh Operating System Online Proctoring Guide Macintsh Operating System Online Prctring Guide ONLINE PROCTORING GUIDE 0 Macintsh Operating System Online Prctring Guide Cntents CONTENTS... 1 ABOUT ONLINE PROCTORING... 2 PREPARING FOR YOUR ONLINE PROCTORED

More information

Grants Online. Quick Reference Guide Grant Recipients

Grants Online. Quick Reference Guide Grant Recipients Abut Grants Online: Grants Online perates in a web envirnment. Internet Explrer is the preferred brwser fr PC users, but Ggle Chrme als wrks well; FireFx is the preferred brwser fr MAC users. N sftware

More information

About the Staples PTA Discount Program

About the Staples PTA Discount Program Abut the Staples PTA Discunt Prgram At-A-Glance: What PTA Members get frm Staples Discunts fr individual PTA members and PTA units 10% instant discunt ff supplies (see exclusins belw in the Terms & Cnditins)

More information

How to run an Online Degree Audit

How to run an Online Degree Audit Hw t run an Online Degree Audit G t http://mydegreeaudit.unt.edu Click the Online Degree Audit link n the new page Lg in with yur EUID and passwrd Request an Audit Current Prgram (Official Majr) Selected

More information

Concur Travel QuickStart Guide. Concur Technologies Version 1.0

Concur Travel QuickStart Guide. Concur Technologies Version 1.0 Cncur Travel QuickStart Guide Cncur Technlgies Versin 1.0 August 22, 2014 Dcument Revisin Histry Date Descriptin Versin Authr 08/22/2014 Cncur Travel QuickStart Guide 1.0 Cncur Prprietary Statement These

More information

WORKING WITH THE PROFESSIONAL ELECTRONIC PORTFOLIO TEMPLATE (EPT) TECHNICAL INSTRUCTIONS

WORKING WITH THE PROFESSIONAL ELECTRONIC PORTFOLIO TEMPLATE (EPT) TECHNICAL INSTRUCTIONS WORKING WITH THE PROFESSIONAL ELECTRONIC PORTFOLIO TEMPLATE (EPT) TECHNICAL INSTRUCTIONS 2013 Vanderbilt University. All rights reserved. Inquiries: Center fr Advanced Practice Nursing (615) 322-4664 T:\Prjects\Electrnic

More information

Employee Self Service (ESS) Quick Reference Guide ESS User

Employee Self Service (ESS) Quick Reference Guide ESS User Emplyee Self Service (ESS) Quick Reference Guide ESS User Cntents Emplyee Self Service (ESS) User Quick Reference Guide 5 Intrductin t ESS 5 Getting Started 6 Prerequisites 6 Accunt Activatin 7 Hw t activate

More information

USF Remote Desktop Gateway

USF Remote Desktop Gateway USF Remte Desktp Gateway Fr Hme Cmputers and Laptps Running Windws 8 The Remte Desktp Gateway (RDG) allws access t yur USF campus cmputer frm remte lcatins while adding an additinal layer f security t

More information

NAVIPLAN PREMIUM LEARNING GUIDE. Analyze, compare, and present insurance scenarios

NAVIPLAN PREMIUM LEARNING GUIDE. Analyze, compare, and present insurance scenarios NAVIPLAN PREMIUM LEARNING GUIDE Analyze, cmpare, and present insurance scenaris Cntents Analyze, cmpare, and present insurance scenaris 1 Learning bjectives 1 NaviPlan planning stages 1 Client case 2 Analyze

More information

Frequently Asked Questions About I-9 Compliance

Frequently Asked Questions About I-9 Compliance Frequently Asked Questins Abut I-9 Cmpliance What is required t verify wrk authrizatin? The basic requirement t verify wrk authrizatin is the Frm I-9. This frm is available n the HR website: http://www.fit.edu/hr/dcuments/frms/i-9.pdf

More information

College Application Process

College Application Process Cllege Applicatin Prcess Crystal Lake Suth High Schl 2015-2016 Students, This packet shuld serve as a guideline fr all students that are filling ut cllege applicatins. The steps utlined in the fllwing

More information

Instant Spam Control

Instant Spam Control Instant Spam Cntrl - we make IT wrk! - the easy guide t yur antispam slutin Instant Spam Cntrl is easy t wrk with and easy letting wrk fr yu. 97 percent f all spam is autmatically quarantined by the system.

More information

FNB Cellphone Banking. Frequently Asked Question

FNB Cellphone Banking. Frequently Asked Question FNB Cellphne Banking Frequently Asked Questin Q1: D I need t have a specific cellphne befre I start using Cellphne Banking frm FNB? N, anyne, with any cellphne, n any netwrk can start banking by simply

More information

Grants Online. Quick Reference Guide - Grantees

Grants Online. Quick Reference Guide - Grantees Abut Grants Online: Grants Online perates in a web envirnment. Internet Explrer is the preferred brwser fr PC users; FireFx is the preferred brwser fr MAC users. N sftware is required fr installatin. Lgins

More information

By offering the Study Abroad Scholarship, we hope to make your study abroad experience much more affordable!

By offering the Study Abroad Scholarship, we hope to make your study abroad experience much more affordable! Internatinal Educatin Prgrams is pleased t annunce a Study Abrad Schlarship fr Seattle Central Cmmunity Cllege students. The schlarship has been established by the Internatinal Educatin Prgrams divisin

More information

Outlook Web Access Training Light Version: Using a browser other than Internet Explorer 6.0 or later. A NWOCA Training Session

Outlook Web Access Training Light Version: Using a browser other than Internet Explorer 6.0 or later. A NWOCA Training Session Outlk Web Access Training Light Versin: Using a brwser ther than Internet Explrer 6.0 r later A NWOCA Training Sessin 1 Lg On T Lg On t yur OutLk Web Access accunt, either: G t this URL: https://dwa.nwca.rg

More information

WITS Implementation Toolkit. For All Substance Use Disorder Network Service Providers

WITS Implementation Toolkit. For All Substance Use Disorder Network Service Providers WITS Implementatin Tlkit Fr All Substance Use Disrder Netwrk Service Prviders February 20, 2013 WITS Implementatin Tlkit 1 Overview Beginning July 1, 2013, all SUD netwrk prviders will be required t utilize

More information

How much life insurance do I need? Wrong question!

How much life insurance do I need? Wrong question! Hw much life insurance d I need? Wrng questin! We are ften asked this questin r sme variatin f it. We believe it is NOT the right questin t ask. What yu REALLY need is mney, cash. S the questin shuld be

More information

CITY OF NORTH RICHLAND HILLS

CITY OF NORTH RICHLAND HILLS CITY OF NORTH RICHLAND HILLS NEIGHBORHOOD INITIATIVE PROGRAM HOME IMPROVEMENT REBATE POLICY The fllwing plicy applies t the Neighbrhd Initiative Prgram Hme Imprvement Rebate: The purpse f the Hme Imprvement

More information