Support Vector and Kernel Machines

Size: px
Start display at page:

Download "Support Vector and Kernel Machines"

Transcription

1 Supprt Vectr and Kernel Machines Nell Cristianini BIOwulf Technlgies ICML 2001

2 A Little Histry SVMs intrduced in COLT-92 by Bser, Guyn, Vapnik. Greatly develped ever since. Initially ppularied in the NIPS cmmunity, nw an imprtant and active field f all Machine Learning research. Special issues f Machine Learning Jurnal, and Jurnal f Machine Learning Research. Kernel Machines: large class f learning algrithms, SVMs a particular instance.

3 A Little Histry Annual wrkshp at NIPS Centralied website: Tetbk (2000): see Nw: a large and diverse cmmunity: frm machine learning, ptimiatin, statistics, neural netwrks, functinal analysis, etc. etc Successful applicatins in many fields (biinfrmatics, tet, handwriting recgnitin, etc) Fast epanding field, EVERYBODY WELCOME! -

4 Preliminaries Task f this class f algrithms: detect and eplit cmple patterns in data (eg: by clustering, classifying, ranking, cleaning, etc. the data) Typical prblems: hw t represent cmple patterns; and hw t eclude spurius (unstable) patterns (= verfitting) The first is a cmputatinal prblem; the secnd a statistical prblem.

5 Very Infrmal Reasning The class f kernel methds implicitly defines the class f pssible patterns by intrducing a ntin f similarity between data Eample: similarity between dcuments By length By tpic By language Chice f similarity Î Chice f relevant features

6 Mre frmal reasning Kernel methds eplit infrmatin abut the inner prducts between data items Many standard algrithms can be rewritten s that they nly require inner prducts between data (inputs) Kernel functins = inner prducts in sme feature space (ptentially very cmple) If kernel given, n need t specify what features f the data are being used

7 Just in case Inner prduct between vectrs Hyperplane: w, + b = 0, = i i i w b

8 Overview f the Tutrial Intrduce basic cncepts with etended eample f Kernel Perceptrn Derive Supprt Vectr Machines Other kernel based algrithms Prperties and Limitatins f Kernels On Kernel Alignment On Optimiing Kernel Alignment

9 Parts I and II: verview Linear Learning Machines (LLM) Kernel Induced Feature Spaces Generaliatin Thery Optimiatin Thery Supprt Vectr Machines (SVM)

10 Mdularity IMPORTANT CONCEPT Any kernel-based learning algrithm cmpsed f tw mdules: A general purpse learning machine A prblem specific kernel functin Any K-B algrithm can be fitted with any kernel Kernels themselves can be cnstructed in a mdular way Great fr sftware engineering (and fr analysis)

11 1-Linear Learning Machines Simplest case: classificatin. Decisin functin is a hyperplane in input space The Perceptrn Algrithm (Rsenblatt, 57) Useful t analye the Perceptrn algrithm, befre lking at SVMs and Kernel Methds in general

12 Basic Ntatin Input space Output space Hypthesis Real-valued: Training Set Test errr Dt prduct y h X Y = { 1, + 1} H f : X R S = {( 1, y1),...,( i, yi),...} ε,

13 Perceptrn Linear Separatin f the input space f ( ) = w, + b w h( ) = sign( f ( )) b

14 Perceptrn Algrithm Update rule (ignring threshld): y ( w, ) 0 i k i if then w + 1 w + ηy k k i i k k + 1 b w

15 Observatins Slutin is a linear cmbinatin f training pints w = α i 0 α y i i i Only used infrmative pints (mistake driven) The cefficient f a pint in cmbinatin reflects its difficulty

16 Observatins - 2 Mistake bund: M R γ 2 g cefficients are nn-negative pssible t rewrite the algrithm using this alternative representatin

17 Dual Representatin IMPORTANT CONCEPT The decisin functin can be re-written as fllws: f( ) = w, + b= α iyi i, + b w = αiyii

18 Dual Representatin And als the update rule can be rewritten as fllws: αi αi + η y i α jyj j, i + b if then Nte: in dual representatin, data appears nly inside dt prducts

19 Duality: First Prperty f SVMs DUALITY is the first feature f Supprt Vectr Machines SVMs are Linear Learning Machines represented in a dual fashin f( ) = w, + b= α iyi i, + b Data appear nly within dt prducts (in decisin functin and in training algrithm)

20 Limitatins f LLMs Linear classifiers cannt deal with Nn-linearly separable data Nisy data + this frmulatin nly deals with vectrial data

21 Nn-Linear Classifiers One slutin: creating a net f simple linear classifiers (neurns): a Neural Netwrk (prblems: lcal minima; many parameters; heuristics needed t train; etc) Other slutin: map data int a richer feature space including nn-linear features, then use a linear classifier

22 Learning in the Feature Space Map data int a feature space where they are linearly separable φ( ) f f() f() f() f() f() f() f() f() X F

23 Prblems with Feature Space Wrking in high dimensinal feature spaces slves the prblem f epressing cmple functins BUT: There is a cmputatinal prblem (wrking with very large vectrs) And a generaliatin thery prblem (curse f dimensinality)

24 Implicit Mapping t Feature Space We will intrduce Kernels: Slve the cmputatinal prblem f wrking with many dimensins Can make it pssible t use infinite dimensins efficiently in time / space Other advantages, bth practical and cnceptual

25 Kernel-Induced Feature Spaces In the dual representatin, the data pints nly appear inside dt prducts: f( ) = α iyi φ( i ), φ( ) + b The dimensinality f space F nt necessarily imprtant. May nt even knw the map φ

26 Kernels IMPORTANT CONCEPT A functin that returns the value f the dt prduct between the images f the tw arguments K( 1, 2) = φ( 1), φ( 2) Given a functin K, it is pssible t verify that it is a kernel

27 Kernels One can use LLMs in a feature space by simply rewriting it in dual representatin and replacing dt prducts with kernels: 1, 2 K( 1, 2) = φ( 1), φ( 2)

28 The Kernel Matri IMPORTANT CONCEPT (aka the Gram matri): K(1,1) K(1,2) K(1,3) K(1,m) K(2,1) K(2,2) K(2,3) K(2,m) K= K(m,1) K(m,2) K(m,3) K(m,m)

29 The Kernel Matri The central structure in kernel machines Infrmatin bttleneck : cntains all necessary infrmatin fr the learning algrithm Fuses infrmatin abut the data AND the kernel Many interesting prperties:

30 Mercer s Therem The kernel matri is Symmetric Psitive Definite Any symmetric psitive definite matri can be regarded as a kernel matri, that is as an inner prduct matri in sme space

31 Mre Frmally: Mercer s Therem Every (semi) psitive definite, symmetric functin is a kernel: i.e. there eists a mapping φ such that it is pssible t write: K( 1, 2) = φ( 1), φ( 2) Ps. Def. I K (, ) f ( ) f ( ) d d 0 f L 2

32 Mercer s Therem Eigenvalues epansin f Mercer s Kernels: K( 1, 2) = λφ i i( 1) φi( 2) i That is: the eigenfunctins act as features!

33 Eamples f Kernels Simple eamples f kernels are: K(, ) =, d K(, ) = 2 / 2σ e

34 Eample: Plynmial Kernels = ( 1, 2); = ( 1, 2); 2, = ( ) 2 = = = = (,, 212),(,, 212) = 1 2 = φ( ), φ( ) 2 1 2

35 Eample: Plynmial Kernels

36 Eample: the tw spirals Separated by a hyperplane in feature space (gaussian kernels)

37 Making Kernels IMPORTANT CONCEPT The set f kernels is clsed under sme peratins. If K, K are kernels, then: K+K is a kernel ck is a kernel, if c>0 ak+bk is a kernel, fr a,b >0 Etc etc etc can make cmple kernels frm simple nes: mdularity!

38 Secnd Prperty f SVMs: SVMs are Linear Learning Machines, that Use a dual representatin AND Operate in a kernel induced feature space (that is: f( ) = α iyi φ( i ), φ( ) + b is a linear functin in the feature space implicitely defined by K)

39 Kernels ver General Structures Haussler, Watkins, etc: kernels ver sets, ver sequences, ver trees, etc. Applied in tet categriatin, biinfrmatics, etc

40 A bad kernel wuld be a kernel whse kernel matri is mstly diagnal: all pints rthgnal t each ther, n clusters, n structure

41 N Free Kernel IMPORTANT CONCEPT If mapping in a space with t many irrelevant features, kernel matri becmes diagnal Need sme prir knwledge f target s chse a gd kernel

42 Other Kernel-based algrithms Nte: ther algrithms can use kernels, nt just LLMs (e.g. clustering; PCA; etc). Dual representatin ften pssible (in ptimiatin prblems, by Representer s therem).

43 %5($.

44 The Generaliatin Prblem NEW TOPIC The curse f dimensinality: easy t verfit in high dimensinal spaces (=regularities culd be fund in the training set that are accidental, that is that wuld nt be fund again in a test set) The SVM prblem is ill psed (finding ne hyperplane that separates the data: many such hyperplanes eist) Need principled way t chse the best pssible hyperplane

45 The Generaliatin Prblem Many methds eist t chse a gd hyperplane (inductive principles) Bayes, statistical learning thery / pac, MDL, Each can be used, we will fcus n a simple case mtivated by statistical learning thery (will give the basic SVM)

46 Statistical (Cmputatinal) Learning Thery Generaliatin bunds n the risk f verfitting (in a p.a.c. setting: assumptin f I.I.d. data; etc) Standard bunds frm VC thery give upper and lwer bund prprtinal t VC dimensin VC dimensin f LLMs prprtinal t dimensin f space (can be huge)

47 Assumptins and Definitins distributin D ver input space X train and test pints drawn randmly (I.I.d.) frm D training errr f h: fractin f pints in S misclassifed by h test errr f h: prbability under D t misclassify a pint VC dimensin: sie f largest subset f X shattered by H (every dichtmy implemented)

48 VC Bunds ε = O ~ VC m VC = (number f dimensins f X) +1 Typically VC >> m, s nt useful Des nt tell us which hyperplane t chse

49 Margin Based Bunds ε γ = = ~ O min ( R i y / γ ) m i f ( f 2 i ) Nte: als cmpressin bunds eist; and nline bunds.

50 Margin Based Bunds IMPORTANT CONCEPT (The wrst case bund still hlds, but if lucky (margin is large)) the ther bund can be applied and better generaliatin can be achieved: = ~ ( R / γ O m Best hyperplane: the maimal margin ne Margin is large is kernel chsen well ε 2 )

51 Maimal Margin Classifier Minimie the risk f verfitting by chsing the maimal margin hyperplane in feature space Third feature f SVMs: maimie the margin SVMs cntrl capacity by increasing the margin, nt by reducing the number f degrees f freedm (dimensin free capacity cntrl).

52 Tw kinds f margin Functinal and gemetric margin: funct = min yif ( i) g gem = min yif ( i) f

53 Tw kinds f margin

54 Ma Margin = Minimal Nrm If we fi the functinal margin t 1, the gemetric margin equal 1/ w Hence, maimie the margin by minimiing the nrm

55 Ma Margin = Minimal Nrm Distance between The tw cnve hulls g w, w, + + b = b = 1 + w,( ) = 2 w,( w + 2 ) = w

56 The primal prblem IMPORTANT STEP Minimie: subject t: w, w yi w, i + b

57 Optimiatin Thery The prblem f finding the maimal margin hyperplane: cnstrained ptimiatin (quadratic prgramming) Use Lagrange thery (r Kuhn-Tucker Thery) Lagrangian: 1 2! 1 6 w, w αiyi w, i + b 1 " $# α 0

58 Frm Primal t Dual 1 L( w) = w, w αiy i w, i! + b 1 2 αi 0 Differentiate and substitute: L = 0 b L = 0 w 1 6 " $#

59 The Dual Prblem IMPORTANT STEP Maimie: Subject t: W( α) = αi 1 αα i y y, i, j 2 αi 0 αiyi = i 0 i j i j i j The duality again! Can use kernels!

60 Cnveity IMPORTANT CONCEPT This is a Quadratic Optimiatin prblem: cnve, n lcal minima (secnd effect f Mercer s cnditins) Slvable in plynmial time (cnveity is anther fundamental prperty f SVMs)

61 Kuhn-Tucker Therem Prperties f the slutin: Duality: can use kernels KKT cnditins: αi i i i y w, + b = Sparseness: nly the pints nearest t the hyperplane (margin = 1) have psitive weight w = αiyii They are called supprt vectrs

62 KKT Cnditins Imply Sparseness g Sparseness: anther fundamental prperty f SVMs

63 Prperties f SVMs - Summary 9 Duality 9 Kernels 9 Margin 9 Cnveity 9 Sparseness

64 Dealing with nise In the case f nn-separable data in feature space, the margin distributin can be ptimied ε 1 m ( ) R + ξ 2 γ ξ y w, + b i i i

65 The Sft-Margin Classifier Minimie: Or: w, w w, w + + C C i i ξi ξ 2 i Subject t: y 4 i w, i + b9 1 ξi

66 Slack Variables ( ) 2 ξ 1 R + 2 ε m γ ξ y w, + b i i i

67 Sft Margin-Dual Lagrangian B cnstraints W( α) = αi 1 αα i y y, i, j 2 0 αi C αiyi = 0 i i j i j i j Diagnal i 1 1 αi αα i jyiyj i, j αjαj i, j 2 2C 0 αi αiy i i 0

68 The regressin case Fr regressin, all the abve prperties are retained, intrducing epsiln-insensitive lss: L e 0 y i -<w, i >+b

69 Regressin: the ε-tube

70 Implementatin Techniques Maimiing a quadratic functin, subject t a linear equality cnstraint (and inequalities as well) W( α) = αi 1 αα i jyiyjk( i, j) i, j 2 αi i 0 αiyi = 0 i

71 Simple Apprimatin Initially cmple QP pachages were used. Stchastic Gradient Ascent (sequentially update 1 weight at the time) gives ecellent apprimatin in mst cases 1 αi αi + 1 y i αiyik( i, j) K( i, i)

72 Full Slutin: S.M.O. SMO: update tw weights simultaneusly Realies gradient descent withut leaving the linear cnstraint (J. Platt). Online versins eist (Li-Lng; Gentile)

73 Other kernelied Algrithms Adatrn, nearest neighbur, fisher discriminant, bayes classifier, ridge regressin, etc. etc Much wrk in past years int designing kernel based algrithms Nw: mre wrk n designing gd kernels (fr any algrithm)

74 On Cmbining Kernels When is it advantageus t cmbine kernels? T many features leads t verfitting als in kernel methds Kernel cmbinatin needs t be based n principles Alignment

75 Kernel Alignment IMPORTANT CONCEPT Ntin f similarity between kernels: Alignment (= similarity between Gram matrices) A( K1, K2) = K1, K2 K1, K1 K2, K2

76 Many interpretatins As measure f clustering in data As Crrelatin cefficient between racles Basic idea: the ultimate kernel shuld be YY, that is shuld be given by the labels vectr (after all: target is the nly relevant feature!)

77 The ideal kernel YY =

78 Cmbining Kernels Alignment in increased by cmbining kernels that are aligned t the target and nt aligned t each ther. A( K1, YY' ) = K1, YY' K1, K1 YY', YY'

79 Spectral Machines Can (apprimately) maimie the alignment f a set f labels t a given kernel By slving this prblem: yky Apprimated by principal eigenvectr (threshlded) (see curant-hilbert therem) y yi = arg ma { 1, + 1} yy'

80 Curant-Hilbert therem A: symmetric and psitive definite, Principal Eigenvalue / Eigenvectr characteried by: λ = ma v vav vv'

81 Optimiing Kernel Alignment One can either adapt the kernel t the labels r vice versa In the first case: mdel selectin methd Secnd case: clustering / transductin methd

82 Applicatins f SVMs Biinfrmatics Machine Visin Tet Categriatin Handwritten Character Recgnitin Time series analysis

83 Tet Kernels Jachims (bag f wrds) Latent semantic kernels (icml2001) String matching kernels See KerMIT prject

84 Biinfrmatics Gene Epressin Prtein sequences Phylgenetic Infrmatin Prmters

85 Cnclusins: Much mre than just a replacement fr neural netwrks. - General and rich class f pattern recgnitin methds %RR RQ 690VZZZVXSSRUWYHFWRUQHW Kernel machines website

PREDICTING CORPORATE BANKRUPTCY WITH SUPPORT VECTOR MACHINES

PREDICTING CORPORATE BANKRUPTCY WITH SUPPORT VECTOR MACHINES 1 PREDICTING CORPORATE BANKRUPTCY WITH SUPPORT VECTOR MACHINES Wlfgang HÄRDLE 2,3 Ruslan MORO 1,2 Drthea SCHÄFER 1 1 Deutsches Institut für Wirtschaftsfrschung (DIW) 2 Humbldt-Universität zu Berlin 3 Center

More information

Data Analytics for Campaigns Assignment 1: Jan 6 th, 2015 Due: Jan 13 th, 2015

Data Analytics for Campaigns Assignment 1: Jan 6 th, 2015 Due: Jan 13 th, 2015 Data Analytics fr Campaigns Assignment 1: Jan 6 th, 2015 Due: Jan 13 th, 2015 These are sample questins frm a hiring exam that was develped fr OFA 2012 Analytics team. Plan n spending n mre than 4 hurs

More information

Michigan Transfer Agreement (MTA) Frequently Asked Questions for College Personnel

Michigan Transfer Agreement (MTA) Frequently Asked Questions for College Personnel Michigan Transfer Agreement (MTA) Frequently Asked Questins fr Cllege Persnnel What happened t the MACRAO Agreement? Originally signed in 1972, the MACRAO agreement has been used successfully by many students

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

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

Applied Spatial Statistics: Lecture 6 Multivariate Normal

Applied Spatial Statistics: Lecture 6 Multivariate Normal Applied Spatial Statistics: Lecture 6 Multivariate Nrmal Duglas Nychka, Natinal Center fr Atmspheric Research Supprted by the Natinal Science Fundatin Bulder, Spring 2013 Outline additive mdel Multivariate

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

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

HS Math & The Foundation HS Program

HS Math & The Foundation HS Program HS Math & The Fundatin HS Prgram Required Math Curses: Algebra I (Mathematics, TEKS Chapter 111) Gemetry (Mathematics, TEKS Chapter 111) Math Curses WITHOUT an Algebra II Prerequisite: Math Mdels with

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

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

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

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

Importance and Contribution of Software Engineering to the Education of Informatics Professionals

Importance and Contribution of Software Engineering to the Education of Informatics Professionals Imprtance and Cntributin f Sftware Engineering t the Educatin f Infrmatics Prfessinals Dr. Tick, József Budapest Plytechnic, Hungary, tick@bmf.hu Abstract: As a result f the Blgna prcess a new frm f higher

More information

NYC Data Science Academy 12- Week Data Science Bootcamp Curriculum

NYC Data Science Academy 12- Week Data Science Bootcamp Curriculum Week 1 Data Science Tlkit Linux, Git, Bash, and SQL Linux system Intrduce Linux envirnment Learn Linux cmmands IO redirectin and Pipe Intrduce server- side Linux usage Git Intrduce mdern surce cde management

More information

Conversations of Performance Management

Conversations of Performance Management Cnversatins f Perfrmance Management Perfrmance Management at Ohi State The Secnd Cnversatin ~ Develpment 2011 The Ohi State University Office f Human Resurces Cntents Intrductin Welcme t Develping Emplyees...

More information

CONTRIBUTION TO T1 STANDARDS PROJECT. On Shared Risk Link Groups for diversity and risk assessment Sudheer Dharanikota, Raj Jain Nayna Networks Inc.

CONTRIBUTION TO T1 STANDARDS PROJECT. On Shared Risk Link Groups for diversity and risk assessment Sudheer Dharanikota, Raj Jain Nayna Networks Inc. Bulder, CO., March 26-28, 2001 /2001-098 CONTRIBUTION TO T1 STANDARDS PROJECT TITLE SOURCE PROJECT On Shared Risk Link Grups fr diversity and risk assessment Sudheer Dharanikta, Raj Jain Nayna Netwrks

More information

Industrial and Systems Engineering Master of Science Program Data Analytics and Optimization

Industrial and Systems Engineering Master of Science Program Data Analytics and Optimization Industrial and Systems Engineering Master f Science Prgram Data Analytics and Optimizatin Department f Integrated Systems Engineering The Ohi State University (Expected Duratin: 3 Semesters) Our sciety

More information

Document Management Versioning Strategy

Document Management Versioning Strategy 1.0 Backgrund and Overview Dcument Management Versining Strategy Versining is an imprtant cmpnent f cntent creatin and management. Versin management is a key cmpnent f enterprise cntent management. The

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

NC3A SOA Techwatch Day Call for Presentations

NC3A SOA Techwatch Day Call for Presentations NC3A SOA Techwatch Day Call fr Presentatins 1 February 2012 Hsted at NATO C3 Agency, The Hague, The Netherlands By NC3A Chief Technlgy Office (CTO) David Burtn Chief Technlgy fficer Versin 1, 1 December

More information

Partnership for better solutions DATALAB DEVELOPER PROGRAM

Partnership for better solutions DATALAB DEVELOPER PROGRAM Partnership fr better slutins DATALAB DEVELOPER PROGRAM July 2008 - June 2009 Stran 1 d 7 1. Intrductin Datalab PANTHEON ERP is in use with ver 4000 cmpanies in Central and Eastern Eurpe. Fast grwth f

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

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

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

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

THE CUSTOMER SUPPORT KNOWLEDGE BASE FAQ

THE CUSTOMER SUPPORT KNOWLEDGE BASE FAQ THE CUSTOMER SUPPORT KNOWLEDGE BASE FAQ What is the Knwledge Base? - The Knwledge Base (r KB) is a searchable database in which different dcument types f technical dcumentatin are aggregated. These vary

More information

Data Science. IRDS: Data Mining Process. The term data mining. The term data mining

Data Science. IRDS: Data Mining Process. The term data mining. The term data mining Science IRDS: Mining Prcess Charles Suttn Universit f Edinburgh Our rking definitin science is the stud f the cmputatinal principles, methds, and sstems fr etracting knledge frm data. A relativel ne term.

More information

Why Can t Johnny Encrypt? A Usability Evaluation of PGP 5.0 Alma Whitten and J.D. Tygar

Why Can t Johnny Encrypt? A Usability Evaluation of PGP 5.0 Alma Whitten and J.D. Tygar Class Ntes: February 2, 2006 Tpic: User Testing II Lecturer: Jeremy Hyland Scribe: Rachel Shipman Why Can t Jhnny Encrypt? A Usability Evaluatin f PGP 5.0 Alma Whitten and J.D. Tygar This article has three

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

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

Licensing the Core Client Access License (CAL) Suite and Enterprise CAL Suite

Licensing the Core Client Access License (CAL) Suite and Enterprise CAL Suite Vlume Licensing brief Licensing the Cre Client Access License (CAL) Suite and Enterprise CAL Suite Table f Cntents This brief applies t all Micrsft Vlume Licensing prgrams. Summary... 1 What s New in This

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

How to Address Key Selection Criteria

How to Address Key Selection Criteria Hw t Address Key Selectin Criteria Yu've seen an jb pprtunity that yu're interested in, n a jbs bard r in the press and want t apply, but where d yu start? A key requirement fr jbs in Gvernment is t respnd

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

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

Design for securability Applying engineering principles to the design of security architectures

Design for securability Applying engineering principles to the design of security architectures Design fr securability Applying engineering principles t the design f security architectures Amund Hunstad Phne number: + 46 13 37 81 18 Fax: + 46 13 37 85 50 Email: amund@fi.se Jnas Hallberg Phne number:

More information

WEB APPLICATION SECURITY TESTING

WEB APPLICATION SECURITY TESTING WEB APPLICATION SECURITY TESTING Cpyright 2012 ps_testware 1/7 Intrductin Nwadays every rganizatin faces the threat f attacks n web applicatins. Research shws that mre than half f all data breaches are

More information

To achieve these objectives we will use a combination of lectures, cases, class discussion, and exercises.

To achieve these objectives we will use a combination of lectures, cases, class discussion, and exercises. 95-730 E-business Technlgy and Management Curse Descriptin The Internet, and assciated technlgies, are nw an established element f the IT prtfli f rganizatins in bth the public and private sectrs. Experiments

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

An Endangered Species: Art Specialists in Elementary Schools A Possible Alternative: Trained Classroom Teachers in DBAE

An Endangered Species: Art Specialists in Elementary Schools A Possible Alternative: Trained Classroom Teachers in DBAE Marilyn Zurmuehlen Wrking Papers in Art Educatin ISSN: 2326-7070 (Print) ISSN: 2326-7062 (Online) Vlume 7 Issue 1 (1988) pps. 60-68 An Endangered Species: Art Specialists in Elementary Schls A Pssible

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

Assessment of Learning Report Computer Science CPM Fall 2008 Spring 2010

Assessment of Learning Report Computer Science CPM Fall 2008 Spring 2010 Assessment f Learning Reprt Cmputer Science CPM Fall 2008 Spring 2010 AAS DEGREE: Multimedia and Web Design I. Intrductin and Backgrund Missin Statements St. Charles Cmmunity Cllege: St. Charles Cmmunity

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

Tech Notes Promise RAID

Tech Notes Promise RAID Tech Ntes Prmise RAID 03/05/ Purpse: T increase familiarity with the Prmise RAID systems in bth Windws Based and DOS based sftware, including the crrect methd fr rebuilding arrays, crrecting drive errrs,

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

ATL: Atlas Transformation Language. ATL Installation Guide

ATL: Atlas Transformation Language. ATL Installation Guide ATL: Atlas Transfrmatin Language ATL Installatin Guide - versin 0.1 - Nvember 2005 by ATLAS grup LINA & INRIA Nantes Cntent 1 Intrductin... 3 2 Installing ADT frm binaries... 3 2.1 Installing Eclipse and

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

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

Project Startup Report Presented to the IT Committee June 26, 2012

Project Startup Report Presented to the IT Committee June 26, 2012 Prject Name: SOS File 2.0 Agency: Secretary f State Business Unit/Prgram Area: Secretary f State Prject Spnsr: Al Jaeger Prject Manager: Beverly Maitland Prject Startup Reprt Presented t the IT Cmmittee

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

expertise hp services valupack consulting description security review service for Linux

expertise hp services valupack consulting description security review service for Linux expertise hp services valupack cnsulting descriptin security review service fr Linux Cpyright services prvided, infrmatin is prtected under cpyright by Hewlett-Packard Cmpany Unpublished Wrk -- ALL RIGHTS

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

Succession Planning & Leadership Development: Your Utility s Bridge to the Future

Succession Planning & Leadership Development: Your Utility s Bridge to the Future Successin Planning & Leadership Develpment: Yur Utility s Bridge t the Future Richard L. Gerstberger, P.E. TAP Resurce Develpment Grup, Inc. 4625 West 32 nd Ave Denver, CO 80212 ABSTRACT A few years ag,

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

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

COURSE OUTLINE UNIVERSITY OF LIMPOPO DEPARTMENT: MASTER OF DEVELOPMENT COURSE CODE: CDED 192 MODULE TITLE: PROJECT PLANNING AND MANAGEMENT

COURSE OUTLINE UNIVERSITY OF LIMPOPO DEPARTMENT: MASTER OF DEVELOPMENT COURSE CODE: CDED 192 MODULE TITLE: PROJECT PLANNING AND MANAGEMENT COURSE OUTLINE UNIVERSITY OF LIMPOPO DEPARTMENT: MASTER OF DEVELOPMENT COURSE CODE: CDED 192 MODULE TITLE: PROJECT PLANNING AND MANAGEMENT Lecture Time and Venue Lecture: 8.00 16.00 Venue: TGSL Auditrium

More information

FUJITSU Software ServerView Suite ServerView PrimeCollect

FUJITSU Software ServerView Suite ServerView PrimeCollect User Guide - English FUJITSU Sftware ServerView Suite ServerView PrimeCllect Editin February 2015 Cmments Suggestins Crrectins The User Dcumentatin Department wuld like t knw yur pinin f this manual. Yur

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

Issue Brief. SBC Distribution Rules for Employer Sponsored Health Plans October 2012. Summary. Which Plans Are Required to Provide the SBC?

Issue Brief. SBC Distribution Rules for Employer Sponsored Health Plans October 2012. Summary. Which Plans Are Required to Provide the SBC? Issue Brief SBC Distributin Rules fr Emplyer Spnsred Health Plans Octber 2012 Summary The Affrdable Care Act (ACA) expands ERISA's disclsure requirements by requiring that a summary f benefits and cverage

More information

Responsive Design Fundamentals Chapter 1: Chapter 2: name content

Responsive Design Fundamentals Chapter 1: Chapter 2: name content Lynda.cm Respnsive Design Fundamentals Chapter 1: Intrducing Respnsive Design Respnsive design is a design strategy that is centered n designing yur cntent s that it respnds t the envirnment its encuntered

More information

Fermilab Time & Labor Desktop Computer Requirements

Fermilab Time & Labor Desktop Computer Requirements Fermilab Time & Labr Desktp Cmputer Requirements Fermilab s new electrnic time and labr reprting (FTL) system utilizes the Wrkfrce Central prduct frm Krns. This system is accessed using a web brwser utilizing

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

Basics of Supply Chain Management

Basics of Supply Chain Management The Champlain Valley APICS Chapter is a premier prfessinal assciatin fr supply chain and peratins management and wrking tgether with the APICS rganizatin the leading prvider f research, educatin and certificatin

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

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

Vijay Desai, PMP, MBA, P.Eng December 16, 2009

Vijay Desai, PMP, MBA, P.Eng December 16, 2009 Vijay Desai, PMP, MBA, P.Eng December 16, 2009 December 16, 2009 20 years plus glbal prjects and prgrams management experience Wrking as Head f Operatins at Utility Risk Management Crpratin President f

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

Accident Investigation

Accident Investigation Accident Investigatin APPLICABLE STANDARD: 1960.29 EMPLOYEES AFFECTED: All emplyees WHAT IS IT? Accident investigatin is the prcess f determining the rt causes f accidents, n-the-jb injuries, prperty damage,

More information

GUJARAT TECHNOLOGICAL UNIVERSITY

GUJARAT TECHNOLOGICAL UNIVERSITY GUJARAT TECHNOLOGICAL UNIVERSITY COMPUTER ENGINEERING (07) AND INFORMATION TECHNOLOGY (16) SOFTWARE ENGINEERING SUBJECT CODE: 2160701 B.E. 6 th SEMESTER Type f curse: NA Prerequisite: Object Oriented Prgramming

More information

Reading Pie Charts Introduction to Bar Graphs Reading Bar Graphs Introduction to Data in Tables Reading Data in Tables

Reading Pie Charts Introduction to Bar Graphs Reading Bar Graphs Introduction to Data in Tables Reading Data in Tables Math PLATO Tutrials: Mathematics MATH 120 Cllege Mathematics 1. Data Skills Reading Graphical Data Reading Pie Charts Intrductin t Bar Graphs Reading Bar Graphs Intrductin t Data in Tables Reading Data

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

Wireless Light-Level Monitoring

Wireless Light-Level Monitoring Wireless Light-Level Mnitring ILT1000 ILT1000 Applicatin Nte Wireless Light-Level Mnitring 1 Wireless Light-Level Mnitring ILT1000 The affrdability, accessibility, and ease f use f wireless technlgy cmbined

More information

CMS Eligibility Requirements Checklist for MSSP ACO Participation

CMS Eligibility Requirements Checklist for MSSP ACO Participation ATTACHMENT 1 CMS Eligibility Requirements Checklist fr MSSP ACO Participatin 1. General Eligibility Requirements ACO participants wrk tgether t manage and crdinate care fr Medicare fee-fr-service beneficiaries.

More information

Aladdin HASP SRM Key Problem Resolution

Aladdin HASP SRM Key Problem Resolution Aladdin HASP SRM Key Prblem Reslutin Installatin flwchart fr EmbrideryStudi and DecStudi e1.5 Discnnect frm the Internet and disable all anti-virus and firewall applicatins. Unplug all dngles. Insert nly

More information

SBClient and Microsoft Windows Terminal Server (Including Citrix Server)

SBClient and Microsoft Windows Terminal Server (Including Citrix Server) SBClient and Micrsft Windws Terminal Server (Including Citrix Server) Cntents 1. Intrductin 2. SBClient Cmpatibility Infrmatin 3. SBClient Terminal Server Installatin Instructins 4. Reslving Perfrmance

More information

What is Software Risk Management? (And why should I care?)

What is Software Risk Management? (And why should I care?) What is Sftware Risk Management? (And why shuld I care?) Peter Kulik, KLCI, Inc. 1 st Editin, Octber 1996 Risks are schedule delays and cst verruns waiting t happen. As industry practices have imprved,

More information

VIRTUAL TEAM LEARNING IN ONLINE MBA EDUCATION: AN EMPIRICAL INVESTIGATION

VIRTUAL TEAM LEARNING IN ONLINE MBA EDUCATION: AN EMPIRICAL INVESTIGATION VIRTUAL TEAM LEARNING IN ONLINE MBA EDUCATION: AN EMPIRICAL INVESTIGATION Wayne Huang, Ohi University, huangw@hi.edu Thm Luce, Ohi University, luce@hi.edu Yng Lu, Ohi University, yng.lu.1@hi.edu ABSTRACT

More information

Standardization or Harmonization? You need Both

Standardization or Harmonization? You need Both Standardizatin r? Yu need Bth Albrecht Richen and Ansgar Steinhrst Recently the CFO f a majr cnsumer electrnics cmpany stated, We dn t need standardizatin f ur wrldwide prcesses, we need harmnizatin. Is

More information

2 DAY TRAINING THE BASICS OF PROJECT MANAGEMENT

2 DAY TRAINING THE BASICS OF PROJECT MANAGEMENT 2 DAY TRAINING THE BASICS OF PROJECT MANAGEMENT BASICS f Prject management 1.1. Objectives All participants will learn abut prject-based wrking by getting hands-n experience f a number f techniques. The

More information

Project Name: Herefordshire and Worcestershire Short Course Market Research Proposal. Andrew Corcoran

Project Name: Herefordshire and Worcestershire Short Course Market Research Proposal. Andrew Corcoran Prject Name: Herefrdshire and Wrcestershire Shrt Curse Market Research Prpsal Amendment Histry: Versin N. Date Reasn fr Amendment Prject Manager Andrew Crcran Business Partnerships Office Dcument Distributin

More information

Mandatory Courses Optional Courses Elective Courses

Mandatory Courses Optional Courses Elective Courses SCHOOL OF MATHEMATICAL AND COMPUTER SCIENCES Prgramme Structure Infrmatin fr Academic Year 2015/2016 Actuarial Mathematics and Statistics Undergraduate F723 F771 F713 F712 BSc in Actuarial Science BSc

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

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

Lumension Connect: Online Customer Community FAQs

Lumension Connect: Online Customer Community FAQs Lumensin Cnnect: Online Custmer Cmmunity FAQs Cpyright 2009, Lumensin Lumensin Cnnect: Online Custmer Cmmunity FAQs Table f Cntents Lumensin Cnnect:... 1 Online Custmer Cmmunity FAQs... 1 What is Lumensin

More information

Business Intelligence and DataWarehouse workshop

Business Intelligence and DataWarehouse workshop Business Intelligence and DataWarehuse wrkshp Benefits: Enables the Final year BE student/ Junir IT prfessinals t get a perfect blend f thery and practice n Business Intelligence and Data warehuse s as

More information

Systems Load Testing Appendix

Systems Load Testing Appendix Systems Lad Testing Appendix 1 Overview As usage f the Blackbard Academic Suite grws and its availability requirements increase, many custmers lk t understand the capability f its infrastructure. As part

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

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents HP ExpertOne HP2-T21: Administering HP Server Slutins Industry Standard Servers Exam preparatin guide Table f Cntents Overview 2 Why take the exam? 2 HP ATP Server Administratr V8 certificatin 2 Wh shuld

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

To transform information into knowledge- a firm must expend additional resources to discover, patterns, rules, and context where the knowledge works

To transform information into knowledge- a firm must expend additional resources to discover, patterns, rules, and context where the knowledge works Chapter 15- Managing Knwledge Knwledge Management Landscape Knwledge management systems- supprt the creatin, capture, strage, and disseminatin f firm expertise and knwledge, have becme ne f the fastest-grwing

More information

Enterprise Investment Scheme. Tax efficiency for investors

Enterprise Investment Scheme. Tax efficiency for investors Enterprise Investment Scheme Tax efficiency fr investrs Intrductin Welcme t Keyntes. Keyntes is a mnthly event and publicatin t help early stage businesses get t grips with key legal issues. A bit abut

More information

How to Write Program Objectives/Outcomes

How to Write Program Objectives/Outcomes Hw t Write Prgram Objectives/Outcmes Objectives Gals and Objectives are similar in that they describe the intended purpses and expected results f teaching activities and establish the fundatin fr assessment.

More information

J A M S. Enterprise Resource Planning (ERP) System Selection Using a Novel Integrated Weight Decision Making Method. R. V. Rao 1* and B. K.

J A M S. Enterprise Resource Planning (ERP) System Selection Using a Novel Integrated Weight Decision Making Method. R. V. Rao 1* and B. K. Internatinal Jurnal f Advanced Manufacturing Systems Vlume 2 G Number 1 G January-June 2011 G pp. 21-28 Internatinal Science Press I J A M S Enterprise Resurce Planning (ERP) System Selectin Using a Nvel

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

Best Practice - Pentaho BA for High Availability

Best Practice - Pentaho BA for High Availability Best Practice - Pentah BA fr High Availability This page intentinally left blank. Cntents Overview... 1 Pentah Server High Availability Intrductin... 2 Prerequisites... 3 Pint Each Server t Same Database

More information

CE 566 Project Controls Planning and Scheduling

CE 566 Project Controls Planning and Scheduling CE 566 Prject Cntrls Planning and Scheduling 2011 Spring Semester Curse Syllabus Lecture Thursday 3:30 6:10 PM RTH 109 Prfessr Russ Vakharia Phne (310) 710-4458 Email Office Hurs Prerequisite Textbk Curse

More information

OCR LEVEL 2 CAMBRIDGE TECHNICAL

OCR LEVEL 2 CAMBRIDGE TECHNICAL Cambridge TECHNICALS OCR LEVEL 2 CAMBRIDGE TECHNICAL CERTIFICATE/DIPLOMA IN IT SETTING UP AN IT NETWORK M/601/3274 LEVEL 2 UNIT 6 GUIDED LEARNING HOURS: 60 UNIT CREDIT VALUE: 10 SETTING UP AN IT NETWORK

More information

RECONCILIATION OF FUNDS

RECONCILIATION OF FUNDS RECONCILIATION OF FUNDS ROLES Departmental Staff f Interest Accuntants Office Managers Business Managers Prgram Assistants OVERVIEW S why d we need t recncile? Gd general business practices determine that

More information