AP COMPUTER SCIENCE A 2016 GENERAL SCORING GUIDELINES

Size: px
Start display at page:

Download "AP COMPUTER SCIENCE A 2016 GENERAL SCORING GUIDELINES"

Transcription

1 AP COMPUTER SCIENCE A 2016 GENERAL SCORING GUIDELINES Apply the questin assessment rubric first, which always takes precedence. Penalty pints can nly be deducted in a part f the questin that has earned credit via the questin rubric. N part f a questin (a, b, c) may have a negative pint ttal. A given penalty can be assessed nly nce fr a questin, even if it ccurs multiple times r in multiple parts f that questin. A maximum f 3 penalty pints may be assessed per questin. 1-Pint Penalty v) Array/cllectin access cnfusin ([] get) w) Extraneus cde that causes side-effect (e.g., writing t utput, failure t cmpile) x) Lcal variables used but nne declared y) Destructin f persistent data (e.g., changing value referenced by parameter) z) Vid methd r cnstructr that returns a value N Penalty Extraneus cde with n side-effect (e.g., precnditin check, n-p) Spelling/case discrepancies where there is n ambiguity* Lcal variable nt declared prvided ther variables are declared in sme part private r public qualifier n a lcal variable Missing public qualifier n class r cnstructr header Keywrd used as an identifier Cmmn mathematical symbls used fr peratrs ( < > <> ) [] vs. () vs. <> = instead f == and vice versa length/size cnfusin fr array, String, List, r ArrayList; with r withut ( ) Extraneus [] when referencing entire array [i,j] instead f [i][j] Extraneus size in array declaratin, e.g., int[size] nums = new int[size]; Missing ; where structure clearly cnveys intent Missing where indentatin clearly cnveys intent Missing ( ) n parameter-less methd r cnstructr invcatins Missing ( ) arund if r while cnditins *Spelling and case discrepancies fr identifiers fall under the N Penalty categry nly if the crrectin can be unambiguusly inferred frm cntext. Fr example, ArayList instead f ArrayList. As a cunter example, nte that if the cde declares Bug bug;, then uses Bug.mve() instead f bug.mve(), the cntext des nt allw fr the reader t assume the bject instead f the class The Cllege Bard. Visit the Cllege Bard n the Web:

2 AP COMPUTER SCIENCE A 2016 SCORING GUIDELINES Questin 3: Crsswrd Part (a) tbelabeled 3 pints Intent: Return a blean value indicating whether a crsswrd grid square shuld be labeled with a psitive number +1 Checks blacksquares[r][c] +1 Checks fr black square/brder abve and black square/brder t the left (n bunds errrs) +1 Returns true if square shuld be labeled with psitive number; returns false therwise Part (b) Crsswrd cnstructr 6 pints Intent: Initialize each square in a crsswrd puzzle grid t have a clr (blean) and an integer label +1 puzzle = new Square[blackSquares.length][blackSquares[0].length]; (r equivalent) +1 Accesses all lcatins in puzzle (n bunds errrs) +1 Calls tbelabeled with apprpriate parameters +1 Creates and assigns new Square t lcatin in puzzle +1 Numbers identified squares cnsecutively, in rw-majr rder, starting at 1 +1 On exit: All squares in puzzle have crrect clr and number (minr errrs cvered in previus pints k) Questin-Specific Penalties -2 (p) Cnsistently uses incrrect name instead f puzzle -1 (q) Uses array[].length instead f array[num].length 2016 The Cllege Bard. Visit the Cllege Bard n the Web:

3 AP COMPUTER SCIENCE A 2016 CANONICAL SOLUTIONS Questin 3: Crsswrd Part (a): private blean tbelabeled(int r, int c, blean[][] blacksquares) return (!(blacksquares[r][c]) && (r == 0 c == 0 blacksquares[r - 1][c] blacksquares[r][c - 1])); Part (b): public Crsswrd(blean[][] blacksquares) puzzle = new Square[blackSquares.length][blackSquares[0].length]; int num = 1; fr (int r = 0; r < blacksquares.length; r++) fr (int c = 0; c < blacksquares[0].length; c++) if (blacksquares[r][c]) puzzle[r][c] = new Square(true, 0); else if (tbelabeled(r, c, blacksquares)) puzzle[r][c] = new Square(false, num); num++; else puzzle[r][c] = new Square(false, 0); These cannical slutins serve an expsitry rle, depicting general appraches t slutin. Each reflects nly ne instance frm the infinite set f valid slutins. The slutins are presented in a cding style chsen t enhance readability and facilitate understanding The Cllege Bard. Visit the Cllege Bard n the Web:

4 2016 The Cllege Bard. Visit the Cllege Bard n the Web:

5 2016 The Cllege Bard. Visit the Cllege Bard n the Web:

6 2016 The Cllege Bard. Visit the Cllege Bard n the Web:

7 2016 The Cllege Bard. Visit the Cllege Bard n the Web:

8 2016 The Cllege Bard. Visit the Cllege Bard n the Web:

9 2016 The Cllege Bard. Visit the Cllege Bard n the Web:

10 AP COMPUTER SCIENCE A 2016 SCORING COMMENTARY Questin 3 Overview This questin used a tw-dimensinal (2-D) array f bjects t represent a crsswrd puzzle. In part (a) students were asked t write a blean methd that determines whether r nt a specific square in the puzzle shuld be numbered based n specified labeling rules. Students needed t demnstrate an understanding f blean data structures, writing and evaluating blean expressins, and returning crrect blean values. Students were als required t demnstrate an understanding f bunds checking and indexing in a 2-D array. This lgic needed t be implemented utilizing given methd parameters. In part (b) students were asked t write a cnstructr that initializes the instance variable and explicitly calls the methd defined in part (a) t build a puzzle, square by square. Students were required t demnstrate an understanding f bject instantiatin by initializing the class instance variable and a Square bject using apprpriate parameter values. Students were required t demnstrate an understanding f 2-D array prcessing by traversing a 2-D array in rw-majr rder, accessing each psitin f the array withut ging ut f bunds. Students were als required t identify squares that needed t be cnsecutively numbered by calling the previusly defined tbelabeled methd using apprpriate parameters. Sample: 3A Scre: 8 In part (a) the student checks the square at rw r, clumn c and crrectly implements the crsswrd labeling rules by checking fr a white square in the first rw r first clumn, r fr a white square with a black square t its left r abve. N checks cause a bunds errr. The lgic crrectly returns true if the square shuld be numbered and false therwise. Part (a) earned 3 pints. In part (b) the student crrectly instantiates the instance variable puzzle with the same dimensins as the parameter blacksquares. All lcatins in puzzle are accessed withut bunds errrs and assigned a Square bject, but the assignment is missing the new peratr, s the "assign new Square" pint was nt earned. Labeled squares, identified by a crrect call t the tbelabeled methd, are numbered cnsecutively in rw-majr rder starting at 1. Squares that are nt labeled are numbered with 0. Part (b) earned 5 pints. Sample: 3B Scre: 5 In part (a) the student fails t check the square at rw r, clumn c, s the first rubric pint was nt earned. The square abve and the square t the left are checked with n bunds errr, s the secnd rubric pint was earned. Because the lgic des nt include checking the clr f the square t be labeled, the third rubric pint was nt earned. Part (a) earned 1 pint. In part (b) the student crrectly instantiates the instance variable puzzle with the same dimensins as the parameter blacksquares. All lcatins in puzzle are accessed withut bunds errrs and assigned a crrectly cnstructed Square bject. The student fails t call the tbelabeled methd, s the "calls tbelabelled" pint was nt earned. Squares are numbered cnsecutively in rw-majr rder starting at 1. Squares that are nt labeled are numbered with 0. Because the squares t be labeled are nt crrectly identified (and because all created squares are black), the final pint was nt earned. Part (b) earned 4 pints The Cllege Bard. Visit the Cllege Bard n the Web:

11 AP COMPUTER SCIENCE A 2016 SCORING COMMENTARY Questin 3 (cntinued) Sample: 3C Scre: 3 In part (a) the student checks the square at rw r, clumn c and crrectly implements the crsswrd labeling rules by checking fr a white square in the first rw r first clumn, r fr a white square with a black square t its left r abve. N checks cause a bunds errr. The lgic used fr the return value is incrrect. In rder t be labeled, inner white squares will require a black square bth abve and t the left, but because nly ne adjacent black square is required, the student did nt earn the third rubric pint. Part (a) earned 2 pints. In part (b) the student incrrectly includes Square[][] t declare a lcal bject rather than instantiating the instance variable, puzzle, s the "initialize puzzle" pint was nt earned. All lcatins in puzzle are accessed withut bunds errrs and assigned a Square bject, but the cnstructr call t Square has an unknwn variable as its first parameter, s the "assign new Square" pint was nt earned. Labeled squares, identified by a call t the tbelabeled methd, are numbered with either 1 r 0, s the "number identified squares" pint was nt earned. The call t the tbelabeled methd uses a blean value as the third parameter rather than a 2-D blean array value, s the "calls tbelabelled" pint was nt earned. Unlabeled white squares are nt numbered with 0, s the final pint was nt earned. Part (b) earned 1 pint The Cllege Bard. Visit the Cllege Bard n the Web:

AP Computer Science A 2012 Scoring Guidelines

AP Computer Science A 2012 Scoring Guidelines AP Computer Science A 2012 Scoring Guidelines The College Board The College Board is a mission-driven not-for-profit organization that connects students to college success and opportunity. Founded in 1900,

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

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

Kepware Technologies ClientAce: Creating a Simple Windows Form Application

Kepware Technologies ClientAce: Creating a Simple Windows Form Application Kepware Technlgies ClientAce: Creating a Simple Windws Frm July, 2013 Ref. 1.03 Kepware Technlgies Table f Cntents 1. Overview... 1 1.1 Requirements... 1 2. Creating a Windws Frm... 1 2.1 Adding Cntrls

More information

Multiple Choice Questions Some Key Principles

Multiple Choice Questions Some Key Principles Multiple Chice Questins can be an efficient way t check students recall f factual knwledge and their ability t perfrm rutine prcedures. They ften wrk well fr frmative self-assessments and plling. Advantages

More information

AP Computer Science A 2010 Scoring Guidelines

AP Computer Science A 2010 Scoring Guidelines AP Computer Science A 2010 Scoring Guidelines The College Board The College Board is a not-for-profit membership association whose mission is to connect students to college success and opportunity. Founded

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

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

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

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

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

Dreamweaver MX 2004. Templates

Dreamweaver MX 2004. Templates Dreamweaver MX 2004 Templates Table f Cntents Dreamweaver Templates... 3 Creating a Dreamweaver template... 3 Types f template regins... 4 Inserting an editable regin... 4 Selecting editable regins...

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

System Business Continuity Classification

System Business Continuity Classification System Business Cntinuity Classificatin Business Cntinuity Prcedures Infrmatin System Cntingency Plan (ISCP) Business Impact Analysis (BIA) System Recvery Prcedures (SRP) Cre Infrastructure Criticality

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

B Bard Video Games - Cnflict F interest

B Bard Video Games - Cnflict F interest St Andrews Christian Cllege BOARD CONFLICT OF INTEREST POLICY April 2011 St Andrews Christian Cllege 2 Bard Cnflict f Interest Plicy Plicy Dcument Infrmatin Plicy Name Bard Cnflict f Interest Plicy Authr/Supervisr

More information

Louisiana 2D Bar Code General Information

Louisiana 2D Bar Code General Information 2007 Luisiana 2D Bar Cde General Infrmatin The Luisiana Department f Revenue is utilizing tw-dimensinal barcde technlgy fr the resident (IT-540) and nnresident (IT-540B) individual incme tax frms. We are

More information

ELEC 204 Digital System Design LABORATORY MANUAL

ELEC 204 Digital System Design LABORATORY MANUAL ELEC 204 Digital System Design LABORATORY MANUAL : Design and Implementatin f a 3-bit Up/Dwn Jhnsn Cunter Cllege f Engineering Kç University Imprtant Nte: In rder t effectively utilize the labratry sessins,

More information

Electronic Data Interchange (EDI) Requirements

Electronic Data Interchange (EDI) Requirements Electrnic Data Interchange (EDI) Requirements 1.0 Overview 1.1 EDI Definitin 1.2 General Infrmatin 1.3 Third Party Prviders 1.4 EDI Purchase Order (850) 1.5 EDI PO Change Request (860) 1.6 Advance Shipment

More information

UNIT PLAN. Methods. Soccer Unit Plan 20 days, 40 minutes in length. For 7-12 graders. Name

UNIT PLAN. Methods. Soccer Unit Plan 20 days, 40 minutes in length. For 7-12 graders. Name UNIT PLAN Methds Sccer Unit Plan 20 days, 40 minutes in length Fr 7-12 graders Name TABLE OF CONTENTS I. Title Page II. Table f Cntents III. Blck Time Frame IV. Unit Objectives V. Task Analysis VI. Evaluative

More information

ADMINISTRATION AND FINANCE POLICIES AND PROCEDURES TABLE OF CONTENTS

ADMINISTRATION AND FINANCE POLICIES AND PROCEDURES TABLE OF CONTENTS CONTROL Revisin Date: 1/21/03 TABLE OF CONTENTS 10.01 OVERVIEW OF ACCOUNTING FOR INVESTMENT IN PLANT... 2 10.01.1 CURRENT POLICY... 2 10.02 INVENTORY MAINTENANCE AND CONTROL... 3 10.02.1 PROCEDURES FOR

More information

NRF STANDARD COLOR AND SIZE CODES COLOR CODING GUIDE

NRF STANDARD COLOR AND SIZE CODES COLOR CODING GUIDE NRF STANDARD COLOR AND SIZE CODES COLOR CODING GUIDE GUIDELINES FOR SELECTING COLOR CODES PRINCIPLES FOR SELECTING COLOR CODES CODING FOR: ONE COLOR DIFFERENT SHADES STRIPES, PLAIDS & MULTI-COLOR DESIGNS

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

Statistical Analysis (1-way ANOVA)

Statistical Analysis (1-way ANOVA) Statistical Analysis (1-way ANOVA) Cntents at a glance I. Definitin and Applicatins...2 II. Befre Perfrming 1-way ANOVA - A Checklist...2 III. Overview f the Statistical Analysis (1-way tests) windw...3

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

Ad Hoc Reporting: Query Building Tyler SIS Version 10.5

Ad Hoc Reporting: Query Building Tyler SIS Version 10.5 Mdule: Tpic: Ad Hc Reprting Ad Hc Reprting Basics Ad Hc Reprting: Query Building Tyler SIS Versin 10.5 Cntents OBJECTIVE... 1 OVERVIEW... 2 PREREQUISITES... 2 PROCEDURES... 3 THE COLUMN LISTING LANDSCAPE...

More information

Offsite Records Storage Guidelines

Offsite Records Storage Guidelines Offsite Recrds Strage Guidelines Hw t send recrds t the Offsite strage facility (New bxes) Step 1 Obtain supplies and check if yur area has an accunt Offsite Recrds Bxes and Barcde Labels can be rdered

More information

Philadelphia Pittsburgh www.elc- pa.org

Philadelphia Pittsburgh www.elc- pa.org Philadelphia Pittsburgh www.elc- pa.rg The Schl District Financial Recvery Law (Act 141) and Basic Educatin Funding Frmulas Act 141, the Schl District Financial Recvery Law ( financially distressed schl

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

Holyoke Public Schools Mathematics Curriculum Map Grade 3. Surveys and Line Plots

Holyoke Public Schools Mathematics Curriculum Map Grade 3. Surveys and Line Plots Hlyke Public Schls Mathematics Curriculum Map Grade 3 Surveys and Line Plts Table f Cntents Curriculum Map Outline...4 Mathematic Evidence f Learning Artifacts.5 Prbing Questins fr Accuntable Talk...6

More information

SOME SAMPLE CLASSROOM INTERVENTIONS FOR LANGUAGE-BASED PROBLEMS

SOME SAMPLE CLASSROOM INTERVENTIONS FOR LANGUAGE-BASED PROBLEMS SOME SAMPLE CLASSROOM INTERVENTIONS FOR LANGUAGE-BASED PROBLEMS Area: Listening/Reading Cmprehensin Prblem: Student des nt fllw verbal directins. Teach the student skills fr fllwing verbal directins such

More information

TEAS Information Packet Northampton Community College Department of Nursing RN and Advanced Placement RN Programs

TEAS Information Packet Northampton Community College Department of Nursing RN and Advanced Placement RN Programs 1 TEAS Infrmatin Packet Nrthamptn Cmmunity Cllege Department f Nursing RN and Advanced Placement RN Prgrams This bklet cntains essential infrmatin regarding TEAS testing required f all applicants requesting

More information

Burner Troubleshooting Guide

Burner Troubleshooting Guide IMMEDIATE RESPONSE TECHNOLOGIES, INC. Burner Trubleshting Guide Flash Water Heater (all standard types) Created By: Stefan Swan Infrmatin in this guide was deemed technically accurate at the time f printing.

More information

Info folder for the certification as Junior Project Manager (IPMA Level D )

Info folder for the certification as Junior Project Manager (IPMA Level D ) Inf flder fr the certificatin as Junir Prject Manager (IPMA Level D ) 1 General infrmatin... 2 1.1 Overview f the certificatin prcess... 2 1.2 Requirements fr the certificatin... 2 1.3 Overview f the certificatin

More information

10.0 Electronic Data Interchange (EDI) Requirements

10.0 Electronic Data Interchange (EDI) Requirements 10.0 Electrnic Data Interchange (EDI) Requirements 10.1 General Infrmatin The Cmpany requires all vendrs t exchange business dcuments via EDI. These dcuments include; purchase rders (850 PO), purchase

More information

Some Statistical Procedures and Functions with Excel

Some Statistical Procedures and Functions with Excel Sme Statistical Prcedures and Functins with Excel Intrductry Nte: Micrsft s Excel spreadsheet prvides bth statistical prcedures and statistical functins. The prcedures are accessed by clicking n Tls in

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

The AppSec How-To: Choosing a SAST Tool

The AppSec How-To: Choosing a SAST Tool The AppSec Hw-T: Chsing a SAST Tl Surce Cde Analysis Made Easy GIVEN THE WIDE RANGE OF SOURCE CODE ANALYSIS TOOLS, SECURITY PROFESSIONALS, AUDITORS AND DEVELOPERS ALIKE ARE FACED WITH THE QUESTION: Hw

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

Getting Your Fingers In On the Action

Getting Your Fingers In On the Action Rry Garfrth Getting Yur Fingers In On the Actin Once yu are able t strum with yur fingers, yu can begin fingerpicking! The first task is t learn yur hand psitin and t learn which fingers are used n which

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

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

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

OP 8: Building Energy Consumption

OP 8: Building Energy Consumption OP 8: Building Energy Cnsumptin 6 pints available A. Credit Ratinale This credit recgnizes institutins that have reduced their building energy usage. B. Criteria Part 1 Institutin has reduced its ttal

More information

Maritime and Coastguard Agency LogMARINE INFORMATION NOTE. Revalidating a Certificate of Competency: New Requirements for Masters and Officers

Maritime and Coastguard Agency LogMARINE INFORMATION NOTE. Revalidating a Certificate of Competency: New Requirements for Masters and Officers Maritime and Castguard Agency LgMARINE INFORMATION NOTE MIN 494 (M) Revalidating a Certificate f Cmpetency: New Requirements fr Masters and Officers Ntice t all wners, peratrs, managers, Masters (STCW)

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

Case Scenarios and Sample Claim Form Entries for Outcomes Reporting for Medicare Part B Therapy Services

Case Scenarios and Sample Claim Form Entries for Outcomes Reporting for Medicare Part B Therapy Services Case Scenaris and Sample Claim Frm Entries fr Outcmes Reprting fr Medicare Part B Therapy Services The American Speech Language Hearing Assciatin develped the fllwing scenaris t help speech language pathlgists

More information

Computer Science Undergraduate Scholarship

Computer Science Undergraduate Scholarship Cmputer Science Undergraduate Schlarship R E G U L A T I O N S The Cmputer Science Department at the University f Waikat runs an annual Schlarship examinatin which ffers up t 10 undergraduate Schlarships

More information

North Carolina Department of Commerce Division of Employment Security

North Carolina Department of Commerce Division of Employment Security Nrth Carlina Department f Cmmerce Divisin f Emplyment Security Pat McCrry, Gvernr Sharn Allred Decker, Secretary Dale R. Flwell, Assistant Secretary May 20, 2013 TO: FROM: SUBJECT: Nrth Carlina Emplyers,

More information

PIROUETT! June 2015 GENERALITIES

PIROUETT! June 2015 GENERALITIES GENERALITIES 1.5.4. Penalty by the Difficulty (D) Judge: 0.50 pint if music with vice and wrds is used but the cach des nt specify n D frm which exercise uses music with vice and wrds Official Frm: Use

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

In preparation for transition, please note the following dates and related actions:

In preparation for transition, please note the following dates and related actions: March 13 th, 2014 ACTION REQUIRED: Effective date f change April 27 th, 2015 Dear Valued Supplier, Beginning April 27 th, 2015 Zetis is mving t new ERP system (SAP) fr the US rganizatin that will enable

More information

4394 Gazzetta tal-gvern ta Malta MINISTRY OF FINANCE. Value Added Tax Department. Fiscal Cash Register Specifications

4394 Gazzetta tal-gvern ta Malta MINISTRY OF FINANCE. Value Added Tax Department. Fiscal Cash Register Specifications 4394 Gazzetta tal-gvern ta Malta MINISTRY OF FINANCE Value Added Tax Department Fiscal Cash Register Specificatins TYPE A: NON PORTABLE STAND ALONE FISCAL CASH REGISTER 1. LEGAL FRAMEWORK The Value Added

More information

An Innovative Outsourcing Solution for Ennis General Hospital. - Improved Radiology Services at Reduced Cost

An Innovative Outsourcing Solution for Ennis General Hospital. - Improved Radiology Services at Reduced Cost GLOBAL DIAGNOSTICS & ENNIS GENERAL HOSPITAL. An Innvative Outsurcing Slutin fr Ennis General Hspital - Imprved Radilgy Services at Reduced Cst Sinead O Cnnr General Manager, Glbal Diagnstics Ireland September

More information

Connecticut State Department of Education 2014-15 School Health Services Information Survey

Connecticut State Department of Education 2014-15 School Health Services Information Survey Cnnecticut State Department f Educatin 2014-15 Schl Health Services Infrmatin Survey General Directins fr Cmpletin by Schl Nurse Crdinatr/Supervisr This Schl Health Services Infrmatin Survey was designed

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

Merchant Management System. New User Guide CARDSAVE

Merchant Management System. New User Guide CARDSAVE Merchant Management System New User Guide CARDSAVE Table f Cntents Lgging-In... 2 Saving the MMS website link... 2 Lgging-in and changing yur passwrd... 3 Prcessing Transactins... 4 Security Settings...

More information

Operational Amplifier Circuits Comparators and Positive Feedback

Operational Amplifier Circuits Comparators and Positive Feedback Operatinal Amplifier Circuits Cmparatrs and Psitive Feedback Cmparatrs: Open Lp Cnfiguratin The basic cmparatr circuit is an p-amp arranged in the pen-lp cnfiguratin as shwn n the circuit f Figure. The

More information

Cork Education and Training Board. Programme Module for. Using Common Computer Applications. leading to. Level 4 FETAC. Computer Applications 4N1112

Cork Education and Training Board. Programme Module for. Using Common Computer Applications. leading to. Level 4 FETAC. Computer Applications 4N1112 Crk Educatin and Training Bard Crk Educatin and Training Bard Prgramme Mdule fr Using Cmmn Cmputer Applicatins leading t Level 4 FETAC Cmputer Applicatins 4N1112 Cmputer Applicatins 4N1112 May 2012/June

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

System Business Continuity Classification

System Business Continuity Classification Business Cntinuity Prcedures Business Impact Analysis (BIA) System Recvery Prcedures (SRP) System Business Cntinuity Classificatin Cre Infrastructure Criticality Levels Critical High Medium Lw Required

More information

PA 8: Affordability and Access

PA 8: Affordability and Access PA 8: Affrdability and Access 4 pints available A. Credit Ratinale This credit recgnizes institutins that are implementing strategies t imprve their accessibility and affrdability. Achieving a cllege degree

More information

Personal Selling. Lesson 22. 22.1 Objectives. 22.2 Meaning of Personal Selling

Personal Selling. Lesson 22. 22.1 Objectives. 22.2 Meaning of Personal Selling Persnal Selling Lessn 22 Persnal Selling When yu want t buy smething yu usually g t a cncerned shp and purchase it frm there. But, smetimes yu find peple bring certain gds r prducts and make them available

More information

Kronos Workforce Timekeeper Frequently Asked Questions

Kronos Workforce Timekeeper Frequently Asked Questions Krns Wrkfrce Timekeeper Frequently Asked Questins 1. I d nt have the Emplyee Time Reprting ptin listed in my Agra menu. What d I d? If yu are a new emplyee and can t see yur emplyee timecard, cnfirm with

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

Phi Kappa Sigma International Fraternity Insurance Billing Methodology

Phi Kappa Sigma International Fraternity Insurance Billing Methodology Phi Kappa Sigma Internatinal Fraternity Insurance Billing Methdlgy The Phi Kappa Sigma Internatinal Fraternity Executive Bard implres each chapter t thrughly review the attached methdlgy and plan nw t

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

.100 POLICY STATEMENT

.100 POLICY STATEMENT Treasury Management Operatins Sectin: Treasury Management Number: 105.100 Title: Treasury Management Operatins POLICY Index.100 POLICY STATEMENT.110 POLICY RATIONALE.120 AUTHORITY.130 APPROVAL AND EFFECTIVE

More information

Chapter 3: Cluster Analysis

Chapter 3: Cluster Analysis Chapter 3: Cluster Analysis 3.1 Basic Cncepts f Clustering 3.1.1 Cluster Analysis 3.1. Clustering Categries 3. Partitining Methds 3..1 The principle 3.. K-Means Methd 3..3 K-Medids Methd 3..4 CLARA 3..5

More information

Digital Documentaries Public Service Announcement (PSA) Work Plan

Digital Documentaries Public Service Announcement (PSA) Work Plan Digital Dcumentaries Public Service Annuncement (PSA) Wrk Plan Each sessin is preceded with a list f materials needed t cmplete the sessin. fall int ne f fur categries: Student Teacher Overhead Technlgy

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

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

APPENDIX 1. ANALYZING THE TRIANGLE PROBLEM. Copyright 2004 Collard 1 & Company Appendix 1 1

APPENDIX 1. ANALYZING THE TRIANGLE PROBLEM. Copyright 2004 Collard 1 & Company Appendix 1 1 APPENDIX 1. ANALYZING THE TRIANGLE PROBLEM Cpyright 2004 Cllard 1 & Cmpany 1 N bk n sftware testing is cmplete withut a discussin f the triangle prblem. Ed Kit. (This is meant as a jke, because this prblem

More information

Lecture 2: Supervised vs. unsupervised learning, bias-variance tradeoff

Lecture 2: Supervised vs. unsupervised learning, bias-variance tradeoff Lecture 2: Supervised vs. unsupervised learning, bias-variance tradeff Reading: Chapter 2 Stats 202: Data Mining and Analysis Lester Mackey September 23, 2015 (Slide credits: Sergi Bacallad) 1 / 24 Annuncements

More information

Loss Share Data Specifications Change Management Plan

Loss Share Data Specifications Change Management Plan Lss Share Data Specificatins Change Management Plan Last Updated: 2/27/2013 Table f Cntents I. Purpse... 3 II. Change Management Apprach... 3 III. Categries f Revisins... 4 IV. Help and Supprt... 6 Lss

More information

McAfee Enterprise Security Manager. Data Source Configuration Guide. Infoblox NIOS. Data Source: September 2, 2014. Infoblox NIOS Page 1 of 8

McAfee Enterprise Security Manager. Data Source Configuration Guide. Infoblox NIOS. Data Source: September 2, 2014. Infoblox NIOS Page 1 of 8 McAfee Enterprise Security Manager Data Surce Cnfiguratin Guide Data Surce: Infblx NIOS September 2, 2014 Infblx NIOS Page 1 f 8 Imprtant Nte: The infrmatin cntained in this dcument is cnfidential and

More information

Student Learning Objectives Assessment Report Criminal Justice Program. June 1, 2015

Student Learning Objectives Assessment Report Criminal Justice Program. June 1, 2015 Student Learning Objectives Assessment Reprt Criminal Justice Prgram June 1, 2015 Objectives & Curriculum Objective Mapping See attached revised Criminal Justice Assessment Mapping Tl (revised Spring 2014)

More information

1.3. The Mean Temperature Difference

1.3. The Mean Temperature Difference 1.3. The Mean Temperature Difference 1.3.1. The Lgarithmic Mean Temperature Difference 1. Basic Assumptins. In the previus sectin, we bserved that the design equatin culd be slved much easier if we culd

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

College Application Toolkit How to survive and thrive in the college application process

College Application Toolkit How to survive and thrive in the college application process Cllege Applicatin Tlkit Hw t survive and thrive in the cllege applicatin prcess Where t Apply Naviance SuperMatch Scattergrams Net price calculatr (beware f sticker shck) Fr specialty prgrams: advice frm

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

WinFlex Web Single Sign-On (EbixLife XML Format) Version: 1.5

WinFlex Web Single Sign-On (EbixLife XML Format) Version: 1.5 WinFlex Web Single Sign-On (EbixLife XML Frmat) Versin: 1.5 The gal f this dcument is t specify and explre the basic peratins that are required t facilitate a vendr applicatin requesting access t the WinFlex

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

EASTERN ARIZONA COLLEGE Database Design and Development

EASTERN ARIZONA COLLEGE Database Design and Development EASTERN ARIZONA COLLEGE Database Design and Develpment Curse Design 2011-2012 Curse Infrmatin Divisin Business Curse Number CMP 280 Title Database Design and Develpment Credits 3 Develped by Sctt Russell/Revised

More information

Maryland General Service (MGS) Area 29 Treatment Facilities Committee (TFC) TFC Instructions

Maryland General Service (MGS) Area 29 Treatment Facilities Committee (TFC) TFC Instructions Maryland General Service (MGS) Area 29 Treatment Facilities Cmmittee (TFC) TFC Instructins Lve And Service Facility Presentatin t Patients We are frm Alchlics Annymus (AA), fr AA, and ur service is fr

More information

As we need to close our existing systems in preparation for transition, please note the following dates:

As we need to close our existing systems in preparation for transition, please note the following dates: June 30, 2014 ACTION REQUIRED: Effective date f change August 25, 2014 Dear Valued Supplier, Beginning August 25, 2014 Zetis will be mving t a new ERP system (SAP) fr Belgium, Netherlands, and Luxemburg.

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

Table of Contents. Welcome to Employee Self Service... 3 Who Do I Call For Help?... 3

Table of Contents. Welcome to Employee Self Service... 3 Who Do I Call For Help?... 3 ALABAMA STATE UNIVERSITY HUMAN RESOURCES EMPLOYEE SELF SERVICE USER GUIDE 2 Table f Cntents Welcme t Emplyee Self Service... 3 Wh D I Call Fr Help?... 3 Hw d I access Emplyee Self Service?... 4 Persnal

More information

4.8. Set Operations. There are five main set theoretic operations, one corresponding to each of the logical connectives. Name

4.8. Set Operations. There are five main set theoretic operations, one corresponding to each of the logical connectives. Name 4.8. Set Operatins There are five main set theretic peratins, ne crrespnding t each f the lgical cnnectives. Set Operatin Name Lgical nnective Name mplement ~ P Negatin «Unin P Q Disjunctin» Intersectin

More information

Quantifying CDM Audit Results

Quantifying CDM Audit Results By: Rsemary Hlliday, MHA Principal, Hlliday & Assciates March 13, 2012 Quantifying CDM Audit Results D yu have a strategy fr the day yu re asked t estimate the impact f a Charge Master audit? As a savvy

More information

What are the qualifications for teachers and paraprofessionals who are hired to work in a preschool program?

What are the qualifications for teachers and paraprofessionals who are hired to work in a preschool program? FAQ n Indiana Title I Preschls Qualificatins What are the qualificatins fr teachers and paraprfessinals wh are hired t wrk in a preschl prgram? Preschl teachers and assistants are expected t meet the highest

More information

Introduction. The activity

Introduction. The activity Teacher Ntes Intrductin The shift frm the gecentric t helicentric accunts f ur surrundings is ne f the greatest shifts ever made in human thinking, nt least because it verthrew the authrity f ld bks as

More information

VET FEE-HELP Frequently Asked Questions for Students May 2010

VET FEE-HELP Frequently Asked Questions for Students May 2010 Hw d I apply? VET FEE-HELP Frequently Asked Questins fr Students May 2010 If yu are eligible fr VET FEE-HELP assistance and wuld like t btain a VET FEE-HELP lan, yu shuld btain a Request fr VET FEE-HELP

More information

INTRODUCTION Sharp Smart Board Quick reference Manual

INTRODUCTION Sharp Smart Board Quick reference Manual INTRODUCTION Sharp Smart Bard Quick reference Manual The Sharp Smart Bard is the 21st century answer t the 19 th century chalkbard. In a wrld that is autmatic and mves at a rate 100 times faster than befre,

More information

UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES

UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES REFERENCES AND RELATED POLICIES A. UC PPSM 2 -Definitin f Terms B. UC PPSM 12 -Nndiscriminatin in Emplyment C. UC PPSM 14 -Affirmative

More information

Symantec User Authentication Service Level Agreement

Symantec User Authentication Service Level Agreement Symantec User Authenticatin Service Level Agreement Overview and Scpe This Symantec User Authenticatin service level agreement ( SLA ) applies t Symantec User Authenticatin prducts/services, such as Managed

More information

SelectSurvey.NET User Manual Table of Contents

SelectSurvey.NET User Manual Table of Contents User Manual SelectSurvey.NET User Manual Table f Cntents User Manual 1 SelectSurvey.NET User Manual Table f Cntents 2 Creating Surveys 4 Designing Surveys 4 Templates 5 Libraries 6 Questin Item Types 7

More information

Biznet GIO Cloud - Build Site to Site VPNWith Cisco Router. Site to Site VPN with Cisco Router

Biznet GIO Cloud - Build Site to Site VPNWith Cisco Router. Site to Site VPN with Cisco Router Site t Site VPN with Cisc Ruter Intrductin This dcument is intended t guide yu thrugh the necessary steps t build a site-t-site VPN. Please nte a site-t-site VPN can nly be built frm a VPC therefre fr

More information