CSE 231 Fall 2015 Computer Project #4

Size: px
Start display at page:

Download "CSE 231 Fall 2015 Computer Project #4"

Transcription

1 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 (4.5% f yur curse grade) and must be cmpleted n later than 11:59 PM n Mnday, Octber 12. Assignment Deliverable The deliverable fr this assignment is the fllwing file: prj04.py the surce cde fr yur Pythn prgram Be sure t use the specified file name and t submit it fr grading via the handin system befre the prject deadline. Assignment Backgrund We use data cmpressin all the time: music is cmpressed by the MP3 algrithm, vides are cmpressed by the MP4 algrithm, and phts are cmpressed by the JPEG algrithm. A fundamental part f cmpressin is t remve repeated patterns and replace them with a cde. Fr example, cmpress was used repeatedly in this paragraph and culd be replaced with a cde (a pair f numbers). If yu d that ften enugh, yu can save a lt f space. Cnsider the fllwing traditinal ditty: Pease prridge ht, Pease prridge cld, Pease prridge in the pt, Nine days ld. Sme like it ht, Sme like it cld, Sme like it in the pt, Nine days ld. Using a relatively simple algrithm, that cmpresses t the string: "Pease prridge ht,\(20,15)cld,\(21,15)in the p(48,4)nine days (42,3).\\Sme like it(82,6)(18,13)(80,6)(19,13)(78,26)"

2 Here, we are using the backslash character ("\") t represent a carriage return (r new line character) and a pair f numbers t represent text that is repeated frm earlier in the string: the first number tells yu hw far t g back and the secnd tells yu hw many characters are repeated frm that starting pint. Yu decmpress the string by replacing each pair, in its turn, with a substring frm earlier in the decmpressed part f the string. Finally, yu replace each backslash with a newline ("\n"). Fr example, the pair (20, 15) is t be replaced by the substring btained by ging back 20 characters and cpying 15 characters starting at that pint. Ging back 20 characters takes yu t the beginning and then yu cpy 15 characters t get the substring "Pease prridge ". Replacing the pair with this substring results in the (partially decmpressed) string: "Pease prridge ht,\pease prridge cld,\(21,15) " (T save space, we have used ellipses ( ) t represent the rest f the cmpressed string.) Fr the next pair, yu g back 21 characters t the beginning f the secnd line where yu again cpy 15 characters, i.e. "Pease prridge ". Replacing the pair with this substring yields: "Pease prridge ht,\pease prridge cld,\pease prridge in the p(48,4) " Next, the pair (48,4) takes yu back 48 characters t the "" in "ht". The substring btained by cpying fur characters is "t,\". Replacing the pair with this substring gives yu: "Pease prridge ht,\pease prridge cld,\pease prridge in the pt,\nine days (42,3) " The pair (42,3) takes yu back 42 characters t pick up the 3 characters "ld"(frm "cld,"). The decmpressed string s far is: "Pease prridge ht,\pease prridge cld,\pease prridge in the pt,\nine days ld.\\sme like it(82,6) " And s n. Last week Ggle annunced a new cmpressin algrithm named Brtli. S what? Fr ne, it is 26% better than existing algrithms. Six years ag, Ggle s disk space was estimated at an exabyte (10 18 bytes = 1,000,000 terabytes). The imprved cmpressin will save Ggle a quarter f that space, r abut 250,000 terabytes. Since terabyte disk drives cst abut $100 each, the better cmpressin will save Ggle apprximately $25 millin. The savings might be much larger nw since Ggle s disk space has certainly grwn in the past six years.

3 Assignment Specificatins Yu will develp a Pythn prgram that allws the user t decmpress any number f strings. The prgram will prmpt fr a string t decmpress. As lng as the user inputs a nn-empty string, the prgram will utput the decmpressed string. The decmpressed string will have prper carriage returns that replace the backslashes in the input string. When the user presses the enter/return key withut first inputting a string, the prgram will display an apprpriate terminatin message and halt. The decmpressin algrithm lks fr a left parenthesis "(". Nte that the string methd find() is useful t lcate a specific character, such as a left parenthesis. Then, use find() t lcate the next cmma and grab the slice in between t extract the substring representing the first number (which, f curse, needs t be cnverted t an integer). Use find() t extract the secnd number in a similar way. Nw that yu have the tw numbers, wrk backwards in the string and use slicing t btain the substring yu need t cpy. Repeat. We will make tw simplifying assumptins: the nly parentheses and backslashes in the cmpressed string are fr encding (i.e. the riginal string des nt cntain any parentheses r backslashes). Assignment Ntes 1. T clarify the prject specificatins, sample utput is prvided at the end f this dcument. 2. The cding standard fr CSE 231 is psted n the curse website: 3. Items 1-7 f the Cding Standard will be enfrced fr this prject. 4. A useful pattern when wrking with strings is t start with an empty string and add characters t it smething that wrks nicely here t build the decmpressed string. 5. Slicing is useful in multiple places in this assignment. Fr example, it is useful fr extracting the string t be cpied nce yu have extracted the pair f encding numbers. 6. T simplify yur prgram we will assume that parentheses are nly used fr encding. That is, if yu find a parenthesis, yu knw that yu have an encding string f the frmat (first_number,secnd_number). In additin, there will be n spaces within the parentheses f the encding string.

4 7. A useful first test case (frm the famus slilquy in Shakespeare s Hamlet) has nly ne substitutin and is shrt enugh t nt have any carriage returns: t be, r nt (14,6) 8. There are tw different appraches t slving this prblem: a. One uses a while statement fr the main lp, using find() t lk fr indices f the pair f numbers within the encding rdered pair. One thing t cnsider is when t stp the lp hw d yu knw when yu dn t have any left parentheses left? b. Using a fr statement as the main lp is pssible, but the lgic is messier because yu need Bleans t keep track f when yu are gathering characters fr the tw numbers in the encding rdered pair as well as a Blean that keeps track f when yu are wrking n extracting numbers s yu recgnize that cmma as separating the numbers. 9. Use the fllwing symblic cnstant fr the backslash character. It is a duble backslash because a backslash has a special meaning (fr example the \n used fr carriage return). Therefre, Pythn will interpret the duble backslash as a single backslash. BACKSLASH = "\\" Suggested Prcedure Slve the prblem using pencil and paper first. Yu cannt write a prgram until yu have figured ut hw t slve the prblem. This first step can be dne cllabratively with anther student. Hwever, nce the discussin turns t Pythn specifics and the subsequent writing f Pythn statements, yu must wrk n yur wn. Cycle thrugh the fllwing steps t incrementally develp yur prgram: Edit yur prgram t add new capabilities ne at a time. Using the phrase frm Hamlet s slilquy is a gd way t begin. In fact, yu might start with it as a string defined in yur prgram s yu dn t have t keep inputting it. Use a divide-and-cnquer apprach t slving the prblem. Fr example, start by simply finding and printing the first number f the first encding pair print it. Then find the secnd number f the first encding pair print it. Then use thse tw numbers t extract the string t be cpied and print it. Then mdify yur prgram t handle the phrase frm Hamlet s slilquy. Get that wrking befre trying t handle mre cmplex cases. Use the handin system t submit the current versin f yur prgram.

5 Be sure t use the handin system t submit the final versin f yur prgram. Be sure t lg ut when yu leave the rm, if yu re wrking in a public lab. The last versin f yur slutin is the prgram which will be graded by yur TA. Yu shuld use the handin system t back up yur partial slutins, especially if yu are wrking clse t the prject deadline. That is the easiest way t ensure that yu wn t lse significant prtins f yur wrk if yur machine fails r there are ther last-minute prblems. Yu wuld als be wise t save a cpy f yur cmpleted prgram in yur CSE file space (the H: drive n the lab machines) befre the prject deadline. If yu write yur prgram at hme and turn it in frm hme, yu shuld cpy it t yur CSE file space befre the deadline. In case f prblems with electrnic submissin, an archived cpy in the handin system r the CSE file space is the nly acceptable evidence f cmpletin. Sample Output

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

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

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

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

Syllabus Computer Science III: Data Structures and Algorithms Fall 2012 COMP 241 CRN: 13761

Syllabus Computer Science III: Data Structures and Algorithms Fall 2012 COMP 241 CRN: 13761 Syllabus Cmputer Science III: Data Structures and Algrithms Fall 2012 COMP 241 CRN: 13761 Basic Inf: Instructr: Tuesday/Thursday, 11:00am 12:15pm Buckman 222 Betsy (Williams) Sanders Office: Olendrf 419

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

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

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

Disk Redundancy (RAID)

Disk Redundancy (RAID) A Primer fr Business Dvana s Primers fr Business series are a set f shrt papers r guides intended fr business decisin makers, wh feel they are being bmbarded with terms and want t understand a cmplex tpic.

More information

Student Academic Learning Services Page 1 of 7. Statistics: The Null and Alternate Hypotheses. A Student Academic Learning Services Guide

Student Academic Learning Services Page 1 of 7. Statistics: The Null and Alternate Hypotheses. A Student Academic Learning Services Guide Student Academic Learning Services Page 1 f 7 Statistics: The Null and Alternate Hyptheses A Student Academic Learning Services Guide www.durhamcllege.ca/sals Student Services Building (SSB), Rm 204 This

More information

Remote Desktop Tutorial. By: Virginia Ginny Morris

Remote Desktop Tutorial. By: Virginia Ginny Morris Remte Desktp Tutrial By: Virginia Ginny Mrris 2008 Remte Desktp Tutrial Virginia Ginny Mrris Page 2 Scpe: The fllwing manual shuld accmpany my Remte Desktp Tutrial vide psted n my website http://www.ginnymrris.cm

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

Calling 9-1-1 from a Cell Phone

Calling 9-1-1 from a Cell Phone Calling 9-1-1 frm a Cell Phne When calling 9-1-1 frm a cell phne, yur lcatin may nt autmatically display t the 9-1-1 center as it des when calling frm mst hmes r businesses. Be Prepared t tell the 9-1-1

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

Backups and Backup Strategies

Backups and Backup Strategies IT Security Office Versin 2.3 02/19/10 Backups and Backup Strategies IT managers need t plan fr backups in terms f time and space required. Hwever, mst mdern backup sftware can cmpress the backup files

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

PART 6. Chapter 12. How to collect and use feedback from readers. Should you do audio or video recording of your sessions?

PART 6. Chapter 12. How to collect and use feedback from readers. Should you do audio or video recording of your sessions? TOOLKIT fr Making Written Material Clear and Effective SECTION 3: Methds fr testing written material with readers PART 6 Hw t cllect and use feedback frm readers Chapter 12 Shuld yu d audi r vide recrding

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

ARE YOU INTERESTED IN THE PRIOR LEARNING ASSESSMENT (PLA) PROGRAM?

ARE YOU INTERESTED IN THE PRIOR LEARNING ASSESSMENT (PLA) PROGRAM? ARE YOU INTERESTED IN THE PRIOR LEARNING ASSESSMENT (PLA) PROGRAM? City University f Seattle recgnizes that learning ccurs in many different ways and under varied circumstances. As a result, the University

More information

The Ohio Board of Regents Credit When It s Due process identifies students who

The Ohio Board of Regents Credit When It s Due process identifies students who Credit When It s Due/ Reverse Transfer FAQ fr students Ohi is participating in a natinal grant initiative, Credit When It s Due, designed t implement reverse-transfer, which is a prcess t award assciate

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

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

COE: Hybrid Course Request for Proposals. The goals of the College of Education Hybrid Course Funding Program are:

COE: Hybrid Course Request for Proposals. The goals of the College of Education Hybrid Course Funding Program are: COE: Hybrid Curse Request fr Prpsals The gals f the Cllege f Educatin Hybrid Curse Funding Prgram are: T supprt the develpment f effective, high-quality instructin that meets the needs and expectatins

More information

Grant Application Writing Tips and Tricks

Grant Application Writing Tips and Tricks Grant Applicatin Writing Tips and Tricks Grants are prvided by gvernment (lcal, state and natinal), charitable trusts, and by cmmunity rganisatins (eg Ltteries, Rtary, etc). Each grant has a specific purpse,

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

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

Copyrights and Trademarks

Copyrights and Trademarks Cpyrights and Trademarks Sage One Accunting Cnversin Manual 1 Cpyrights and Trademarks Cpyrights and Trademarks Cpyrights and Trademarks Cpyright 2002-2014 by Us. We hereby acknwledge the cpyrights and

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

TRAINING GUIDE. Crystal Reports for Work

TRAINING GUIDE. Crystal Reports for Work TRAINING GUIDE Crystal Reprts fr Wrk Crystal Reprts fr Wrk Orders This guide ges ver particular steps and challenges in created reprts fr wrk rders. Mst f the fllwing items can be issues fund in creating

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

Social Media Service

Social Media Service Cnscius Slutins Prduct Briefing Scial Media Service December 2010 Cnscius Slutins Ltd. Ryal Lndn Buildings 42-46 Baldwin Street Bristl BS1 1PN 0117 325 0200 supprt@cnscius.c.uk Cnscius Slutins Scial Media

More information

What Happens To My Benefits If I Get a Bunch of Money? TANF Here is what happens if you are on the TANF program when you get lump-sum income:

What Happens To My Benefits If I Get a Bunch of Money? TANF Here is what happens if you are on the TANF program when you get lump-sum income: 126 Sewall Street Augusta, Maine 04330-6822 TTY/Vice: (207) 626-7058 Fax: (207) 621-8148 www.mejp.rg What Happens T My Benefits If I Get a Bunch f Mney? Each prgram, (TANF, SSI, MaineCare, etc.) has its

More information

FORM ADV (Paper Version) UNIFORM APPLICATION FOR INVESTMENT ADVISER REGISTRATION AND REPORT FORM BY EXEMPT REPORTING ADVISERS

FORM ADV (Paper Version) UNIFORM APPLICATION FOR INVESTMENT ADVISER REGISTRATION AND REPORT FORM BY EXEMPT REPORTING ADVISERS APPENDIX A FORM ADV (Paper Versin) UNIFORM APPLICATION FOR INVESTMENT ADVISER REGISTRATION AND REPORT FORM BY EXEMPT REPORTING ADVISERS Frm ADV: General Instructins Read these instructins carefully befre

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

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

The Stanley Foundation 209 Iowa Avenue Muscatine, IA 52761 563-264-1500 563-264-0864 FAX EVENT PLANNER S GUIDE

The Stanley Foundation 209 Iowa Avenue Muscatine, IA 52761 563-264-1500 563-264-0864 FAX EVENT PLANNER S GUIDE The Stanley Fundatin 209 Iwa Avenue Muscatine, IA 52761 563-264-1500 563-264-0864 FAX EVENT PLANNER S GUIDE Table f Cntents Abut the Nw Shwing Event-in-a-Bx Tlkit...2 Event Planning Checklist...4 Pre-Event

More information

Custom Portlets. an unbiased review of the greatest Practice CS feature ever. Andrew V. Gamet

Custom Portlets. an unbiased review of the greatest Practice CS feature ever. Andrew V. Gamet Custm Prtlets an unbiased review f the greatest Practice CS feature ever Andrew V. Gamet Descriptin In Practice CS, the firm can use any f the fur dashbards t quickly display relative infrmatin. The Firm,

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

Segment-oriented Recovery

Segment-oriented Recovery Advanced Tpics in Operating Systems, CS262a Prf. Eric A. Brewer (with help frm Rusty Sears) Segment-riented Recvery ARIES wrks great but is 20+ years ld and has sme prblems: viewed as very cmplex n available

More information

Mobile Workforce. Improving Productivity, Improving Profitability

Mobile Workforce. Improving Productivity, Improving Profitability Mbile Wrkfrce Imprving Prductivity, Imprving Prfitability White Paper The Business Challenge Between increasing peratinal cst, staff turnver, budget cnstraints and pressure t deliver prducts and services

More information

What Does Specialty Own Occupation Really Mean?

What Does Specialty Own Occupation Really Mean? What Des Specialty Own Occupatin Really Mean? Plicy definitins are cnfusing, nt nly t cnsumers but als t many f the insurance prfessinals wh sell them. Belw we will try t prvide an understandable explanatin

More information

CMT for Coexistence 3.4.3. Release Notes

CMT for Coexistence 3.4.3. Release Notes CMT fr Cexistence 3.4.3 Release Ntes May 2015 Table f Cntents What s New in Versin 3.4.3... 3 Release Ntes 3.4.3... 3 On the Fly Decryptin and Encryptin... 4 Prerequisites & Settings... 4 Hw it Wrks...

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

Personal Financial Literacy: An Introduction to Financial Planning

Personal Financial Literacy: An Introduction to Financial Planning Persnal Financial Literacy: An Intrductin t Financial Planning Overview In this intrductry lessn n persnal financial literacy, students will discuss the imprtance f financial planning and the varius steps

More information

Cancer Treatments. Cancer Education Project. Overview:

Cancer Treatments. Cancer Education Project. Overview: Cancer Educatin Prject Cancer Treatments Overview: This series f activities is designed t increase students understanding f the variety f cancer treatments. Students als explre hw the txicity f a chemtherapy

More information

IMPORTANT INFORMATION ABOUT MEDICAL CARE FOR YOUR WORK-RELATED INJURY OR ILLNESS

IMPORTANT INFORMATION ABOUT MEDICAL CARE FOR YOUR WORK-RELATED INJURY OR ILLNESS IMPORTANT INFORMATION ABOUT MEDICAL CARE FOR YOUR WORK-RELATED INJURY OR ILLNESS MEDICAL PROVIDER NETWORK (MPN) NOTIFICATION If yu are injured at wrk, Califrnia Law requires yur emplyer t prvide and pay

More information

Legacy EMR Data Conversions

Legacy EMR Data Conversions Legacy EMR Data Cnversins Agenda Abut us Drivers fr EMR Replacement Things t Cnsider Tp 5 Reasns EMR Cnversins Fail Optins fr Legacy EMR Cnversin Case Study Abut Us Health efrmatics is a healthcare IT

More information

What payments will I need to make during the construction phase? Will the lender advance construction funds prior to the work being completed?

What payments will I need to make during the construction phase? Will the lender advance construction funds prior to the work being completed? Q&A What is a cnstructin lan? A cnstructin lan prvides the financing fr the cnstructin f yur new hme. Cnstructin lans may be structured as a single r tw-settlement transactin. Cnstructin lans culd include

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

SUMMARY This is what Business Analysts do in the real world when embarking on a new project: they analyse

SUMMARY This is what Business Analysts do in the real world when embarking on a new project: they analyse S yu want t be a Business Analyst? Analyst analyse thyself. SUMMARY This is what Business Analysts d in the real wrld when embarking n a new prject: they analyse Why? Why are we ding this prject - what

More information

CONTENTS UNDERSTANDING PPACA. Implications of PPACA Relative to Student Athletes. Institution Level Discussion/Decisions.

CONTENTS UNDERSTANDING PPACA. Implications of PPACA Relative to Student Athletes. Institution Level Discussion/Decisions. This dcument is intended t prvide NCAA member institutins with an infrmatinal guide regarding the ptential implicatins f the Patient Prtectin and Affrdable Care Act f 2010 (PPACA) when fully implemented

More information

Trends and Considerations in Currency Recycle Devices. What is a Currency Recycle Device? November 2003

Trends and Considerations in Currency Recycle Devices. What is a Currency Recycle Device? November 2003 Trends and Cnsideratins in Currency Recycle Devices Nvember 2003 This white paper prvides basic backgrund n currency recycle devices as cmpared t the cmbined features f a currency acceptr device and a

More information

Licensing Windows Server 2012 for use with virtualization technologies

Licensing Windows Server 2012 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents This

More information

METU. Computer Engineering

METU. Computer Engineering METU Cmputer Engineering CENG 491 Cmputer Engineering Design I AKAMAI SYSTEMS Members f the Team: Ahmet Emin Tsun e141801@metu.edu.tr Uğur Can Tekin e134800@metu.edu.tr Hasan İşler e134758@metu.edu.tr

More information

Corporations Q&A. Shareholders. 2006 Edward R. Alexander, Jr.

Corporations Q&A. Shareholders. 2006 Edward R. Alexander, Jr. Crpratins Q&A. What is a crpratin and why frm ne? A crpratin is a business entity that is separate and distinct frm its wners. It can enter cntracts, sue and be sued withut invlving its wners (the sharehlders).

More information

How to Reduce Project Lead Times Through Improved Scheduling

How to Reduce Project Lead Times Through Improved Scheduling Hw t Reduce Prject Lead Times Thrugh Imprved Scheduling PROBABILISTIC SCHEDULING & BUFFER MANAGEMENT Cnventinal Prject Scheduling ften results in plans that cannt be executed and t many surprises. In many

More information

Watlington and Chalgrove GP Practice - Patient Satisfaction Survey 2011

Watlington and Chalgrove GP Practice - Patient Satisfaction Survey 2011 Watlingtn and Chalgrve GP - Patient Satisfactin Survey 2011 Backgrund During ne week in Nvember last year patients attending either the Chalgrve r the Watlingtn surgeries were asked t cmplete a survey

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

Department of Justice, Criminal Justice Standards Division Contact: Trevor Allen (919) 779-8211

Department of Justice, Criminal Justice Standards Division Contact: Trevor Allen (919) 779-8211 Title: Annual In-Service Training Agency: Department f Justice, Criminal Justice Standards Divisin Cntact: Trevr Allen (919) 779-8211 Impact Summary: State Gvernment: N Lcal Gvernment: N (minimal) Substantial

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

CHECKING ACCOUNTS AND ATM TRANSACTIONS

CHECKING ACCOUNTS AND ATM TRANSACTIONS 1 Grades 6-8 Lessn 1 CHECKING ACCOUNTS AND ATM TRANSACTIONS Tpic t Teach: This lessn is intended fr middle schl students in sixth thrugh eighth grades during a frty minute time perid. The lessn teaches

More information

2. How do you apply for Admission to the Certificate?

2. How do you apply for Admission to the Certificate? 1. Wh is eligible fr the Certificate? Thse eligible include graduate students wh are currently enrlled in any master's r dctral prgram n the FSU campus; writers frm the cmmunity wh are nt currently enrlled

More information

Information Guide Booklet. Home Loans

Information Guide Booklet. Home Loans Infrmatin Guide Bklet Hme Lans This Infrmatin Guide bklet prvides yu with general infrmatin nly. It will als help yu t better understand any recmmendatins we have made fr yu. Infrmatin Guide Hme Lans January

More information

Welcome to Microsoft Access Basics Tutorial

Welcome to Microsoft Access Basics Tutorial Welcme t Micrsft Access Basics Tutrial After studying this tutrial yu will learn what Micrsft Access is and why yu might use it, sme imprtant Access terminlgy, and hw t create and manage tables within

More information

Virtual Meetings and Virtual Teams Using Technology to Work Smarter

Virtual Meetings and Virtual Teams Using Technology to Work Smarter http://www.psu.edu/president/pia/innvatin/ INNOVATION INSIGHT SERIES NUMBER 9 Virtual Meetings and Virtual Teams Using Technlgy t Wrk Smarter Yu need t have a meeting. Sme f the peple yu d like t include

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

In addition to assisting with the disaster planning process, it is hoped this document will also::

In addition to assisting with the disaster planning process, it is hoped this document will also:: First Step f a Disaster Recver Analysis: Knwing What Yu Have and Hw t Get t it Ntes abut using this dcument: This free tl is ffered as a guide and starting pint. It is des nt cver all pssible business

More information

NEXT MARKETING DIGITAL MARKETING PACKAGE ADWORDS

NEXT MARKETING DIGITAL MARKETING PACKAGE ADWORDS NEXT MARKETING DIGITAL MARKETING PACKAGE ADWORDS 2014 ADWORDS DIGITAL MARKETING HOW ADWORDS CAN GENERATE LEADS FOR YOUR BUSINESS OVERVIEW Adwrds is the Ggle advertising mechanism t generate traffic t yur

More information

KronoDesk Migration and Integration Guide Inflectra Corporation

KronoDesk Migration and Integration Guide Inflectra Corporation / KrnDesk Migratin and Integratin Guide Inflectra Crpratin Date: September 24th, 2015 0B Intrductin... 1 1B1. Imprting frm Micrsft Excel... 2 6B1.1. Installing the Micrsft Excel Add-In... 2 7B1.1. Cnnecting

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

Group 3 Flip Chart Notes

Group 3 Flip Chart Notes MDH-DLI Sympsium -- Meeting Mandates, Making the Cnnectin: Wrkers Cmpensatin Electrnic Health Care Transactins -- Nvember 5, 2014 Grup 3 Flip Chart Ntes Meeting Mandates, Making the Cnnectin: Wrkers Cmpensatin

More information

Appendix A Page 1 of 5 DATABASE TECHNICAL REQUIREMENTS AND PRICING INFORMATION. Welcome Baby and Select Home Visitation Programs Database

Appendix A Page 1 of 5 DATABASE TECHNICAL REQUIREMENTS AND PRICING INFORMATION. Welcome Baby and Select Home Visitation Programs Database Appendix A Page 1 f 5 The items in the list f database technical requirements belw was develped thrugh several meetings between First 5 LA Research and Evaluatin, Infrmatin Technlgy, and Prgram Develpment

More information

March 2016 Group A Payment Issues: Missing Information-Loss Calculation letters ( MILC ) - deficiency resolutions: Outstanding appeals:

March 2016 Group A Payment Issues: Missing Information-Loss Calculation letters ( MILC ) - deficiency resolutions: Outstanding appeals: The fllwing tpics were discussed in the March 24, 2016 meeting with law firms representing VCF claimants. Grup A Payment Issues: We cntinue t fcus n paying Grup A claims in full and are meeting the schedule

More information

Website Design Worksheet

Website Design Worksheet Website Design Wrksheet The mst crucial and imprtant part f having a website designed, r redesigned is t set gals and decide up frnt what yu want yur website t d. What is the purpse f yur new website?

More information

Backing Up and Restoring Your MySQL Database From the command prompt

Backing Up and Restoring Your MySQL Database From the command prompt Backing Up and Restring Yur MySQL Database Frm the cmmand prmpt In this article, it will utline tw easy ways f backing up and restring databases in MySQL. The easiest way t backup yur database wuld be

More information

Access to the Ashworth College Online Library service is free and provided upon enrollment. To access ProQuest:

Access to the Ashworth College Online Library service is free and provided upon enrollment. To access ProQuest: PrQuest Accessing PrQuest Access t the Ashwrth Cllege Online Library service is free and prvided upn enrllment. T access PrQuest: 1. G t http://www.ashwrthcllege.edu/student/resurces/enterlibrary.html

More information

Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall

Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall Implementing iflder Server in the DMZ with iflder Data inside the Firewall Nvell Cl Slutins AppNte www.nvell.cm/clslutins JULY 2004 OBJECTIVES The bjectives f this dcumentatin are as fllws: T cnfigure

More information

HOW TO SELECT A LIFE INSURANCE COMPANY

HOW TO SELECT A LIFE INSURANCE COMPANY HOW TO SELECT A LIFE INSURANCE COMPANY There will prbably be hundreds f life insurance cmpanies t chse frm when yu decide t purchase a life insurance plicy. Hw d yu decide which ne? Mst cmpanies are quite

More information

WHITE PAPER. Vendor Managed Inventory (VMI) is Not Just for A Items

WHITE PAPER. Vendor Managed Inventory (VMI) is Not Just for A Items WHITE PAPER Vendr Managed Inventry (VMI) is Nt Just fr A Items Why it s Critical fr Plumbing Manufacturers t als Manage Whlesalers B & C Items Executive Summary Prven Results fr VMI-managed SKUs*: Stck-uts

More information

Creating Your First Year/Semester Student s Group Advising session

Creating Your First Year/Semester Student s Group Advising session 1 Creating Yur First Year/Semester Student s Grup Advising sessin This dcument is meant as a spring bard t get yu thinking abut yur wn grup advising sessins based n yur campus demgraphics. This is nt an

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

Perl for OpenVMS Alpha

Perl for OpenVMS Alpha Perl fr OpenVMS Alpha Installatin Guide and Release Ntes January 25, 2002 Perl fr OpenVMS Versin 5.6.1 CPQ-AXPVMS-PERL-V0506-1-1.PCSI-DCX-AXPEXE On this page yu'll find infrmatin abut: Sftware prerequisites

More information

THE EMPLOYMENT LAW DISPUTE SPECIALISTS DAMAGES BASED AGREEMENT. Your Employment Tribunal claim relating to your employment with...

THE EMPLOYMENT LAW DISPUTE SPECIALISTS DAMAGES BASED AGREEMENT. Your Employment Tribunal claim relating to your employment with... THE EMPLOYMENT LAW DISPUTE SPECIALISTS DAMAGES BASED AGREEMENT 1. What is cvered by this agreement Yur Emplyment Tribunal claim relating t yur emplyment with... 2. What is nt cvered by this agreement 2.1

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

Retirement Planning Options Annuities

Retirement Planning Options Annuities Retirement Planning Optins Annuities Everyne wants a glden retirement. But saving fr retirement is n easy task. The baby bmer generatin is graying. Mre and mre peple are appraching retirement age. With

More information

Licensing Windows Server 2012 R2 for use with virtualization technologies

Licensing Windows Server 2012 R2 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 R2 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 R2 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents

More information

Environmental Science

Environmental Science Envirnmental Science Rbert Fuhrman rfuhrman@cvenantschl.rg 434.220.7335 Curse Descriptin: This curse is an interdisciplinary apprach t the study f Earth s ecsystems and the interactins f man with the natural

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

Module 3: Checklists, Forms, and Templates and Disaster Preparedness Planning

Module 3: Checklists, Forms, and Templates and Disaster Preparedness Planning Self-Guided Curse Presented by Julie Perrine, CPS/CAP, MBTI Certified Funder and CEO, All Things Admin Mdule 3: Checklists, Frms, and Templates and Disaster Preparedness Planning Mdule 3 Overview: In tday

More information

EMR Certification Comprehensive Care Management Billing Support Specification

EMR Certification Comprehensive Care Management Billing Support Specification EMR Certificatin Cmprehensive Care Management Billing Supprt Specificatin Versin 1.0 December 1, 2015 Table f Cntents 1 Intrductin... 3 2 Requirements... 4 2.1 Billing Requirements... 5 2.2 Billing Alert

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

PBS TeacherLine Course Syllabus

PBS TeacherLine Course Syllabus 1 Title Fstering Cperative Learning, Discussin, and Critical Thinking in Elementary Math (Grades 1-5) Target Audience This curse is intended fr pre-service and in-service grades 1-5 teachers. Curse Descriptin

More information

Common applications (append <space>& in BASH shell for long running applications)

Common applications (append <space>& in BASH shell for long running applications) CS 111 Summary User Envirnment Terminal windw: Prmpts user fr cmmands. BASH shell tips: fr cmmand line cmpletin. / t step backward/frward thrugh cmmand histry.! will re-execute

More information

Frequently Asked Questions about the Faith A. Fields Nursing Scholarship Loan

Frequently Asked Questions about the Faith A. Fields Nursing Scholarship Loan ARKANSAS STATE BOARD OF NURSING 1123 S. University Avenue, Suite 800, University Twer Building, Little Rck, AR 72204 Phne: (501) 686-2700 Fax: (501) 686-2714 www.arsbn.rg Frequently Asked Questins abut

More information

Title IV Refund Policy (R2T4)

Title IV Refund Policy (R2T4) Title IV Refund Plicy (R2T4) Charter Oak State Cllege s revised Refund Plicy cmplies with the amended 34 CFR Sectin 668.22 f the Higher Educatin Amendment f 1998. This plicy reflects new regulatins that

More information

Patient Participation Report

Patient Participation Report Patient Participatin Reprt In 2011, Westngrve Partnership decided t establish a PPG (Patient Participatin Grup) that wuld allw us t engage with ur patients, receive feedback frm them and ensure that they

More information

Master of Science Program Requirements in Earth Sciences

Master of Science Program Requirements in Earth Sciences Master f Science Prgram Requirements in Earth Sciences 1. Read the Graduate Schl Rules fr a Master f Science Degree! We have a cuple f mre restrictive requirements, but the graduate schl requirements are

More information

ICD-10 Frequently Asked Questions: (resource CMS website)

ICD-10 Frequently Asked Questions: (resource CMS website) ICD-10 Frequently Asked Questins: (resurce CMS website) 1. Will ICD-9-CM cdes be accepted n claims with FROM dates f service r dates f discharge/through dates n r after Octber 1, 2015? N. ICD-9-CM cdes

More information

Frequently Asked Questions: CMMI Data Collection

Frequently Asked Questions: CMMI Data Collection Frequently Asked Questins: CMMI Data Cllectin 1. What are the minimum requirements fr a care manager s cmputer? 2. What data are cllected frm the practices as part f the CMMI grant? 3. What is the PAM?

More information