COMPUTING: SOFTWARE DEVELOPMENT

Size: px
Start display at page:

Download "COMPUTING: SOFTWARE DEVELOPMENT"

Transcription

1 Victorian Certificate of Education 2017 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER COMPUTING: SOFTWARE DEVELOPMENT Written examination Thursday 16 November 2017 Reading time: 3.00 pm to 3.15 pm (15 minutes) Writing time: 3.15 pm to 5.15 pm (2 hours) QUESTION AND ANSWER BOOK Section Number of questions Structure of book Number of questions to be answered Number of marks A B C Total 100 Students are permitted to bring into the examination room: pens, pencils, highlighters, erasers, sharpeners, rulers and one scientific calculator. Students are NOT permitted to bring into the examination room: blank sheets of paper and/or correction fluid/tape. Materials supplied Question and answer book of 24 pages Detachable insert containing a case study for Section C in the centrefold Answer sheet for multiple-choice questions Instructions Detach the insert from the centre of this book during reading time. Write your student number in the space provided above on this page. Check that your name and student number as printed on your answer sheet for multiple-choice questions are correct, and sign your name in the space provided to verify this. All written responses must be in English. At the end of the examination Place the answer sheet for multiple-choice questions inside the front cover of this book. You may keep the detached insert. Students are NOT permitted to bring mobile phones and/or any other unauthorised electronic devices into the examination room. VICTORIAN CURRICULUM AND ASSESSMENT AUTHORITY 2017

2 2017 SOFTDEV EXAM 2 SECTION A Multiple-choice questions Instructions for Section A Answer all questions in pencil on the answer sheet provided for multiple-choice questions. Choose the response that is correct or that best answers the question. A correct answer scores 1; an incorrect answer scores 0. Marks will not be deducted for incorrect answers. No marks will be given if more than one answer is completed for any question. Question 1 A student is developing a database as a software solution. Which one of the following is an example of a functional requirement of the student s software solution? A. low price B. open source C. maintainability D. search for a record in a file Question 2 To evaluate the effectiveness of a new software solution for an online book sales company, Lee, a systems analyst, will need to A. measure the transaction times of processes. B. compare the costs of the new solution with the old solution. C. check the number of customer complaints about the accuracy of invoices. D. compare the workload of staff before and after the implementation of the software solution. Question 3 The characteristics of data integrity include A. timeliness, accuracy, security, correctness. B. accuracy, reasonableness, authenticity, depth. C. accuracy, annotations, timeliness, authenticity. D. timeliness, reasonableness, authenticity, correctness. Question 4 A software solution requires users to enter their height in centimetres and weight in kilograms so that it is able to calculate their body mass index. If users enter the data incorrectly, the software solution will not work. Validation checks have been placed on the height entry field to ensure that the height entered is between 100 cm and 250 cm, and that the data is numeric. These checks are called A. type checking and spell checking. B. range checking and type checking. C. existence checking and type checking. D. existence checking and range checking. SECTION A continued

3 SOFTDEV EXAM Question 5 Which documentation should be included in a software requirements specification? A. software testing plan B. user interface designs C. project management plan D. constraints on the solution Question 6 a = 5; b = 7; c = 3; Given the values of the variables above, which one of the following functions will return a value of False? A. def functiona() If (a > c) or (b > c) return True Else return False EndIf B. def functionb() If (c < b) and (a < c) return True Else return False EndIf C. def functionc() If (c < b) or (a < c) return True Else return False EndIf D. def functiond() If (b > a) and (c < a) return True Else return False EndIf Question 7 There are a number of design tools that can be used to design software. Which one of the following is an example of a design tool that would demonstrate the order of execution of code in a software solution? A. pseudocode B. data dictionary C. context diagram D. use case diagram Question 8 The purpose of a data flow diagram is to display A. the organisation of data in storage. B. where data originates and where it is stored. C. the sequence of tasks involved in completing a project. D. the order in which the processes within a system occur. SECTION A continued TURN OVER

4 2017 SOFTDEV EXAM 4 Question 9 The variables in a software solution are to be given names. The documentation that includes the variable names is called a A. storyboard. B. Gantt chart. C. data dictionary. D. use case diagram. Question 10 Testing the usability of a new solution could include A. interviews with the users of the new solution. B. measuring the time users take to perform the tasks with the new solution. C. measuring the number of errors made due to the design of the new solution. D. measuring the time taken to process data entered by users of the new solution. Question 11 Andrew has been hired to develop a new web-based software solution for a medical centre. A technical constraint on the software solution would be A. usability. B. project cost. C. effectiveness. D. available hardware. Question 12 Sarah is developing a new software solution for a bank and, as part of the analysis stage, she is compiling a list of the system s requirements. She has learnt that in 18 months the bank will be upgrading the server that the software solution will run on and a decision has not been made as to which operating system will be chosen. Which one of the following would be a non-functional requirement of the new software solution caused by the upgrading of the server? A. portability B. customer login C. view customer balance D. update credit card limit Question 13 Luca creates a project plan for the creation of a software solution for a new design. At which stage of the problem-solving methodology will the monitoring of this plan begin? A. design B. analysis C. evaluation D. development SECTION A continued

5 SOFTDEV EXAM Question 14 Associative arrays are best described as A. never using hash tables. B. only having data as strings. C. aiding in the organisation of data. D. keeping data in alphabetical order. Question 15 Which one of the following is a correct statement about selection sort and quick sort for large files? A. A selection sort is normally faster than a quick sort, which uses a pivot. B. A quick sort is normally faster than a selection sort, which uses a pivot. C. The algorithm for a quick sort produces fewer comparisons than the algorithm for a selection sort. D. The algorithm for a selection sort produces fewer comparisons than the algorithm for a quick sort. Question 16 Which one of the following is the most appropriate statement about data storage? A. A network fileserver can only hold files with large amounts of data. B. Individual pieces of data can never be accessed without reading the whole file if the data is stored in a computer s internal storage. C. Storing files on a high-speed network fileserver allows faster access to data than storing files in a computer s internal storage. D. Storing files in a computer s internal storage allows faster access to data than storing files on a high-speed network fileserver. Question 17 Procedures and techniques for managing files include A. integrity, security, accuracy. B. security, archiving, backing up. C. validation, security, backing up. D. instructions, functions, control structures. Question 18 Which one of the following gives examples of an information system goal and an information system objective for a new financial information system? Goal Objective A. will be attractive will work better B. will be attractive will reduce processing time C. will provide faster service to clients D. will provide faster service to clients will work better will reduce processing time to less than one minute per transaction SECTION A continued TURN OVER

6 2017 SOFTDEV EXAM 6 Question 19 Which one of the following statements about wired networks and wireless networks is correct? A. Wired networks are easier to set up than wireless networks. B. Wired networks are considered more secure from hacking than wireless networks. C. Wireless networks are considered more secure from hacking than wired networks. D. Wireless networks can easily be limited to specific locations compared to wired networks. Question 20 A network that allows all members of an organisation to access information system resources while logged in at a particular location is best described as A. an intranet. B. the internet. C. a client server. D. a virtual private network. END OF SECTION A

7 SOFTDEV EXAM SECTION B Short-answer questions Answer all questions in the spaces provided. Instructions for Section B Question 1 (4 marks) Robert has presented a new program that he has been working on to Vanessa so that she can test the code. Vanessa notices that Robert has not included internal documentation throughout the program. She tells Robert that it will be difficult for her to properly test his code unless he adds the internal documentation. Identify two characteristics of internal documentation and explain how each will help Vanessa to test the code. Characteristic 1 Explanation Characteristic 2 Explanation SECTION B continued TURN OVER

8 2017 SOFTDEV EXAM 8 Question 2 (4 marks) A doctors surgery has installed a new patient records system. All records, including patient records, s and files downloaded from the internet, are stored in a large server room located on the surgery s premises. The business that upgraded the system suggested that the owners address data security as part of the upgrade. For each of the following threats to the integrity and security of the surgery s data, explain the risk that the threat might pose to the surgery s database and suggest a way in which the patient records system can be protected. A power surge Staff opening a phishing Question 3 (2 marks) Explain how two people who have never physically met can use public key cryptography to send data between them securely over the internet. SECTION B continued

9 SOFTDEV EXAM Question 4 (4 marks) The All-Star Sports Club needs to find out who is eligible to enter an upcoming Masters event. All participants in the Masters event must be 40 years old or older. The club needs to print out a list of eligible members. When the club s system is running, all data is stored in a series of arrays. The relevant fields are date_of_birth[], surname[], firstname[] and gender[], all with the same index value for all fields of a member. The variable numbermembers holds the number of members of the club and the arrays start at the value 1. It has been proposed to add a procedure that will start at the first record and look through each record, printing out the first name, surname, gender and date of birth of each person who is at least 40 years old. To compute age, all members must be born before Write the pseudocode for this procedure. Begin End SECTION B continued TURN OVER

10 2017 SOFTDEV EXAM 10 Question 5 (2 marks) TCP/IP is used when transmitting and receiving data over the internet and often over local networks. It consists of two protocols the TCP protocol and the IP protocol. a. Outline the main role of the TCP protocol when transmitting and receiving data. 1 mark b. Outline the main role of the IP protocol. 1 mark SECTION B continued

11 SOFTDEV EXAM Question 6 (4 marks) A regional department store has decided to introduce free wi-fi for its instore customers. The decision to provide free wi-fi was made on the understanding that the department store could recover its costs through data mining. a. Define the term data mining. 1 mark b. State two types of internet data retrieved through data mining that could be kept by the department store and how these types of internet data could be used by the department store. 2 marks c. Outline how the practice of data mining might cause a conflict between the department store and its customers. 1 mark END OF SECTION B TURN OVER

12 2017 SOFTDEV EXAM 12 SECTION C Case study Instructions for Section C Please remove the insert from the centre of this book during reading time. Use the case study provided in the insert to answer the questions in this section. Answers must apply to the case study. Answer all questions in the spaces provided. Question 1 (4 marks) Logan considers the data flows for the proposed demand-responsive transport (DRT) system and begins to draw a data flow diagram for the central computer, the hardware and software on the minibuses, and the application on passengers mobile devices. credit details bank payment confirmation D traffic request satellite bus location traffic data B C booking data A booking data route details passenger booking data file pick-up and drop-off time route file Complete the data flow diagram that Logan has started by writing the correct labels for A, B, C and D in the spaces provided below. A B C D SECTION C continued

13 SOFTDEV EXAM Question 2 (4 marks) Once a passenger is logged in to the MBS application, they must complete the Create booking procedure. On completion of the Create booking procedure, the passenger has the option to Purchase headphones, which come at an additional cost but can be used to listen to a series of pre-tuned radio stations on the minibus throughout the journey. If the passenger s plans change, it is possible to Modify booking or Delete booking up to 12 hours prior to the journey. In order to modify a booking, the passenger must use the Search existing bookings function and select the booking that they wish to modify. If a passenger wishes to use the Delete booking feature, they can do so through Modify booking. Complete the use case diagram below to show the stated requirements. <<extends>> <<includes>> passenger search existing bookings <<extends>> SECTION C continued TURN OVER

14 2017 SOFTDEV EXAM 14 Question 3 (2 marks) Sophie works in the IT Department of MBS and is responsible for the project management and rollout of the DRT system. Several months ago, her team launched a website that allows potential passengers of the DRT system to register their details, including name, phone number and address, so that they can receive updates on the rollout of the DRT system. Sophie wants to recruit many interested passengers so that when the DRT system goes live, it will already have many potential passengers. However, Sophie is concerned about keeping the collected passenger data safe and private. Describe one action, other than physical security methods, that could be used to secure passenger data. SECTION C continued

15 SOFTDEV EXAM Question 4 (4 marks) In order for the new DRT system to meet the needs of MBS, its minibus drivers and its passengers, the GCS development team must collect a range of data to determine these needs and the requirements of the DRT system. Identify a suitable data collection technique for each stakeholder listed in the table below and justify why this is the best technique to use for this stakeholder. An example has been provided. Stakeholder Technique Justification minibus drivers observation Observing drivers on their routes would allow the development team to get an understanding of the time it takes to pick up and drop off passengers. The development team would see regular issues that may arise during the day. The development team would also see a driver s interaction with passengers and gain information that may influence the way the application may work. MBS passengers SECTION C continued TURN OVER

16 2017 SOFTDEV EXAM 16 Question 5 (4 marks) As a first step, Logan starts to plan the project and decides to use three separate teams to develop the DRT system. He estimates that it will take 25 days to write, test and debug the software needed on the central computer. It will take 15 days to write, test and debug the software needed on the tablet on the bus and 20 days to write, test and debug the application that will be on the passengers mobile devices. It will take 10 days to install the software and hardware, and test if the central computer can communicate with the passengers mobile devices and with the tablet in the bus and its associated GPS sensor. It will take a further five days to test the DRT system. Days Task no Task Write, test and debug software on central computer. Write, test and debug software on tablet. Write, test and debug application on passengers mobile devices. Install software and hardware, and test if central computer can communicate with passengers mobile devices and with tablet in bus and its associated GPS sensor Test DRT system. a. Indicate on the Gantt chart above two milestones that occur during this project. 2 marks b. Using the Gantt chart above, identify two tasks that can be undertaken concurrently. 1 mark c. Using the Gantt chart above, identify the tasks on the critical path. 1 mark SECTION C continued

17 SOFTDEV EXAM Question 6 (4 marks) Identify two techniques that Logan could use to record the progress of the project and explain how each technique will assist him with running the project successfully. Technique 1 Explanation Technique 2 Explanation Question 7 (4 marks) Shown below is an extract from the MBS data dictionary, listing variable names and explaining how the variables will be used in development. From the following list of data types and structures, select the most appropriate type or structure for each variable and its accompanying explanation. Write your selection in the spaces provided below. integer floating point Boolean character string array record Variable name Passenger_Name Data type or structure Explanation the name of the passenger using the MBS application Passenger_Phone_Number the mobile phone number of the passenger using the MBS application, in the form Passenger_List the list of passengers who have registered using the MBS application Passenger_SMS_N a value representing whether the passenger would like an SMS notification when the minibus is approaching their pick-up location SECTION C continued TURN OVER

18 2017 SOFTDEV EXAM 18 Question 8 (9 marks) When a passenger makes a booking, they need to have enough money in their account (account_balance) to pay for the fare or have given MBS permission to automatically top up their balance from a nominated credit card (topup = true). If neither of these conditions is met, then the booking is refused and a low balance message is sent to the passenger. The following pseudocode is used to check these conditions. valid_booking False If account_balance > fare AND topup = True THEN valid_booking True Else Print low balance message EndIf a. Complete the following test table so that this pseudocode is fully tested, and include expected and actual results. Use a fare of $5.00 for testing purposes. 5 marks Test no. account_balance topup Expected result Actual result 1 6 True valid_booking True No message valid_booking True No message b. What are the errors in the pseudocode that would cause the invalid responses in the test table? 2 marks SECTION C Question 8 continued

19 SOFTDEV EXAM c. Rewrite the pseudocode so that it works correctly. 2 marks Question 9 (2 marks) The following is an extract from the data file that stores journey data from the MBS application. <booking> <passenger_number>1001</passenger_number> <pickup_address>17 Smith Street</pickup_address> <pickup_postcode>3934</pickup_postcode> <dropoff_address>201 Burke Street</dropoff_address> <dropoff_postcode>3921</dropoff_postcode> </booking> Name the file format that has been used to create this file and describe one advantage of using this file format. SECTION C continued TURN OVER

20 2017 SOFTDEV EXAM 20 Question 10 (6 marks) When a passenger logs in to the MBS application, they will do so using a passenger number that will be issued to them during registration, along with a password. Before authenticating the passenger s password, the MBS application will search for their passenger number and ensure that it exists. The data in the passenger table is ordered by passenger number. Function search_passenger(search_passenger_number) For each passenger_number in passenger_table IF passenger_number = search_passenger_number THEN Return Found EndIf Next passenger_number Return Not Found End Function a. Name the search technique that has been used to search for the passenger in the pseudocode above. 1 mark b. State one advantage and one disadvantage of the search technique named in part a. 2 marks Advantage Disadvantage c. Name a more suitable search technique that could be used. Explain why it is more suitable. 3 marks Name Explanation SECTION C continued

21 SOFTDEV EXAM Question 11 (3 marks) On the whole, the project has run smoothly, with the exception of the cost of the outsourced interfaces being higher than was originally anticipated. Jeff is the lead technical officer at LCS (an information marketing firm) and he has approached Riya with the proposition that MBS agree to sell their database of prospective passengers in return for a sum of money. Jeff says that passengers details will be used for advertising purposes in different projects run by LCS and that there is no way that any of the passengers will find out that it was MBS who provided their information. Riya is concerned that such actions would be illegal, but she is not sure which legislation applies or why. Identify one piece of legislation that could potentially be breached if the proposition were accepted and justify your choice. Legislation Justification SECTION C continued TURN OVER

22 2017 SOFTDEV EXAM 22 Question 12 (4 marks) Riya is concerned about the possibility of MBS suffering from a cyber attack due to the fact that the DRT system will be online to mobile devices and will contain large amounts of sensitive data. Riya proposes a number of actions to help protect the DRT system. She suggests that a physical firewall be installed in the head office to help protect the central computer from attacks over the internet. a. What is the role of the firewall? 1 mark b. Where should the firewall be placed to best protect the central computer? 1 mark c. Describe two other steps that Riya could propose to protect the data on the central computer from attack through the internet. 2 marks SECTION C continued

23 SOFTDEV EXAM Question 13 (4 marks) MBS expects large amounts of data to be created every day. For example, each request to make a booking will create GPS data, data from the generation of the optimum route and data from the bank. Some of the data will only be required for a short period of time, while other data will be more stable and change less frequently. a. Suggest a backup strategy that could be used to back up frequently changing data and more stable data. Give reasons for your suggestion. 2 marks b. MBS has decided to archive the data files. Explain the difference between archiving and backing up. 2 marks Question 14 (2 marks) Once the DRT system is running, it is noted that passengers regularly enter a house number that does not exist in a given street. Data about the lowest and highest house number is known to the DRT system and the house number entered by the passenger must fall between these. GCS decides to add some code so that the passenger is prompted when an invalid house number is entered. a. What is this process called? 1 mark b. Describe how this process works. 1 mark SECTION C continued TURN OVER

24 2017 SOFTDEV EXAM 24 Question 15 (4 marks) Logan has developed a number of evaluation criteria to measure the effectiveness of the software solution developed for the DRT system. Two of these criteria are as follows: 1. All passengers are to be picked up within five minutes of the requested time. 2. Passenger satisfaction is to be gauged by the number of repeat bookings. Outline a strategy for evaluating each criterion. Criterion 1 Criterion 2 END OF QUESTION AND ANSWER BOOK

25 SOFTDEV INSERT Insert for Section C Case study Please remove from the centre of this book during reading time. TURN OVER

26 2017 SOFTDEV INSERT 2 Modern Bus Services (MBS) has approached the state government to run a demand-responsive transport (DRT) system in a new, expanding residential area currently not serviced by public transport. The company runs traditional bus services in other areas, but feels that a traditional service will not be economical in this area. The government sees the potential of this new concept and has approved a pilot program based on MBS s proposal. The DRT system will be cheaper for passengers than a taxi or other single-use vehicle, but will be more costly than a traditional bus ride. The service will commence with three minibuses, but more can be added quickly if the demand is above what is expected. The plan is to use 20-seat luxury minibuses. The advantages of the proposal are as follows: 1. door-to-door service 2. pick-up close to the time requested (no fixed timetable) 3. lower cost than similar single-user services, such as taxis 4. luxury facilities 5. reliability, as the DRT system will be run by a well-established company Now, the software solution needs to be designed and implemented. The proposed DRT system will consist of a: central computer at the minibus depot mobile tablet in each minibus. Each minibus will also be fitted with a Global Positioning System (GPS) sensor to provide its exact location at all times. The central computer: collects location data generated from satellites via the GPS sensor sends traffic requests to the Roads Department receives traffic warnings and notifications of delays to assist with computing the most efficient route works out the route required for the minibus to pick up passengers computes pick-up times sends credit card details and payment amounts to the bank when a passenger s account is low gets payment confirmation from the bank when the account is topped up. Registering To use the DRT system, passengers will be required to install an application on their mobile device. Passengers will register an account within the system and set up their method of payment. Payment will be deducted from the passenger s account, which will be set up through the application at the time of registration. To register, passengers will be required to supply the following information to MBS: name billing address and postal address address payment information Options for payment will include: depositing money into an MBS account registering for direct debit or credit card payment. Each registered passenger will then be provided with a unique passenger number and password for future transactions.

27 SOFTDEV INSERT Booking Passengers will use the application on their mobile device to contact MBS and make a booking. All locations must be within a defined area. When booking a minibus, the passenger will provide the following information: time date location for the pick up location for the drop off passenger number (which will automatically be added) As passengers make bookings, the central computer will ensure that each booking does not increase the total travel time by more than five minutes or cause overcrowding on that trip. If these conditions cannot be met, passengers will be booked on the next minibus. Using the given data, the central computer will generate a route map for each minibus and send it through to the relevant vehicle s on-board tablet. When the booking is complete, the application will give the passenger an approximate pick-up time and produce a route map. After each completed trip, passenger feedback will be sought via the application. Passengers will be able to rate the drive, the condition of the minibus and the timeliness of each trip. This will enable MBS to continually monitor the service and to make improvements where necessary. Logan and Riya from Grommet Computer Services (GCS) have been selected by MBS to develop the software solution and install all hardware that MBS will need to implement the DRT system. satellite Roads Department GPS sensor minibus central computer passenger bank END OF INSERT

COMPUTING: SOFTWARE DEVELOPMENT

COMPUTING: SOFTWARE DEVELOPMENT Victorian Certificate of Education 2016 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER COMPUTING: SOFTWARE DEVELOPMENT Written examination Thursday 10 November 2016 Reading time: 11.45

More information

Paper Reference IT Paper Reference(s) IT201/01 Edexcel Principal Learning Information Technology Level 2 Unit 1: The Potential of Technology

Paper Reference IT Paper Reference(s) IT201/01 Edexcel Principal Learning Information Technology Level 2 Unit 1: The Potential of Technology Centre No. Candidate No. Surname Signature Paper Reference(s) IT201/01 Edexcel Principal Learning Information Technology Level 2 Unit 1: The Potential of Technology Thursday 15 January 2009 Morning Time:

More information

Paper Reference IT Paper Reference(s) IT201/01 Edexcel Principal Learning Information Technology Level 2 Unit 1: Potential of Technology

Paper Reference IT Paper Reference(s) IT201/01 Edexcel Principal Learning Information Technology Level 2 Unit 1: Potential of Technology Centre No. Candidate No. Paper Reference(s) IT201/01 Edexcel Principal Learning Information Technology Level 2 Unit 1: Potential of Technology Friday 22 May 2009 Morning Time: 1 hour Materials required

More information

*H30340A0116* H30340A W850/U4385/ /4/6/4. Turn over

*H30340A0116* H30340A W850/U4385/ /4/6/4. Turn over Centre No. Candidate No. Surname Signature Paper Reference(s) 4385/1F London Examinations IGCSE Information and Communication Technology Paper 1F Foundation Tier Monday 12 May 2008 Morning Time: 1 hour

More information

BillQuick MYOB Integration

BillQuick MYOB Integration Time Billing and Business Management Software Built With Your Industry Knowledge BillQuickMYOB Integration Integration Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505 Support: (310)

More information

HOW INTEGRATION WORKS...

HOW INTEGRATION WORKS... Contents INTRODUCTION... 1 How to Use This Guide... 1 Software Editions Supported... 2 HOW INTEGRATION WORKS... 3 INTEGRATION RULES... 4 SYNC SETTINGS... 7 General Settings... 7 Send Settings... 8 Get

More information

BillQuick Peachtree Integration

BillQuick Peachtree Integration Time Billing and Business Management Software Built With Your Industry Knowledge BillQuickPeachtree Integration Integration Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505 Support:

More information

ArchiOffice QuickBooks Integration

ArchiOffice QuickBooks Integration Office and Project Management Solution ArchiOffice QuickBooks Integration Integration Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505 Support: (310) 602-4030 Sales: (888) 245-5669

More information

INFORMATION PROCESSING AND MANAGEMENT

INFORMATION PROCESSING AND MANAGEMENT Victorian Certificate of Education 2006 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words INFORMATION PROCESSING AND MANAGEMENT Written examination Section Tuesday 31 October

More information

BillQuick MYOB Integration

BillQuick MYOB Integration Time Billing and Business Management Software Built With Your Industry Knowledge BillQuickMYOB Integration Integration Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505 Support: (310)

More information

Letter STUDENT NUMBER BUSINESS MANAGEMENT. Written examination. Monday 31 October 2016

Letter STUDENT NUMBER BUSINESS MANAGEMENT. Written examination. Monday 31 October 2016 Victorian Certificate of Education 2016 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER BUSINESS MANAGEMENT Written examination Monday 31 October 2016 Reading time: 3.00 pm to 3.15 pm

More information

Letter STUDENT NUMBER MEDIA. Written examination. Day Date. Reading time: *.** to *.** (15 minutes) Writing time: *.** to *.

Letter STUDENT NUMBER MEDIA. Written examination. Day Date. Reading time: *.** to *.** (15 minutes) Writing time: *.** to *. Victorian Certificate of Education Year SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER Section MEDIA Written examination Day Date Reading time: *.** to *.** (15 minutes) Writing time:

More information

BillQuick QuickBooks Integration

BillQuick QuickBooks Integration Time Billing and Business Management Software Built With Your Industry Knowledge BillQuickQuickBooks Integration Advanced Integration Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505

More information

Do not turn over this examination paper until instructed to do so. Answer all questions.

Do not turn over this examination paper until instructed to do so. Answer all questions. IB Computer Science Paper 1 - Mock Exam - Dec 2014 (1/9) COMPUTER SCIENCE HIGHER LEVEL (questions 1-17) - 2 hours 10 minutes STANDARD LEVEL (questions 1-14) - 1 hour 30 minutes PAPER 1 MOCK EXAM INSTRUCTIONS

More information

BillQuick-QuickBooks Advanced Integration Guide 2016

BillQuick-QuickBooks Advanced Integration Guide 2016 BillQuick-QuickBooks Advanced Integration Guide 2016 CONTENTS INTRODUCTION 1 HOW TO USE THIS GUIDE 1 SOFTWARE EDITIONS SUPPORTED 2 HOW INTEGRATION WORKS 2 MODES OF SYNCHRONIZATION 3 INTEGRATION RULES 4

More information

Letter Figures Words BUSINESS MANAGEMENT. Written examination. Friday 18 November 2011

Letter Figures Words BUSINESS MANAGEMENT. Written examination. Friday 18 November 2011 Victorian Certificate of Education 2011 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words BUSINESS MANAGEMENT Written examination Friday 18 November 2011 Reading time: 3.00

More information

ArchiOffice QuickBooks Integration

ArchiOffice QuickBooks Integration Office and Project Management Solution ArchiOffice QuickBooks Integration Advanced Integration Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505 Support: (310) 602-4030 Sales: (888)

More information

Requirements Specification

Requirements Specification Ambulance Dispatch System Submitted to: Dr. Chung Submitted by: Chris Rohleder, Jamie Smith, and Jeff Dix Date Submitted: February 14, 2006 TABLE OF CONTENTS 1.0 INTRODUCTION...1 1.1 PURPOSE...1 1.2 SCOPE...1

More information

Do not turn over this examination paper until instructed to do so. Answer all questions.

Do not turn over this examination paper until instructed to do so. Answer all questions. IB Computer Science Paper 1 - Mock Exam - Dec 2013 (1/9) COMPUTER SCIENCE HIGHER LEVEL (ALL questions) STANDARD LEVEL (questions 1-14) PAPER 1 MOCK EXAM HL - 2 hours 10 minutes SL - 1 hour 30 minutes INSTRUCTIONS

More information

The website for 10 Y Fan is hosted by - payments for registration and merchandise are processed by Stripe.

The website for 10 Y Fan is hosted by   - payments for registration and merchandise are processed by Stripe. This privacy policy sets out how 10 Y Fan uses and protects any information that you give when you use this website. 10 Y Fan is committed to ensuring that your privacy is protected. Should we ask you

More information

This topic focuses on how to prepare a customer for support, and how to use the SAP support processes to solve your customer s problems.

This topic focuses on how to prepare a customer for support, and how to use the SAP support processes to solve your customer s problems. This topic focuses on how to prepare a customer for support, and how to use the SAP support processes to solve your customer s problems. 1 On completion of this topic, you will be able to: Explain the

More information

HOW INTEGRATION WORKS...3

HOW INTEGRATION WORKS...3 Contents INTRODUCTION...1 How to Use This Guide... 1 Software Editions Supported... 2 HOW INTEGRATION WORKS...3 INTEGRATION RULES... 4 INTEGRATION SETTINGS... 8 Send Settings... 8 Get Settings... 9 Account

More information

Flow Charts. This section primarily covers four areas:

Flow Charts. This section primarily covers four areas: Introduction This section covers the use of flow diagrams (charts) in the production of algorithms. Systems flowcharts are different and these are covered in a different section (Systems analysis). This

More information

We have now introduced a new layout when you first load up the app as can be seen in the image below.

We have now introduced a new layout when you first load up the app as can be seen in the image below. Dean Taxis New App User Guide After lots of testing and customer feedback sessions, Dean Taxis is pleased to announce its new and improved booking app. This will be getting rolled out over the next week

More information

Online shopping. Directions: Complete the following note taking guide during the PowerPoint presentation.

Online shopping. Directions: Complete the following note taking guide during the PowerPoint presentation. 3.L1 Note taking guide Online shopping Directions: Complete the following note taking guide during the PowerPoint presentation. Total Points Earned 26 Total Points Possible Percentage Name Date Class What

More information

Letter STUDENT NUMBER VCE VET BUSINESS. Written examination. Thursday 16 November 2017

Letter STUDENT NUMBER VCE VET BUSINESS. Written examination. Thursday 16 November 2017 Victorian Certificate of Education 2017 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER VCE VET BUSINESS Written examination Thursday 16 November 2017 Reading time: 9.00 am to 9.15 am

More information

RELEASE NOTES. Practice Management. Version 11

RELEASE NOTES. Practice Management. Version 11 RELEASE NOTES Practice Management Version 11 Author Created and Published by Reckon Limited Level 7, 65 Berry Street North Sydney NSW 2060 Australia ACN 003 348 730 All Rights Reserved Copyright 2015 Reckon

More information

BillQuick QuickBooks Integration

BillQuick QuickBooks Integration Time Billing and Business Management Software Built With Your Industry Knowledge BillQuickQuickBooks Integration Integration Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505 Support:

More information

Paper Reference IT Paper Reference(s) IT101/01 Edexcel Principal Learning Information Technology Level 1 Unit 1: Technology in Organisations

Paper Reference IT Paper Reference(s) IT101/01 Edexcel Principal Learning Information Technology Level 1 Unit 1: Technology in Organisations Centre No. Candidate No. Paper Reference IT101 01 Surname Signature Paper Reference(s) IT101/01 Edexcel Principal Learning Information Technology Level 1 Unit 1: Technology in Organisations Friday 9 January

More information

On-Demand Solution Planning Guide

On-Demand Solution Planning Guide On-Demand Solution Planning Guide Powering On-Demand Solutions www.growthclick.com hello@growthclick.com Copyright 2019 GrowthClick Inc. All Rights Reserved. 1 3 Steps to Planning an On-Demand Solution

More information

Travel Account Diners Club Reference Manual

Travel Account Diners Club Reference Manual Travel Account Diners Club Reference Manual Contents Introduction 3 How your account works.....4 Account Details... 5 Account Reconciler..6-7 Payment Methods and Guidelines...8-9 Accessing the Travel Account

More information

How your personal information is used by Capital Credit Union

How your personal information is used by Capital Credit Union Privacy How your personal information is used by Capital Credit Union Your information will be held by Capital Credit Union Ltd. More information on Capital Credit Union can be found at www.capitalcreditunion.com

More information

Current Account Credit Card. Privacy Notice

Current Account Credit Card. Privacy Notice Current Account Credit Card Privacy Notice Contents Introduction 3 What sort of data do we hold about you? 3 What about joint applications and additional cardholders? 4 How does Tesco Bank use your personal

More information

FLEET MANAGEMENT SYSTEM (FMS)

FLEET MANAGEMENT SYSTEM (FMS) FLEET MANAGEMENT SYSTEM (FMS) A Brief Overview A Brief Description of the Components of a Full-Blown FMS A fleet management system is a complex system that encompasses features that covers the efficiency

More information

Letter STUDENT NUMBER BUSINESS MANAGEMENT. Written examination. Monday 2 November 2015

Letter STUDENT NUMBER BUSINESS MANAGEMENT. Written examination. Monday 2 November 2015 Victorian Certificate of Education 2015 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER BUSINESS MANAGEMENT Written examination Monday 2 November 2015 Reading time: 3.00 pm to 3.15 pm

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *8981297620* INFORMATION AND COMMUNICATION TECHNOLOGY 0417/13 Paper 1 October/November 2014 2 hours

More information

Survey paper on Smart Parking System based on Internet of Things

Survey paper on Smart Parking System based on Internet of Things Survey paper on Smart Parking System based on Internet of Things Vishwanath Y 1, Aishwarya D Kuchalli 2, Debarupa Rakshit 3 1,2,3 Information Science, New Horizon College of Engineering, Bengaluru, India,

More information

Job Board - A Web Based Scheduler

Job Board - A Web Based Scheduler Job Board - A Web Based Scheduler Cameron Ario and Kasi Periyasamy Department of Computer Science University of Wisconsin-La Crosse La Crosse, WI 54601 {ario.came, kperiyasamy}@uwlax.edu Abstract Contractual

More information

PRIVACY POLICY. VERSION 1.3 Keystone Property Finance 42 Kings Hill Avenue, Kings Hill, West Malling, Kent M19 4AJ

PRIVACY POLICY. VERSION 1.3 Keystone Property Finance 42 Kings Hill Avenue, Kings Hill, West Malling, Kent M19 4AJ PRIVACY POLICY VERSION 1.3 Keystone Property Finance 42 Kings Hill Avenue, Kings Hill, West Malling, Kent M19 4AJ Contents INTRODUCTION... 2 WHY WE PROVIDE YOU WITH OUR PRIVACY NOTICE... 2 OUR PRIVACY

More information

Loging in... 2 Finding tickets... 3 Taxy transfer... 7 Finishing the purchase... 8 Discounts... 9 Returing bus tickets/taxy transfer...

Loging in... 2 Finding tickets... 3 Taxy transfer... 7 Finishing the purchase... 8 Discounts... 9 Returing bus tickets/taxy transfer... Loging in... 2 Finding tickets... 3 Taxy transfer... 7 Finishing the purchase... 8 Discounts... 9 Returing bus tickets/taxy transfer... 10 Changing tickets... 11 User report... 14 Price politics- how to

More information

HealthEquity Employer Portal Guide HealthEquity All rights reserved.

HealthEquity Employer Portal Guide HealthEquity All rights reserved. HealthEquity Employer Portal Guide 2013-2015 HealthEquity All rights reserved. INTRODUCTION 09 ACCESSING PENDING PAYMENTS 01 LOGIN PROCESS 09 MODIFYING EMPLOYER INFORMATION 01 ADDING INSURANCE INFORMATION

More information

SERKO. Serko (ORIGIN)

SERKO. Serko (ORIGIN) SERKO This tutorial will be walking through how to make a booking in Serko that contains air, hotel and car hire. The first step is to log into the CTM Portal. Enter your Origin email address and password

More information

Super Schlumberger Scheduler

Super Schlumberger Scheduler Software Requirements Specification for Super Schlumberger Scheduler Page 1 Software Requirements Specification for Super Schlumberger Scheduler Version 0.2 Prepared by Design Team A Rice University COMP410/539

More information

Employer eservices for employers and brokers

Employer eservices for employers and brokers Employer eservices for employers and brokers UHCEW582792-000.indd 1 Employer eservices At-a-glance................... 3 Employer eservices...........................4 It s so easy................................4

More information

Italian Pilot Overview. December 2015

Italian Pilot Overview. December 2015 [ Italian Pilot Overview December 2015 [ Italian Pilot Overview Where: Pisa and Scandicci (Florence) Tuscany - Italy Partners: Letters of support: Modes involved: Key Technologies: Web, QR-code, SMS, credit

More information

Nationwide Paym. Terms and Conditions. How will Nationwide use your personal information? Terms and Conditions. Building Society

Nationwide Paym. Terms and Conditions. How will Nationwide use your personal information? Terms and Conditions. Building Society Building Society Nationwide Paym Terms and Conditions How will Nationwide use your personal information? In signing up and agreeing to these terms and conditions, you give your express consent to the use

More information

Online Store Application Form

Online Store Application Form Online Store Application Form You need to be a Lincoln Sentry Account holder to place orders using the online store website. Please provide your existing Lincoln Sentry account number. Submit the completed

More information

Employer Self Service Portal. Employer Self-Service Handbook AASIS Employer Users Version

Employer Self Service Portal. Employer Self-Service Handbook AASIS Employer Users Version Employer Self Service Portal Employer Self-Service Handbook AASIS Employer Users Version June 2017 Blank Page Contents OVERVIEW... 5 How to Use This Manual...7 ESS Roles and Tasks...8 Accessing COMPASS

More information

BillQuick-Sage 50 Integration Guide 2017

BillQuick-Sage 50 Integration Guide 2017 BillQuick-Sage 50 Integration Guide 2017 (866) 945-1595 www.bqe.com info@bqe.com CONTENTS INTRODUCTION 1 HOW TO USE THIS GUIDE 1 SOFTWARE EDITIONS SUPPORTED 1 HOW INTEGRATION WORKS 2 INTEGRATION RULES

More information

December How to Build Customer Loyalty with Data and Document Management

December How to Build Customer Loyalty with Data and Document Management December 2016 How to Build Customer Loyalty with Data and Document Management Executive Summary Executive Summary Today s digitally-driven business environment is transforming the way organizations communicate

More information

A You can use m-tickets on Arriva bus services throughout the UK, except for Park and Ride buses, and Transport for London services.

A You can use m-tickets on Arriva bus services throughout the UK, except for Park and Ride buses, and Transport for London services. Arriva m-ticket app FAQs v.1.26 4 January 2017 Q - Where can I use m-ticket? A You can use m-tickets on Arriva bus services throughout the UK, except for Park and Ride buses, and Transport for London services.

More information

Users Manual BLITZKASSE GastroExpress for Android

Users Manual BLITZKASSE GastroExpress for Android 2016 v2.1 Users Manual BLITZKASSE GastroExpress for Android Dear Customer, Thank you for placing your trust in us by purchasing our POS system. For any questions and suggestions concerning our POS system,

More information

Recognition of Prior Learning (RPL) Information Guide & Application

Recognition of Prior Learning (RPL) Information Guide & Application Recognition of Prior Learning (RPL) Information Guide & Application This information guide is designed to assist you through the recognition of prior learning and workplace assessment process. VERSION

More information

Verizon Enterprise Center CALNET 3 Invoices User Guide

Verizon Enterprise Center CALNET 3 Invoices User Guide Version 1.17 Last Updated: March 2017 2017 Verizon. All Rights Reserved. The Verizon name and logo and all other names, logos, and slogans identifying Verizon s products and services are trademarks and

More information

GENERAL TERMS AND CONDITIONS

GENERAL TERMS AND CONDITIONS GENERAL TERMS AND CONDITIONS I. Subject of the General Terms and Conditions MADWIRE, s. r. o., with registered office at Šoltésovej 14, 811 08 Bratislava, Company ID: 47 436 310, Tax Identification Number:

More information

Information Technology for Business

Information Technology for Business Information Technology for Business Business Essentials 9e Ebert/Griffin chapter thirteen After reading this chapter, you should be able to: 1. Discuss the impacts information technology has had on the

More information

Aconite Smart Solutions

Aconite Smart Solutions Aconite Smart Solutions PIN Management Services Contents PIN MANAGEMENT... 3 CURRENT CHALLENGES... 3 ACONITE PIN MANAGER SOLUTION... 4 OVERVIEW... 4 CENTRALISED PIN VAULT... 5 CUSTOMER PIN SELF SELECT

More information

Privacy Statement for ING customers. Americas - May 2018

Privacy Statement for ING customers. Americas - May 2018 Privacy Statement for ING customers Americas - May 2018 Contents 1. About this Privacy Statement 3 2. The types of data we collect about you 3 3. What we do with your personal data 3 4. Who we share your

More information

OceanPay. OceanPay Visa Prepaid Card. OceanPay Wire Services. Frequently Asked Questions

OceanPay. OceanPay Visa Prepaid Card. OceanPay Wire Services. Frequently Asked Questions OceanPay a direct deposit payroll card Your wages are deposited directly to your OceanPay Card, which can be used worldwide at over 20 million locations everywhere Visa debit cards are accepted. to pay

More information

What s New Guide. Sage Pastel Version 14

What s New Guide. Sage Pastel Version 14 What s New Guide Sage Pastel Version 14 2 Sage Pastel Version 14 Summary of Changes Base Welcome to Pastel Automatic Bank Feeds New Sage Intelligence version Create a cash book Supplier Payments via Sage

More information

EECS 581 Fall 2018 Team 9 Project Proposal Book Trader 22 October 2018 Siluo Feng Robert Goss

EECS 581 Fall 2018 Team 9 Project Proposal Book Trader 22 October 2018 Siluo Feng Robert Goss 1 EECS 581 Fall 2018 Team 9 Project Proposal Book Trader 22 October 2018 Siluo Feng s682f720@ku.edu Robert Goss rgoss1@ku.edu Qixiang Liu q709l816@ku.edu Jian Shen shenjian@ku.edu Yiju Yang y150y133@ku.edu

More information

Event Magnet. Event Magnet I N F O R M A T I O N T E C H N O L O G Y S O L U T I O N S F O R E V E N T A N D B O O K I N G M A N A G E M E N T.

Event Magnet. Event Magnet I N F O R M A T I O N T E C H N O L O G Y S O L U T I O N S F O R E V E N T A N D B O O K I N G M A N A G E M E N T. Event Magnet CRM I N F O R M A T I O N T E C H N O L O G Y S O L U T I O N S F O R E V E N T A N D B O O K I N G M A N A G E M E N T. Facility Management Booking Event Magnet Workflow Reports Invoicing

More information

MSI Cash Register Version 7.5

MSI Cash Register Version 7.5 MSI Cash Register Version 7.5 User s Guide Harris Local Government 1850 W. Winchester Road, Ste 209 Libertyville, IL 60048 Phone: (847) 362-2803 Fax: (847) 362-3347 Contents are the exclusive property

More information

Department of Management Services People First. People First! New Employee Orientation. Working together to put People First! Last Updated

Department of Management Services People First. People First! New Employee Orientation. Working together to put People First! Last Updated ! New Employee Orientation Last Updated 09-19-08 Working together to put! Table of Contents Click on the topic to jump to that section. Service Center EEO-Veterans-AAP How to Log in to Emergency Contact

More information

Information Technology

Information Technology Write your name here Surname Other names Edexcel Principal Learning entre Number andidate Number Information Technology Level 2 Unit 1: The Potential of Technology Tuesday 25 May 2010 fternoon Time: 1

More information

EPAF User Guide. Your guide for navigating the EPAF System

EPAF User Guide. Your guide for navigating the EPAF System EPAF User Guide Your guide for navigating the EPAF System This booklet outlines the use of Electronic Personnel Action Forms in the Banner Web for Employees. Office of Human Resources 12/7/2009 Frequently

More information

Then enter your PIN, also created during the enrollment process. After entering this data, select Submit.

Then enter your PIN, also created during the enrollment process. After entering this data, select Submit. The screens you will see in this guide were made for demo purposes, and may contain unrealistic payment or payee information. If you have questions not addressed in the tutorial, contact your Bill Pay

More information

Building Taxicab Business

Building Taxicab Business The transport sector has undergone a significant change with the advent of taxi apps with cost-effective solutions as GPS integration and automatic fare calculation... Custom-built Application for Building

More information

How Paratransit Software Improves Trip Booking

How Paratransit Software Improves Trip Booking How Paratransit Software Improves Trip Booking 1 The Secrets To Better Trip Booking Much of the information that we try to express in our day-to-day communication is with regards to the major differences

More information

Information Processes and Technology

Information Processes and Technology 2016 HIGHER SCHOOL CERTIFICATE EXAMINATION Information Processes and Technology Total marks 100 Section I Pages 11 General Instructions Reading time 5 minutes Working time hours Write using black pen Draw

More information

Employer eservices. for employers and brokers

Employer eservices. for employers and brokers Employer eservices for employers and brokers Contents Employer eservices at-a-glance.......... 2 Employer eservices................... 3 It s so easy.......................... 3 Speed and simplicity...................

More information

SMART er and Employee Self Service

SMART er and Employee Self Service SMART er and Employee Self Service Region V Spring Conference April 2014 Contents Logging into SMART er...3 SMART er Menu Items Defined...6 Announcements and District Forms...6 Pay and Personal Information...6

More information

Digital Splash. Keystone One. Problem 8. Manizette Bookkeeping. Algorithmic Problems and Simulations. 1 st Web- Based Edition

Digital Splash. Keystone One. Problem 8. Manizette Bookkeeping. Algorithmic Problems and Simulations. 1 st Web- Based Edition Algorithmic Problems and Simulations 1 st Web- Based Edition Keystone One Manizette Bookkeeping CCTE Model Curriculum Standard: A1.2 Examine, analyze, and categorize financial transactions; A2.3 - Understand

More information

Privacy Policy of Townsville Motor Boat & Yacht Club Limited - Liquor Licence Number 84145

Privacy Policy of Townsville Motor Boat & Yacht Club Limited - Liquor Licence Number 84145 Privacy Policy of Townsville Motor Boat & Yacht Club Limited - Liquor Licence Number 84145 Application The Privacy Policy applies to personal information collected by the club, as the club is an applicable

More information

Standard Grade Computing Studies. Commercial Data Processing Frank Frame

Standard Grade Computing Studies. Commercial Data Processing Frank Frame Standard Grade Computing Studies Commercial Data Processing Frank Frame Acknowledgement Thanks to Dorothy Tedman for her contribution to the review of the content. First published 2004 Learning and Teaching

More information

2517 Mark Scheme June 2005

2517 Mark Scheme June 2005 1 (a) Describe the use of three software applications the student might use as part of an integrated office system. e.g. A word processor (1) to write letters to students. (1) A spreadsheet (1) to keep

More information

Onli Onl ne R egi ne R egi trati a on, Accom on, Accom od m a od ti a on, Ma

Onli Onl ne R egi ne R egi trati a on, Accom on, Accom od m a od ti a on, Ma OnlineRegistration, Registration,Accommodation Management Online Online Registration withaccommodation, AccommodationManagement, Management, Abstract Management & Warehouse Technology Abstract Management

More information

Privacy Policy of Brothers Leagues Club Ipswich Inc. Community Club Licence No

Privacy Policy of Brothers Leagues Club Ipswich Inc. Community Club Licence No Privacy Policy of Brothers Leagues Club Ipswich Inc. Community Club Licence No. 80331. Application The Privacy Policy applies to personal information collected by the club, as the club is an applicable

More information

Internet Banking User Manual. User Manual. Raiffeisen Direkt, Internet Banking

Internet Banking User Manual.  User Manual. Raiffeisen Direkt, Internet Banking User Manual Raiffeisen Direkt, Internet Banking Content 1.0 Introduction to Raiffeisen DIREKT, Internet Banking 3 2.0 Login to Raiffeisen DIREKT, Internet Banking 4 3.0 Client Services 5 4.0 Raiffeisen

More information

Quick Guide: Passenger App

Quick Guide: Passenger App Quick Guide: Passenger App A. Create an account in the app B. How to make a booking C. Check your bookings A. Create an account in the app 1) 2) 3) 1. Press the menu in the top left corner and choose "Sign

More information

HOW WE PROCESS YOUR DATA. Date of Updating this Page: 20 July 2018.

HOW WE PROCESS YOUR DATA. Date of Updating this Page: 20 July 2018. Date of Updating this Page: 20 July 2018. HOW WE PROCESS YOUR DATA Please note that this document only details the personal data we process, the manner in which we process it, and our legal bases for processing.

More information

What s New in VAX VacationAccess? VAX VacationAccess June 23, 2011 Enhancements Reference Guide

What s New in VAX VacationAccess? VAX VacationAccess June 23, 2011 Enhancements Reference Guide ? VAX VacationAccess June 23, 2011 Enhancements Reference Guide Intentionally left blank September 2011 VAX VacationAccess Page 2 Version Date: June 23, 2011 Introduction At VAX VacationAccess, we continue

More information

Letter STUDENT NUMBER BUSINESS MANAGEMENT. Written examination. Monday 6 November 2017

Letter STUDENT NUMBER BUSINESS MANAGEMENT. Written examination. Monday 6 November 2017 Victorian Certificate of Education 2017 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER BUSINESS MANAGEMENT Written examination Monday 6 November 2017 Reading time: 3.00 pm to 3.15 pm

More information

HICAPS and Medicare Integration

HICAPS and Medicare Integration HICAPS and Medicare Integration Visual Outcomes now includes integration of HICAPS and Medicare payment methods for clients. Setting up your HICAPS Terminal Please call HICAPS and organise for a terminal

More information

iphone/ipad User Guide

iphone/ipad User Guide iphone/ipad User Guide Last Updated On: April 07, 2018 Copyright Notice Copyright 2018 ClickSoftware Technologies Ltd. All rights reserved. No part of this publication may be copied without the express

More information

1A Prepare Petty cash vouchers in accordance with workplace procedures

1A Prepare Petty cash vouchers in accordance with workplace procedures Record and balance petty cash transactions: Learning material This section addresses the following performance criteria: Petty cash vouchers are prepared in accordance with workplace procedures Before

More information

An Integrated Solution to Your Medical Billing & Collection Needs

An Integrated Solution to Your Medical Billing & Collection Needs An Integrated Solution to Your Medical Billing & Collection Needs 12708 Riata Vista Circle Suite A126 Austin, Texas 78727 Phone: (512) 637-2002 Fax: (512) 637-2007 www.ascend-health.com Second in importance

More information

Cyber Security Programme Outline for Apprenticeships at Level 4

Cyber Security Programme Outline for Apprenticeships at Level 4 Cyber Security Programme Outline for Apprenticeships at Level 4 2018 Who we are ELATT is one of the top Tech apprenticeship providers in Greater London, bringing the best quality training into existing

More information

HIMS Salient Features

HIMS Salient Features HIMS Salient Features Document details Title HIMS Salient Features document Version 1.0 Date of Submission 11th September, 2015 Softcopy HIMS Features_v1.0 Number of Pages 32 IMAGE COMPUTER SYSTEMS HIMS

More information

Employee Training Guide. Workday V 26.3

Employee Training Guide. Workday V 26.3 Employee Training Guide Workday V 26.3 Table of Contents Basic Workday Navigation Welcome to Workday 3 Accessing Workday. 4 Workday Icon Glossary. 5 Workday Terms Glossary. 7 Sign Out of Workday. 9 Navigate

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *46367366* COMPUTER STUDIES 040/0 Paper October/November 008 hours 30 minutes Candidates answer

More information

BURKINABESE SHIPPERS COUNCIL

BURKINABESE SHIPPERS COUNCIL BUREAU INTERNATIONAL MARITIME BURKINABESE SHIPPERS COUNCIL Electronic Cargo Tracking Note (ECTN) Forwarder Manual Table of Contents 1 THE PURPOSE AND ESTABLISHMENT OF AN ECTN... 3 2 ABBREVIATIONS... 5

More information

State Employees PERFORMANCE PLANNING AND REVIEW (PPR) Form INSTRUCTIONS SHEET

State Employees PERFORMANCE PLANNING AND REVIEW (PPR) Form INSTRUCTIONS SHEET State Employees PERFORMANCE PLANNING AND REVIEW (PPR) Form INSTRUCTIONS SHEET These instructions are provided for use as a checklist by Rating Supervisors. This page can be separated from the rest of the

More information

The Crown & Cushion Privacy Notice

The Crown & Cushion Privacy Notice & Cushion The Crown & Cushion Privacy Notice Last updated on May 22 nd 2018 Introduction This privacy notice covers the actions of The Crown & Cushion ( The Crown & Cushion or We ). The Crown & Cushion

More information

PROMO CODE CAMPAIGN Canberra Elite Taxis

PROMO CODE CAMPAIGN Canberra Elite Taxis Canberra Elite Fleet Announcement - 6 November 2017 Drivers you MUST be registered to get promotional campaign work allocated to your PIN. See the MDT log in notice (below) which will be live in the car

More information

QuickBooks Simple Start offers the most basic feature set and the simplest navigation and terminology. Simple Start is designed for businesses that:

QuickBooks Simple Start offers the most basic feature set and the simplest navigation and terminology. Simple Start is designed for businesses that: The QuickBooks 2008 Product Line The non-industry specific QuickBooks product line includes three separate software product editions: QuickBooks Simple Start, QuickBooks Pro, and QuickBooks Premier. QuickBooks

More information

Table of Contents. Introduction... p.1. Why do candidates have to take an examination?. p.1. How was the examination developed?. p.

Table of Contents. Introduction... p.1. Why do candidates have to take an examination?. p.1. How was the examination developed?. p. Table of Contents Introduction... p.1 Why do candidates have to take an examination?. p.1 How was the examination developed?. p.1 What will the examination look like and how will it be scored? p.2 Are

More information

Metro s Guide to Accessibility and Independence

Metro s Guide to Accessibility and Independence Metro s Guide to Accessibility and Independence 1 We Care All Metro services MetroBus, MetroLink and Metro Call-A-Ride are accessible. At Metro, we re committed to providing high quality, accessible travel

More information

Entrepreneur. Getting Started

Entrepreneur. Getting Started Entrepreneur Getting Started G u i d e Entrepreneur Getting Started 1 Setting Up Your Company 5 Setting Up Customers & Suppliers 14 Setting Up Items 17 Essential Tasks 18 Reporting 23 System Administration

More information