Transmission Errors. Error Detection and Correction. Networks: Transmission Errors

Size: px
Start display at page:

Download "Transmission Errors. Error Detection and Correction. Networks: Transmission Errors"

Transcription

1 Transmissin Errrs Errr Detectin and Crrectin 1

2 Transmissin Errrs Transmissin errrs are caused by: thermal nise {Shannn} impulse nise (e..g, arcing relays) signal distrtin during transmissin (attenuatin) crsstalk vice amplitude signal cmpressin (cmpanding) quantizatin nise (PCM) jitter (variatins in signal timings) receiver and transmitter ut f synch. 2

3 Errr Detectin and Crrectin errr detectin :: adding enugh etra bits t deduce that there is an errr but nt enugh bits t crrect the errr. If nly errr detectin is emplyed in a netwrk transmissin retransmissin is necessary t recver the frame (data link layer) r the packet (netwrk layer). At the data link layer, this is referred t as ARQ (Autmatic Repeat request). 3

4 Errr Detectin and Crrectin errr crrectin :: requires enugh additinal (redundant) bits t deduce what the crrect bits must have been. Eamples Hamming Cdes FEC = Frward Errr Crrectin fund in MPEG-4 fr streaming multimedia. 4

5 Hamming Cdes cdewrd :: a legal datawrd cnsisting f m data bits and r redundant bits. Errr detectin invlves determining if the received message matches ne f the legal cdewrds. Hamming distance :: the number f bit psitins in which tw bit patterns differ. Starting with a cmplete list f legal cdewrds, we need t find the tw cdewrds whse Hamming distance is the smallest. This determines the Hamming distance f the cde. 5

6 Errr Crrecting Cdes Nte Check bits ccupy pwer f 2 slts Figure 3-7. Use f a Hamming cde t crrect burst errrs. 6

7 (a) A cde with pr distance prperties (b) A cde with gd distance prperties = cdewrds = nn-cdewrds Cpyright 2000 The McGraw Hill Cmpanies Len-Garcia & Widjaja: Cmmunicatin Netwrks Figure

8 Hamming Cdes T detect d single bit errrs, yu need a d+1 cde distance. T crrect d single bit errrs, yu need a 2d+1 cde distance. In general, the price fr redundant bits is t epensive t d errr crrectin fr netwrk messages. Netwrk prtcls use errr detectin and ARQ. 8

9 Errr Detectin Remember errrs in netwrk transmissins are bursty. The percentage f damage due t errrs is lwer. It is harder t detect and crrect netwrk errrs. Linear cdes Single parity check cde :: take k infrmatin bits and appends a single check bit t frm a cdewrd. Tw-dimensinal parity checks IP Checksum Plynmial Cdes Eample: CRC (Cyclic Redundancy Checking) 9

10 General Errr Detectin System User infrmatin All inputs t channel satisfy pattern/cnditin Encder Channel Channel utput Pattern Checking Deliver user infrmatin r set errr alarm Cpyright 2000 The McGraw Hill Cmpanies Len-Garcia & Widjaja: Cmmunicatin Netwrks Figure

11 Errr Detectin System Using Check Bits Infrmatin bits Received infrmatin bits Recalculate check bits Calculate check bits Check bits Channel Received check bits Cmpare Infrmatin accepted if check bits match Len-Garcia & Widjaja: Cmmunicatin Netwrks Cpyright 2000 The McGraw Hill Cmpanies Figure

12 Tw-dimensinal Parity Check Cde Last clumn cnsists f check bits fr each rw Bttm rw cnsists f check bit fr each clumn Cpyright 2000 The McGraw Hill Cmpanies Len-Garcia & Widjaja: Cmmunicatin Netwrks Figure

13 One errr Tw errrs Three errrs Fur errrs Arrws indicate failed check bits Figure Cpyright 2000 The McGraw Hill Cmpanies

14 Internet Checksum unsigned shrt cksum(unsigned shrt *addr, int cunt) { /*Cmpute Internet Checksum fr cunt bytes * beginning at lcatin addr. */ register lng sum = 0; while ( cunt > 1 ) { /* This is the inner lp*/ sum += *addr++; cunt -=2; } /* Add left-ver byte, if any */ if ( cunt > 0 ) sum += *addr; /* Fld 32-bit sum t 16 bits */ while (sum >>16) sum = (sum & 0ffff) + (sum >> 16) ; } return ~sum; Cpyright 2000 The McGraw Hill Cmpanies Len-Garcia & Widjaja: Cmmunicatin Netwrks Figure

15 Plynmial Cdes Used etensively. [LG&W pp ] 167] Implemented using shift-register circuits fr speed advantages. Als called CRC (cyclic redundancy checking) because these cdes generate check bits. Plynmial cdes :: bit strings are treated as representatins f plynmials with ONLY binary cefficients (0 s and 1 s). 15

16 Plynmial Cdes The k bits f a message are regarded as the cefficient list fr an infrmatin plynmial f degree k-1. I :: i() = i k-1 + i k i + i k-1 k Eample: i() =

17 Plynmial Ntatin Encding prcess takes i() prduces a cdewrd plynmial b() that cntains infrmatin bits and additinal check bits that satisfy a pattern. Let the cdewrd have n bits with k infrmatin bits and n-k check bits. We need a generatr plynmial f degree n-k f the frm G = g() = n-k + g n-k g + 1 n-k-1 1 Nte the first and last cefficient are always 1. 17

18 CRC Cdewrd k infrmatin bits n-k check bits n bit cdewrd 18

19 Plynmial Arithmetic Additin: Multiplicatin: ( ) + ( ) = 7 + (1 +1) = ( +1)( ) = = = q() qutient Divisin: ) divisr 3 35 ) dividend = r() remainder Cpyright 2000 The McGraw Hill Cmpanies Len-Garcia & Widjaja: Cmmunicatin Netwrks Figure

20 CRC Algrithm CRC Steps: 1) Multiply i() by n-k (puts zers in (n-k) lw rder psitins) 2) Divide n-k i() by g() qutient remainder n-k i() = g() q() + r() 3) Add remainder r() t n-k i() (puts check bits in the n-k lw rder psitins): b() = n-k i() + r() transmitted cdewrd Cpyright 2000 The McGraw Hill Cmpanies Len-Garcia & Widjaja: Cmmunicatin Netwrks Figure

21 Infrmatin: (1,1,0,0) i() = Generatr plynmial: g()= Encding: 3 i() = ) Transmitted cdewrd: b() = b = (1,1,0,0,0,1,0) ) Cpyright 2000 The McGraw Hill Cmpanies Len-Garcia & Widjaja: Cmmunicatin Netwrks Figure

22 Cyclic Redundancy Checking Figure Calculatin f the plynmial cde checksum. 22

23 Generatr Plynmial Prperties fr Detecting Errrs GOAL :: minimize the ccurrence f an errr ging undetected. Undetected means E() / G() has n remainder. Cpyright 2000 The McGraw Hill Cmpanies Len-Garcia & Widjaja: Cmmunicatin Netwrks Figure

24 Generatr Plynmial Prperties fr Detecting Errrs 1. Single bit errrs: e() = i 0 i n-1 If g() has mre than ne term, it cannt divide e() 2. Duble bit errrs: e() = i + j 0 i < j n-1 = i (1 + j-i ) If g() is primitive plynmial, it will nt divide (1 + j-i ) fr j-i 2 n-k 1 3. Odd number f bit errrs: e(1) = 1 If number f errrs is dd. If g() has (+1) as a factr, then g(1) = 0 and all cdewrds have an even number f 1s. Cpyright 2000 The McGraw Hill Cmpanies Len-Garcia & Widjaja: Cmmunicatin Netwrks Figure

25 Generatr Plynmial Prperties fr Detecting Errrs 4. Errr bursts f length L: e() = i d() where deg(d()) = L-1 g() has degree n-k; g() cannt divide d() if deg(g())> deg(d()) L errr pattern d() ith psitin IfL = (n-k) r less: all errrs will be detected IfL = (n-k+1): deg(d()) = deg(g()) i.e. d() = g() is the nly undetectable errr pattern, fractin f bursts which are undetectable = 1/2 L-2 IfL > (n-k+1) : fractin f bursts which are undetectable = 1/2 n-k Cpyright 2000 The McGraw Hill Cmpanies Len-Garcia & Widjaja: Cmmunicatin Netwrks Figure

26 Standard Generating Plynmials CRC-16 = X 16 + X 15 + X CRC-CCITT= X 16 + X 12 + X CRC-32 = X 32 + X 26 + X 23 + X 22 IEEE 802 LAN standard + X 16 + X 12 + X 11 + X 10 + X 8 + X 7 + X 5 + X 4 + X 2 + X

27 Basic ARQ with CRC Packet sequence Transmitter Infrmatin frames Receiver Errr-free packet sequence Statin A Cntrl frames Statin B CRC Infrmatin packet Infrmatin Frame Header CRC Header Cntrl frame Cpyright 2000 The McGraw Hill Cmpanies Len-Garcia & Widjaja: Cmmunicatin Netwrks Figure

Introduction to Fractions and Mixed Numbers

Introduction to Fractions and Mixed Numbers Name Date Intrductin t Fractins and Mixed Numbers Please read the Learn prtin f this lessn while cmpleting this handut. The parts f a fractin are (shwn belw): 5 8 Fractins are used t indicate f a whle.

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

ConsumerBench 1.1. software benchmark data book. www.eembc.org

ConsumerBench 1.1. software benchmark data book. www.eembc.org CnsumerBench 1.1 sftware benchmark data bk Table f Cntents High Pass Grey-Scale Filter...2 JPEG...4 RGB t CMYK Cnversin...8 RGB t YIQ Cnversin... 10 1 CnsumerBench Versin 1.1 Benchmark Name: High Pass

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

Sheet 7 (Chapter 10)

Sheet 7 (Chapter 10) King Saud University College of Computer and Information Sciences Department of Information Technology CAP240 First semester 1430/1431 Multiple-choice Questions Sheet 7 (Chapter 10) 1. Which error detection

More information

Access Control Algorithm for RPR MAC

Access Control Algorithm for RPR MAC Access Cntrl Algrithm fr RPR MAC Kanaiya Vasani Anp Ghanwani Lantern Cmmunicatins IEEE 802.17 Interim Meeting Orland, FL January 2002 kv_acc_02.pdf 1 Outline Overview MAC architecture Cmpnents f the bandwidth

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

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 do I evaluate the quality of my wireless connection?

How do I evaluate the quality of my wireless connection? Hw d I evaluate the quality f my wireless cnnectin? Enterprise Cmputing & Service Management A number f factrs can affect the quality f wireless cnnectins at UCB. These include signal strength, pssible

More information

VALLEYVIEW AUTOMATED PAYROLL SYSTEM

VALLEYVIEW AUTOMATED PAYROLL SYSTEM VALLEYVIEW AUTOMATED PAYROLL SYSTEM ValleyView has purchased and custmised an autmated system t manage their payrll. This system is knwn as ValleyView Autmated Payrll System (VAPS). VAPS is used t recrd

More information

Introduction to Mindjet MindManager Server

Introduction to Mindjet MindManager Server Intrductin t Mindjet MindManager Server Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 mindjet.cm 2013 Mindjet. All Rights

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

Data Link Layer Overview

Data Link Layer Overview Data Link Layer Overview Date link layer deals with two basic issues: Part I How data frames can be reliably transmitted, and Part II How a shared communication medium can be accessed In many networks,

More information

New York University Computer Science Department Courant Institute of Mathematical Sciences

New York University Computer Science Department Courant Institute of Mathematical Sciences New Yrk University Cmputer Science Department Curant Institute f Mathematical Sciences Curse Title: Data Cmmunicatin & Netwrks Curse Number:CSCI-GA.2662-00 Instructr: Jean-Claude Franchitti Sessin: 2 Assignment

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

This version replaces and invalidates all previous versions.

This version replaces and invalidates all previous versions. e-mail: exprt@singular-tech.cm www.grupspec.cm BARCELONA (SPAIN) c/. Caballer, 79 08014 - Barcelna Telephne: 932.478.800 Fax: 932.478.811 100% Web-based emplyee time management sftware fr SMEs TECHNOLOGY

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

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

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

How To Install An Orin Failver Engine On A Network With A Network Card (Orin) On A 2Gigbook (Orion) On An Ipad (Orina) Orin (Ornet) Ornet (Orn

How To Install An Orin Failver Engine On A Network With A Network Card (Orin) On A 2Gigbook (Orion) On An Ipad (Orina) Orin (Ornet) Ornet (Orn SlarWinds Technical Reference Preparing an Orin Failver Engine Installatin Intrductin t the Orin Failver Engine... 1 General... 1 Netwrk Architecture Optins and... 3 Server Architecture Optins and... 4

More information

Google Adwords Pay Per Click Checklist

Google Adwords Pay Per Click Checklist Ggle Adwrds Pay Per Click Checklist This checklist summarizes all the different things that need t be setup t prperly ptimize Ggle Adwrds t get the best results. This includes items that are required fr

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

David Drivers Revit One-sheets: Linked Project Positioning and shared coordinates

David Drivers Revit One-sheets: Linked Project Positioning and shared coordinates This paper discusses the fllwing features f Revit Building Shared Crdinates Named lcatins Publish and acquire Vs Saving lcatins Shared Crdinates and wrkset enabled files Revisin 1 (Versin 9.0) David Driver.

More information

Andrew Cope & Casey Schaertl

Andrew Cope & Casey Schaertl Andrew Cpe & Casey Schaertl What is PCI Express? Peripheral Cmpnent Intercnnect Express A high-speed serial cnnectin Mre like a netwrk than a bus Has several pint-t-pint serial cnnectins (lanes) Used as

More information

Knowledge Base Article

Knowledge Base Article Knwledge Base Article Crystal Matrix Interface Cmparisn TCP/IP vs. SDK Cpyright 2008-2012, ISONAS Security Systems All rights reserved Table f Cntents 1: INTRODUCTION... 3 1.1: TCP/IP INTERFACE OVERVIEW:...

More information

Exercise 6: Gene Ontology Analysis

Exercise 6: Gene Ontology Analysis Overview: Intrductin t Systems Bilgy Exercise 6: Gene Ontlgy Analysis Gene Ontlgy (GO) is a useful resurce in biinfrmatics and systems bilgy. GO defines a cntrlled vcabulary f terms in bilgical prcess,

More information

Technical White Paper

Technical White Paper The Data Integrity Imperative If it isn t accurate, it isn t available. Technical White Paper Visin Slutins, Inc. Intrductin The fundamental requirement f high availability sftware is t ensure that critical

More information

Internet Access by GSM & GPRS

Internet Access by GSM & GPRS Kmmunikatinsnetz Franken e.v. Internet Access by GSM & GPRS At the end f the wired universe... Maximilian Riegel access-by-gsm.ppt-1 (2001-11-25) Kmmunikatinsnetz Franken e.v. Prlg When yu like m slw links

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

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

Data Link Layer(1) Principal service: Transferring data from the network layer of the source machine to the one of the destination machine

Data Link Layer(1) Principal service: Transferring data from the network layer of the source machine to the one of the destination machine Data Link Layer(1) Principal service: Transferring data from the network layer of the source machine to the one of the destination machine Virtual communication versus actual communication: Specific functions

More information

Spamguard SPAM Filter

Spamguard SPAM Filter Spamguard SPAM Filter The ECU Spam Firewall (spamguard) is designed t blck r quarantine e-mail messages that are r lk like spam befre it reaches ur email servers. The spam firewall will NOT catch all f

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

Uninstalling and Reinstalling on a Server Computer. Medical Director / PracSoft

Uninstalling and Reinstalling on a Server Computer. Medical Director / PracSoft Uninstalling and Reinstalling n a Server Cmputer Medical Directr / PracSft This guide describes the prcess fr uninstalling and then reinstalling Medical Directr, PracSft, and/r SQL Instances n a cmputer

More information

CFD AND SPOT FOREX TERMS: DEPOSIT ACCOUNTS

CFD AND SPOT FOREX TERMS: DEPOSIT ACCOUNTS 1. Structure 1.1 When we engage in cfd r spt frex trading with yu, we d s n the basis f: - ur General Terms; these terms, i.e. ur CFD and Spt Frex Terms. 1.2 The CFD and Spt Frex Terms deal with matters

More information

IMHU-HRM-A February 15, 2012 PAI SOP. Ft. Huachuca Personnel Asset Inventory - SOP

IMHU-HRM-A February 15, 2012 PAI SOP. Ft. Huachuca Personnel Asset Inventory - SOP Ft. Huachuca Persnnel Asset Inventry - SOP I. Respnsible agencies are: Unit Battalin r separate cmpany S1 (S1) Brigade S1 Military Persnnel Divisin (MPD) Persnnel Autmatin Sectin (PAS) G1, AG, Military

More information

Feature Codes. The Call Forwarding feature temporarily forwards all your calls to another extension.

Feature Codes. The Call Forwarding feature temporarily forwards all your calls to another extension. Feature Cdes Autmatic Callback The Autmatic Callback feature sends yu a pririty ring indicating that a previusly busy r unanswered extensin yu dialed is nw available. Call Frwarding All Calls The Call

More information

Spread Bet Terms: Deposit Accounts

Spread Bet Terms: Deposit Accounts Spread Bet Terms: Depsit Accunts 1. Structure 1.1 When we engage in Spread Betting with yu, we d s n the basis f: - ur General Terms; these terms, i.e. ur Spread Terms. 1.2 The Spread Terms deal with matters

More information

Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel

Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel An HP PrCurve Netwrking Applicatin Nte Traffic mnitring n PrCurve switches with sflw and InMn Traffic Sentinel Cntents 1. Intrductin... 3 2. Prerequisites... 3 3. Netwrk diagram... 3 4. sflw cnfiguratin

More information

GED MATH STUDY GUIDE. Last revision July 15, 2011

GED MATH STUDY GUIDE. Last revision July 15, 2011 GED MATH STUDY GUIDE Last revisin July 15, 2011 General Instructins If a student demnstrates that he r she is knwledgeable n a certain lessn r subject, yu can have them d every ther prblem instead f every

More information

Sinusoidal Steady State Response of Linear Circuits. The circuit shown on Figure 1 is driven by a sinusoidal voltage source v s (t) of the form

Sinusoidal Steady State Response of Linear Circuits. The circuit shown on Figure 1 is driven by a sinusoidal voltage source v s (t) of the form Sinusidal Steady State espnse f inear Circuits The circuit shwn n Figure 1 is driven by a sinusidal ltage surce v s (t) f the frm v () t = v cs( ωt) (1.1) s i(t) + v (t) - + v (t) s v c (t) - C Figure

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

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

Advanced Systems Tester 900AST Series Calibration Verification Procedure

Advanced Systems Tester 900AST Series Calibration Verification Procedure Advanced Systems Tester 900AST Series Calibratin Verificatin Prcedure Instructins March 2006 Table f Cntents Intrductin...3 Test Instruments Required...3 Test Cmpnents Required...3 Test Prcedure...3 Self-Calibratin...3

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

Additional Resources Refer to the Inventory Year-End Closing Tips. Refer to the Inventory Year-End Questions and Answers.

Additional Resources Refer to the Inventory Year-End Closing Tips. Refer to the Inventory Year-End Questions and Answers. Inventry Year-End Clsing Prcedures - 2007 Use the prcedure described in this sectin t clse the year fr Inventry Cntrl and prepare yur Inventry recrds fr the new fiscal year. Clsing a year transfers all

More information

CMS - CISUC - Universidade de Coimbra

CMS - CISUC - Universidade de Coimbra CMS - CISUC - Universidade de Cimbra Carls Lisba Bent Francisc Câmara Pereira Pedr Fnseca RFID Technlgies Avances Tecnlógics para la Sciedad Digital UEM April 14-18 (c) Carls Bent et al., RFID Technlgies

More information

Creating automated reports using VBS AN 44

Creating automated reports using VBS AN 44 Creating autmated reprts using VBS AN 44 Applicatin Nte t the KLIPPEL R&D and QC SYSTEM Publishing measured results is imprtant t custmers and clients. While the KLIPPEL database cntains all infrmatin

More information

Calibration of Oxygen Bomb Calorimeters

Calibration of Oxygen Bomb Calorimeters Calibratin f Oxygen Bmb Calrimeters Bulletin N.101 Prcedures fr standardizatin f Parr xygen bmb calrimeters. Energy Equivalent The calibratin f an xygen bmb calrimeter has traditinally been called the

More information

MiaRec. Performance Monitoring. Revision 1.1 (2014-09-18)

MiaRec. Performance Monitoring. Revision 1.1 (2014-09-18) Revisin 1.1 (2014-09-18) Table f Cntents 1 Purpse... 3 2 Hw it wrks... 3 3 A list f MiaRec perfrmance cunters... 4 3.1 Grup MiaRec Statistics... 4 3.2 Grup MiaRec Call Statistics Per-State... 5 3.3 Grup

More information

Technical Report. SimpleFeatureService. Ing. Andrea Aime Ing. Simone Giannecchini GeoSolutions S.A.S. Date 10/11/2010 Version 0.1

Technical Report. SimpleFeatureService. Ing. Andrea Aime Ing. Simone Giannecchini GeoSolutions S.A.S. Date 10/11/2010 Version 0.1 2010 Technical Reprt SimpleFeatureService Ing. Andrea Aime Ing. Simne Giannecchini. Date 10/11/2010 Versin 0.1 Cntents Recrd f Changes... 4 SimpleFeatureService prtcl v 0.1... 4 Supprted URLs... 5 Capabilities

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

Spread Bet Terms: Deposit Accounts

Spread Bet Terms: Deposit Accounts Spread Bet Terms: Depsit Accunts 1. Structure 1.1 When we engage in Spread Betting with yu, we d s n the basis f: - ur General Terms; these terms, i.e. ur Spread Terms. 1.2 The Spread Terms deal with matters

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

Spread Bet Terms: Deposit Accounts

Spread Bet Terms: Deposit Accounts Spread Bet Terms: Depsit Accunts 1. Structure 1.1 When we engage in Spread Betting with yu, we d s n the basis f: - ur General Terms; these terms, i.e. ur Spread Terms. 1.2 The Spread Terms deal with matters

More information

FedACH Services via FedLine Web and FedACH Services via FedLine Advantage Participant Role

FedACH Services via FedLine Web and FedACH Services via FedLine Advantage Participant Role (FedLine Advantage nly) Send ACH payment files thrugh an easy-t-use brwserbased file transmissin system using a VPN tunnel t encrypt and secure infrmatin cntained in FedACH files USB tkens are used t authenticate

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

SITE APPLICATIONS USER GUIDE:

SITE APPLICATIONS USER GUIDE: SITE APPLICATIONS USER GUIDE: CPCONTROLLER, CCENGINE, SYNC, TPORT, CCTERMINAL Cpyright 2013 Triple E Technlgies. All rights reserved. Site Applicatins User Guide INTRODUCTION The applicatins described

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

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

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

Network Security Trends in the Era of Cloud and Mobile Computing

Network Security Trends in the Era of Cloud and Mobile Computing Research Reprt Abstract: Netwrk Security Trends in the Era f Clud and Mbile Cmputing By Jn Oltsik, Senir Principal Analyst and Bill Lundell, Senir Research Analyst With Jennifer Gahm, Senir Prject Manager

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

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

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

ECLT5810 E-Commerce Data Mining Techniques SAS Enterprise Miner Neural Network

ECLT5810 E-Commerce Data Mining Techniques SAS Enterprise Miner Neural Network Enterprise Miner Neural Netwrk 1 ECLT5810 E-Cmmerce Data Mining Techniques SAS Enterprise Miner Neural Netwrk A Neural Netwrk is a set f cnnected input/utput units where each cnnectin has a weight assciated

More information

Digital Terrain Model (DTM) 1

Digital Terrain Model (DTM) 1 Digital Terrain Mdel (DTM) 1 What Is A digital terrain mdel is a tpgraphic mdel f the bare earth terrain relief - that can be manipulated by cmputer prgrams. The data files cntain the spatial elevatin

More information

:: EMAIL ADMIN HELP AT A GLANCE Contents

:: EMAIL ADMIN HELP AT A GLANCE Contents :: EMAIL ADMIN HELP AT A GLANCE Cntents Email Admin Dmain Inf... 2 POP Accunts... 3 Edit POP Accunts... 4 Search Accunts... 5 Frwards... 6 Spam Cntrl... 7 CatchAll... 8 EMAIL ADMIN HELP AT A GLANCE ::

More information

Tips to Prepare for Quarter-End and Year-End

Tips to Prepare for Quarter-End and Year-End Tips t Prepare fr Quarter-End and Year-End Melissa Wd Cnsultant What We ll Cver 1. Tying ut A/P 2. Tying ut A/R 3. Tying ut I/N 4. Wrk In Prgress 5. Managing Jbs and PMs 6. Quarterly Payrll 7. Clsing a

More information

CFD and Spot Forex Terms: Deposit Accounts

CFD and Spot Forex Terms: Deposit Accounts CFD and Spt Frex Terms: Depsit Accunts 1. Structure 1.1 When we engage in CFD r Spt Frex trading with yu, we d s n the basis f: - ur General Terms; these terms, i.e. ur CFD and Spt Frex Terms. 1.2 The

More information

ENERGY CALIBRATION IN DPPMCA AND XRS-FP REV A0 ENERGY CALIBRATION IN DPPMCA AND XRS-FP

ENERGY CALIBRATION IN DPPMCA AND XRS-FP REV A0 ENERGY CALIBRATION IN DPPMCA AND XRS-FP ENERGY CALIBRATION IN DPPMCA AND XRS-FP Energy calibratin is very imprtant fr quantitative X-ray analysis. Even a small errr in the calibratin f the energy scale can have significant cnsequences: if the

More information

Federal Acquisition Service

Federal Acquisition Service U.S. General Services Administratin Federal Acquisitin Service Enhanced Mnthly On-line Recrds and Reprts f Infrmatin-Technlgy Services (E-MORRIS) Training Overview U.S. General Services Administratin Federal

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

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

Basic Guide line for The Sportident system

Basic Guide line for The Sportident system Basic Guide line fr The Sprtident system SI-statins BSF7-8, Master statins BSM7, SI-Cnfig versin 1.4.1, 2006-10-24-1 - Index This guide line... 3 General... 3 Knwledge... 3 Mre infrmatin... 3 System requirements...

More information

A CONSISTENCY IMPROVING METHOD IN BINARY AHP

A CONSISTENCY IMPROVING METHOD IN BINARY AHP Jurnal f the Operatins Research Sciety f Japan Vl. 38, N., March 995 995 The Operatins Research Sciety f Japan A CONSISTENCY IMPROVING METHOD IN BINARY AHP Kazutm Nishizawa Nihn UniVfTsity (Received March

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

CFD and Spot Forex Terms: Deposit Accounts

CFD and Spot Forex Terms: Deposit Accounts CFD and Spt Frex Terms: Depsit Accunts 1. Structure 1.1 When we engage in CFD r Spt Frex trading with yu, we d s n the basis f: - ur General Terms; these terms, i.e. ur CFD and Spt Frex Terms. 1.2 The

More information

How To Set Up A General Ledger In Korea

How To Set Up A General Ledger In Korea MODULE 6: RECEIVABLES AND PAYABLES MANAGEMENT: PAYMENT DISCOUNT AND PAYMENT TOLERANCE Mdule Overview Granting payment discunts prvides an incentive fr custmers t quickly pay their utstanding amunts in

More information

Polymorphic Shellcodes vs. Application IDSs

Polymorphic Shellcodes vs. Application IDSs http://www.ngsec.cm Plymrphic Shellcdes vs. Applicatin IDSs 1. Intrductin. 2. Shellcde types and recgnitin techniques. 3. Intrusin Detectin Systems. 4. NGSecureWeb. 5. References. 6. Credits. Page 1 f

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

HSBC Online Home Loan Application Process

HSBC Online Home Loan Application Process HSBC Online Hme Lan Applicatin Prcess Versin 1.0 Nvember 2005 Cpyright. HSBC Bank Australia Limited 2005 ALL RIGHTS RESERVED N part f this publicatin may be reprduced, stred in a retrieval system, r transmitted,

More information

AvePoint High Speed Migration Supplementary Tools

AvePoint High Speed Migration Supplementary Tools AvePint High Speed Migratin Supplementary Tls User Guide Issued April 2016 1 Table f Cntents Intrductin... 3 MD5 Value Generatr Tl... 3 Azure Data Uplad Tl... 3 Dwnlading and Unpacking the Tl... 4 Using

More information

Point2 Property Manager Quick Setup Guide

Point2 Property Manager Quick Setup Guide Click the Setup Tab Mst f what yu need t get started using Pint 2 Prperty Manager has already been taken care f fr yu. T begin setting up yur data in Pint2 Prperty Manager, make sure yu have cmpleted the

More information

Computer Networks. Data Link Layer

Computer Networks. Data Link Layer Computer Networks The Data Link Layer 1 Data Link Layer Application Transport Network DLL PHY 2 What does it do? What functions it performs? Typically: Handling transmission errors, a.k.a., error control.

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

Dial Backup for Dedicated T1 Circuits using the ATLAS

Dial Backup for Dedicated T1 Circuits using the ATLAS Article ID: 1449 Q&A Dial Backup fr Dedicated T1 Circuits using the ATLAS Q: Dial Backup fr Dedicated T1 Circuits using the ATLAS A: Intrductin This technical supprt nte describes hw t cnfigure the ATLAS

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

QAD Operations BI Metrics Demonstration Guide. May 2015 BI 3.11

QAD Operations BI Metrics Demonstration Guide. May 2015 BI 3.11 QAD Operatins BI Metrics Demnstratin Guide May 2015 BI 3.11 Overview This demnstratin fcuses n ne aspect f QAD Operatins Business Intelligence Metrics and shws hw this functinality supprts the visin f

More information

Pervasive Data Integrator. REST Invoker 2.0 Guide

Pervasive Data Integrator. REST Invoker 2.0 Guide Pervasive Data Integratr REST Invker 2.0 Guide Pervasive Sftware Inc. 12365 Riata Trace Parkway Building B Austin, Texas 78727 USA Telephne: (512) 231-6000 r (800) 287-4383 Fax: (512) 231-6010 Email: inf@pervasive.cm

More information

Instructions for Configuring a SAFARI Montage Managed Home Access Expansion Server

Instructions for Configuring a SAFARI Montage Managed Home Access Expansion Server Instructins fr Cnfiguring a SAFARI Mntage Managed Hme Access Expansin Server ~ Please read these instructins in their entirety befre yu begin. ~ These instructins explain hw t add a SAFARI Mntage Managed

More information

Business Digital Voice Site Services - Phone & User Assignments

Business Digital Voice Site Services - Phone & User Assignments Feature Overview The Phnes and Users must be assigned befre setting up ther cmpnents f Business Digital Vice. The system is designed t allw custmers t quickly setup and mdify phne assignments in real time

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

2010 AT&T Business Continuity Study CENTRAL REGION (Missouri) Results

2010 AT&T Business Continuity Study CENTRAL REGION (Missouri) Results 2010 Business Cntinuity Study: Missuri 2010 AT&T Business Cntinuity Study CENTRAL REGION (Missuri) Results Key Findings IT Plans fr 2010 IT budgets fr 2010 are abut the same r higher than thse f the previus

More information

Configuring an Email Client for your Hosting Support POP/IMAP mailbox

Configuring an Email Client for your Hosting Support POP/IMAP mailbox Cnfiguring an Email Client fr yur Hsting Supprt POP/IMAP mailbx This article lists the email settings and prt numbers fr pp and imap cnfiguratins, as well as fr SSL. It cntains instructins fr setting up

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

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

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

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

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