THE UNIVERSITY OF THE WEST INDIES. Answer ALL questions. Marks for each question are given in the margin. This exam is worth 60 marks

Size: px
Start display at page:

Download "THE UNIVERSITY OF THE WEST INDIES. Answer ALL questions. Marks for each question are given in the margin. This exam is worth 60 marks"

Transcription

1 THE UNIVERSITY OF THE WEST INDIES EXAMINATIONS OF MAY 2004 Code and Name of Course: EE29B Introduction to Software Engineering Paper: Date and Time: Duration: Three Hours INSTRUCTIONS TO CANDIDATES: This paper has 5 pages and 4 questions Answer ALL questions. Marks for each question are given in the margin. This exam is worth 60 marks Q1. (a) Describe the role and relationship between the following actors in software development. 5 marks Customer User Developer (b) The following list of the nine phases in software development is given in random order. Arrange them in the correct order. System design Integration testing Program design Maintenance System testing Requirements analysis Implementation Unit testing System delivery (c) Using the phases of software development given in the previous question, associate the phases with the following actors. Note that an actor may be associated with more than one phase. Analyst Designer Programmer Tester Trainer c The University of the West Indies 5 marks

2 page 2. Question 1 is worth 1s Q2. (a) Explain, with the help of a diagram, the prototyping model as used in software development. (b) List any instances when it is inappropriate to use the prototyping development model. Explain your answer. Question 2 is worth 8 marks Q3. A customer has asked your development team to develop an Point of Sale (POS) for managing their grocery. The cashier records each item purchased by entering the item code and quantity. The purchase price is then computed and the payment processed by the POS. The POS has to also interact with other systems in order to perform its job. For example, to accept credit card payments, the POS must interface with the credit card company s system. The next step is to create a conceptual and technical design. In the questions that follow, select the most appropriate answer. (a) Select the most appropriate answer. The conceptual design is felt to be of value because it will allow the customer owner to check... a What part of the system will be responsible for tracking the size of the inventory, and how it communicates with other parts of the system. b How the price of a new item is input to the system. c What the screens that the user sees will look like, and what options users will have. (b) Which of the following are valid rationales for creating a separate technical design? a The conceptual design will be useful for communicating with the customer but not very useful as a basis for implementing the system. b The technical design should contain more information about the scanners and their interfaces to the software. c The technical design should contain more detail about the likely data structures that will be used. (c) The first draft of the conceptual design has the following characteristics. appropriate? Which are NOT a It is written in a formal design notation, so that functionality can be specified as precisely as possible. b It makes multiple references to the requirements document, in order to provide the reason for including certain system components. c It uses some of the built-in features of C++, in order to better make the argument for choosing this language for use in the implementation.

3 page 3. (d) The development team has decided to divide the system into three subsystems: The inventory subsystem, which takes care of maintaining the number of items in the store. The cashier subsystem, that interacts with the cashier to accept payments from customers. A logging subsystem, that records all transaction for later auditing. This choice of subsystems was chosen to minimize the communication between subsystems. Both the inventory subsystem and the logging subsystem will communicate with the cashier subsystem but not with each other. Which of the following best describes the design at this level of abstraction? Explain your choice of answer. i. High coupling, high cohesion ii. High coupling, low cohesion iii. Low coupling, high cohesion iv. Low coupling, low cohesion (e) In the initial design, the cashier subsystem is assumed to handle all of the details of the purchase, and send only a record containing the number of items purchased, purchase price, and time of purchase to the logging subsystem. The relationship between the cashier subsystem and the logging subsystem is best described as which of the following? Explain your choice of answer. i. Content coupled ii. Control coupled iii. Stamp coupled iv. Logically cohesive v. Temporally cohesive vi. Functionally cohesive Question 3 is worth 1s Q4. (a) When implementation of a module is complete, it undergoes code review. In the following program fragments from an application, identify violations (if any) of good programming style that should be caught during review. Briefly explain your choice of answer. Use the following choices in your response: Generality Efficiency Formatting Documentation No violations i. void PrintMovieList(MovieList *movies) { MovieList *lp = movies; while ( lp ) { cout << *lp << "\n"; lp = movies->next; 2 marks

4 page 4. ii. double ValidateParts (PartsList &bundle, PartsList &parts) { /* Validate and calculate the total value of the parts in the bundle. If a part in the bundle does not exist in the parts list, return -1. If all parts in the bundle exist in the parts list, return the total value for all parts in the bundle. */ 2 marks double total_value = 0; for (PartsList::size_type i = 0; i!= bundle.size(); ++i) { if (!loans.exists(bundle[i])) return -1.0; for (PartsList::size_type i; i!= bundle.size(); ++i) total_value += bundle[i].getvalue(); return total_value; 2 marks iii. /* if the loan amount is greater than 275, it is a jumbo loan */ if ( l->getamount() > 275 ) { type = JUMBO; if (l->getprofit() > 10) /* if the profit is greater than 10, add the loan to the bundle */ bundle->addloan(l); else /* a regular loan */ type = REGULAR; (b) In a function of a module in a program, a variable does not get initialized properly. Which type of testing would be most likely expose this defect? Explain your answer. a unit testing b integration testing c acceptance testing d installation testing e performance testing (c) A function X in component A requires a pointer to an integer to be passed as an argument, but a call to the function X in component B passes the value of an integer instead. Which type of testing would most likely expose this defect? Explain your answer. a unit testing of component A b integration testing of components A and B d installation testing e acceptance testing (d) The cashier subsystem is supposed to allow the user to choose whether or not a VAT receipt is printed, but the print function has not been implemented. Which type of testing would most likely expose this defect? Explain your answer.

5 page 5. a unit testing b integration testing e function testing (e) A configuration file used by the logging subsystem is not placed in the correct directory in the customer s environment. Which type of testing would most likely expose this defect? Explain your answer. a integration testing b installation testing e function testing (f) The customer is unhappy with the number of screens that must be traversed before getting to the items list screen, a screen accessed frequently when using the system. Which type of testing would most likely expose this defect? Explain your answer. a integration testing b installation testing (g) A function with an input domain of the set of all real numbers is tested with sets of positive integers, negative integers and 0. In all of the tests, the function performs properly. Is is safe to assume that the function has been tested thoroughly and will perform properly? Explain your answer. Question 4 is worth 30 marks END OF QUESTION PAPER

Microsoft Retail Management System 1.3 Refreshes, Service Packs, and Hotfixes

Microsoft Retail Management System 1.3 Refreshes, Service Packs, and Hotfixes Page 1 of 5 Microsoft Retail Management System 1.3 Refreshes, Service Packs, and Hotfixes 1.3 and Headquarters 1.3 Last Modified 5/4/2007 Posted 11/3/2006 Article ID Available Microsoft Retail Management

More information

Final Exam CISC 475/675 Fall 2004

Final Exam CISC 475/675 Fall 2004 True or False [2 pts each]: Final Exam CISC 475/675 Fall 2004 1. (True/False) All software development processes contain at least separate planning, testing, and documentation phases. 2. (True/False) The

More information

Invoicing brings it all together

Invoicing brings it all together Invoicing brings it all together Chad Klein TECHNICAL LEVEL: EASY INTERMEDIATE ADVANCED What we ll cover Using keyboard shortcuts Displaying a quantity discount message Opening the cash drawer Printing

More information

Object Analysis & Design in the textbook. Introduction to GRASP: Assigning Responsibilities to Objects. Responsibility-Driven Design

Object Analysis & Design in the textbook. Introduction to GRASP: Assigning Responsibilities to Objects. Responsibility-Driven Design Object Analysis & Design in the textbook Chapter 2 Object Oriented Design Process Introduction to GRASP: Assigning Responsibilities to Objects CS 4354 Summer II 2016 Jill Seaman Much of the material in

More information

Domain Modeling. CSSE 574: Week 1, Part 3. Steve Chenoweth Phone: Office (812) Cell (937)

Domain Modeling. CSSE 574: Week 1, Part 3. Steve Chenoweth Phone: Office (812) Cell (937) Domain Modeling CSSE 574: Week 1, Part 3 Steve Chenoweth Phone: Office (812) 877-8974 Cell (937) 657-3885 Email: chenowet@rose-hulman.edu s g Where we re going Sample UP Artifact Relationships date...

More information

Aon Supplier Enablement Coupa Supplier Training Materials

Aon Supplier Enablement Coupa Supplier Training Materials Aon Supplier Enablement Coupa Supplier Training Materials June, 2017 Table of contents Overview: What is Coupa? Benefits for suppliers Invoicing options PO Flip CSP How to connect to CSP? Profile update

More information

Premium POS Pizza Order Entry Module. Introduction and Tutorial

Premium POS Pizza Order Entry Module. Introduction and Tutorial Premium POS Pizza Order Entry Module Introduction and Tutorial Overview The premium POS Pizza module is a replacement for the standard order-entry module. The standard module will still continue to be

More information

Introduction to Software Engineering (2+1 SWS) Winter Term 2009 / 2010 Dr. Michael Eichberg Vertretungsprofessur Software Engineering Department of

Introduction to Software Engineering (2+1 SWS) Winter Term 2009 / 2010 Dr. Michael Eichberg Vertretungsprofessur Software Engineering Department of Introduction to Software Engineering (2+1 SWS) Winter Term 2009 / 2010 Dr. Michael Eichberg Vertretungsprofessur Software Engineering Department of Computer Science Technische Universität Darmstadt What

More information

CSCI 102 Fall 2010 Exam #1

CSCI 102 Fall 2010 Exam #1 Name: USC Username: CSCI 102 Fall 2010 Exam #1 Problems Problem #1 (14 points) Problem #2 (15 points) Problem #3 (20 points) Problem #4 (16 points) Problem #5 (35 points) Total (100 points) Problem 1 Short

More information

Quick Reference Card Receiving in Ariba

Quick Reference Card Receiving in Ariba This QRC provides the basic steps to receive, reverse, return, reject and close a Purchase Order (PO) in Ariba during the receiving process. Receiving is required on PO s >$250. PO s

More information

Roll No. :. Invigilator's Signature :.. CS/MCA/SEM-4/MCA-401/ SOFTWARE ENGINEERING & TQM. Time Allotted : 3 Hours Full Marks : 70

Roll No. :. Invigilator's Signature :.. CS/MCA/SEM-4/MCA-401/ SOFTWARE ENGINEERING & TQM. Time Allotted : 3 Hours Full Marks : 70 Name : Roll No. :. Invigilator's Signature :.. CS/MCA/SEM-4/MCA-401/2012 2012 SOFTWARE ENGINEERING & TQM Time Allotted : 3 Hours Full Marks : 70 The figures in the margin indicate full marks. Candidates

More information

ASiM PHONE/TABLET MANUAL

ASiM PHONE/TABLET MANUAL ASiM PHONE/TABLET MANUAL O l i v i n e T e c h n o l o g y w w w. o l i v i n e t e c h. c o m + 2 5 4-20- 2 6 6-7 6 0 3 TABLE OF CONTENTS 1. INTRODUCTION... 2 2. PRODUCT DESCRIPTION... 2 3. INSTALLING

More information

Principles of Software Construction: Objects, Design, and Concurrency

Principles of Software Construction: Objects, Design, and Concurrency Principles of Software Construction: Objects, Design, and Concurrency Designing (sub-) systems A formal design process Charlie Garrod Michael Hilton School of Computer Science 1 Administrivia Optional

More information

Quick Start Guide. Microinvest Warehouse Pro

Quick Start Guide. Microinvest Warehouse Pro Quick Start Guide Warehouse Pro 2012 I. Application installation During the initial installation of the product, the application gets to know the computer system, on which it shall work and configures

More information

Domain Modeling- 2. Generalization

Domain Modeling- 2. Generalization Generalization Domain Modeling- 2 Conceptual superclasses and subclasses When to create a subclass? A superclass? Abstract classes Modeling state changes Operation contracts Attaching pre- /post-conditions

More information

System and Software Architecture Description (SSAD)

System and Software Architecture Description (SSAD) System and Software Architecture Description (SSAD) REAL ESTATE INVESTMENT AND REVIEW TOOL TEAM 02 Venkata Sravanti Malapaka (Project Manager / Software Architect) Yuxuan Chen (Prototyper / Developer/Trainer)

More information

Introduction to Software Engineering (2+1 SWS) Winter Term 2009 / 2010 Dr. Michael Eichberg Vertretungsprofessur Software Engineering Department of

Introduction to Software Engineering (2+1 SWS) Winter Term 2009 / 2010 Dr. Michael Eichberg Vertretungsprofessur Software Engineering Department of Introduction to Software Engineering (2+1 SWS) Winter Term 2009 / 2010 Dr. Michael Eichberg Vertretungsprofessur Software Engineering Department of Computer Science Technische Universität Darmstadt Dr.

More information

CS 161 Exam II Winter 2018 FORM 1

CS 161 Exam II Winter 2018 FORM 1 CS 161 Exam II Winter 2018 FORM 1 Please put your name and form number on the scantron. True (A)/False (B) (28 pts, 2 pts each) 1. The following array declaration is legal double scores[]={0.1,0.2,0.3;

More information

Lecture 13 Introduction to Software Architecture

Lecture 13 Introduction to Software Architecture Lecture 13 Introduction to Software Architecture Software Systems Design and Implementation ITCS/ITIS 6112/8112 Fall 2008 Dr. Jamie Payton Department of Computer Science University of North Carolina at

More information

Domain Modeling: Associations and Attributes

Domain Modeling: Associations and Attributes Domain Modeling: Associations and Attributes CSSE 574: Week 2, Part Steve Chenoweth Phone: Office (82) 877-8974 Cell (937) 657-3885 Email: chenowet@rose-hulman.edu Q Description Classes A description class

More information

AFTER HOURS EMERGENCY POS SUPPORT ext 126 Press 4 when prompted

AFTER HOURS EMERGENCY POS SUPPORT ext 126 Press 4 when prompted AFTER HOURS EMERGENCY POS SUPPORT 519-442-3153 ext 126 Press 4 when prompted TEC REGISTER POS Operations Manual A complete guide to the operations of the point-of-sale (POS) unit. Calendar Club of Canada

More information

User's Guide. Alpha Five Accounting. Accounting Made Easy. Version 3.0. Copyright BetaSoft LLC - All Rights Reserved

User's Guide. Alpha Five Accounting. Accounting Made Easy. Version 3.0. Copyright BetaSoft LLC - All Rights Reserved User's Guide Alpha Five Accounting Copyright 1995-2002 BetaSoft LLC - All Rights Reserved Accounting Made Easy Version 3.0 Alpha Five is a trademark of Alpha Software Corp. i ii Table of Contents INTRODUCTION...1

More information

PUBLIC. How to Manage Batch Numbers. All Countries. Solutions from SAP. SAP Business One 2007 A and 2007 B. August English

PUBLIC. How to Manage Batch Numbers. All Countries. Solutions from SAP. SAP Business One 2007 A and 2007 B. August English PUBLIC How to Manage Batch Numbers All Countries Solutions from SAP SAP Business One 2007 A and 2007 B August 2008 English Contents Purpose... 3 Defining General Settings... 4 Procedure... 4 Setting Authorizations...

More information

Configuration Fixes for Encryption

Configuration Fixes for Encryption Oracle Retail Point-of-Sale Release Notes Release 7.2.2 April 2007 This document lists the fixed defects included in Release 7.2.2 of Oracle Retail Point-of-Sale. Before installing this release, confirm

More information

How to Create an Architecture Overview

How to Create an Architecture Overview by Gerrit Muller University of South-Eastern Norway-NISE e-mail: gaudisite@gmail.com www.gaudisite.nl Abstract A short specific overview of an architecture is a powerful means during product creation.

More information

IT 1003 Introduction to Programming (New)

IT 1003 Introduction to Programming (New) [All Rights Reserved] SLIATE SRI LANKA INSTITUTE OF ADVANCED TECHNOLOGICAL EDUCATION (Established in the Ministry of Higher Education, vide in Act No. 29 of 1995) Instructions for Candidates: Answer five

More information

System Sequence Diagrams. Based on Craig Larman, Chapter 10 and Anuradha Dharani s notes

System Sequence Diagrams. Based on Craig Larman, Chapter 10 and Anuradha Dharani s notes System Sequence Diagrams Based on Craig Larman, Chapter 10 and Anuradha Dharani s notes Dynamic behaviors Class diagrams represent static relationships. Why? What about modeling dynamic behavior? Interaction

More information

TO DEVELOP A PROBLEM STATEMENT

TO DEVELOP A PROBLEM STATEMENT DHANALAKSHMI COLLEGE OF ENGINEERING DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING CS6511 CASE TOOLS LAB Expt. No. 1 TO DEVELOP A PROBLEM STATEMENT 1. Passport Automation System 1. Problems Analysis and

More information

Contents. Lehigh Unimarket Receiving

Contents. Lehigh Unimarket Receiving Contents Logging In... 2 Receiving... 2 a. Action... 4 i. Receive... 4 ii. Return -... 4 iii. Manually Close... 4 b. Receiving Date... 4 c. Note... 4 Over Receiving... 4 Undo Receiving... 5 Returns...

More information

CS 1063 Introduction to Computer Programming Midterm Exam 2 Section 1 Sample Exam

CS 1063 Introduction to Computer Programming Midterm Exam 2 Section 1 Sample Exam Seat Number Name CS 1063 Introduction to Computer Programming Midterm Exam 2 Section 1 Sample Exam This is a closed book exam. Answer all of the questions on the question paper in the space provided. If

More information

New West Technologies Point Asset and Inventory /5/2014 Company Name Solution Name w/ Solution Version

New West Technologies Point Asset and Inventory /5/2014 Company Name Solution Name w/ Solution Version Point Asset & Inventory Demonstration Instructions New West Technologies Point Asset and Inventory 0.9.49.1 3/5/2014 Company Name Solution Name w/ Solution Version 1. Demonstration Instructions This will

More information

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification.

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification. Appendix 1 Microsoft Office Specialist: Access Certification Introduction The candidates for Microsoft Office Specialist certification should have core-level knowledge of Microsoft Office Access 2010.

More information

Duration: 6 Months. Dreamweaver JavaScript Jquery Ajax

Duration: 6 Months. Dreamweaver JavaScript Jquery Ajax Computer Fundamental Operating System Microsoft Windows Linux Microsoft Office Package Document Package Spreadsheet Package Presentation Package Database Package Outlook Internet DTP Package PageMaker

More information

Object-Oriented Functional Analysis and Design for POS Example

Object-Oriented Functional Analysis and Design for POS Example Object-Oriented Functional Analysis and Design for POS Example Focus in Analysis, Design, Implementation Analysis Investigation to the problem in problem domain Design Logical solution(model) for implementation

More information

Users Guide for InstantAccept POS

Users Guide for InstantAccept POS Users Guide for InstantAccept POS How to make a sale: Go in to Make a Sale on your QuickBooks POS. Select your item. Choose what type of payment you are taking. If you are using a card reader, click swipe

More information

Making EXCEL Work for YOU!

Making EXCEL Work for YOU! Tracking and analyzing numerical data is a large component of the daily activity in today s workplace. Microsoft Excel 2003 is a popular choice among individuals and companies for organizing, analyzing,

More information

CSCS 261 Programming Concepts Exam 2 Fall EXAM 2 VERSION 1 Fall Points. Absolutely no electronic devices may be used during this exam.

CSCS 261 Programming Concepts Exam 2 Fall EXAM 2 VERSION 1 Fall Points. Absolutely no electronic devices may be used during this exam. Name: Print legibly! Section: COMPUTER SCIENCE 261 PROGRAMMING CONCEPTS EXAM 2 VERSION 1 Fall 2014 150 Points Absolutely no electronic devices may be used during this exam. 1. No cell phones, computers,

More information

Vendor: Oracle. Exam Code: 1z Exam Name: Siebel Customer Relationship Management (CRM) 8 Business Analyst. Version: Demo

Vendor: Oracle. Exam Code: 1z Exam Name: Siebel Customer Relationship Management (CRM) 8 Business Analyst. Version: Demo Vendor: Oracle Exam Code: 1z0-219 Exam Name: Siebel Customer Relationship Management (CRM) 8 Business Analyst Version: Demo QUESTION NO: 1 When does data get written to the Siebel database during Task

More information

FAQs. Frequently Asked Questions

FAQs. Frequently Asked Questions FAQs Frequently Asked Questions 1 1. How do I order a new phone? 2. How do I upgrade my existing phone? 3. How do I order a SIM card? 4. How do I order an accessory? 5. How do I check the status of my

More information

BAA Oracle EBS R12.1 isupplier Portal Created on 11/26/2012 3:18:00 PM

BAA Oracle EBS R12.1 isupplier Portal Created on 11/26/2012 3:18:00 PM Created on 11/26/2012 3:18:00 PM COPYRIGHT & TRADEMARKS Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates.

More information

Supplier Reference Guide

Supplier Reference Guide Supplier Reference Guide Coupa Supplier Portal (CSP) Page 1 Content Introduction and Benefits Register for the CSP My Account Management Notifications Users Viewing Purchase Orders and Invoices Frequently

More information

ALPHA POS S ERVICES. Hospitality POS Quick Reference Guide

ALPHA POS S ERVICES. Hospitality POS Quick Reference Guide ALPHA POS S ERVICES Hospitality POS Quick Reference Guide Table of Contents Opening Day Procedures...................... Page 3 Staff Operations........................... Page 3 Settling Transactions.........................

More information

Event Night Card Reader

Event Night Card Reader Event Night Card Reader There are three possible scenarios at event check-in: 1. Pre-registered Guests: Bidders who have registered for the event in advance, including on-line registrations. 2. New Bidders

More information

2.0 EXECUTIVE SUMMARY

2.0 EXECUTIVE SUMMARY 2.0 EXECUTIVE SUMMARY 2.1 Basis of Engagement of the Special Audit Bursa Malaysia Berhad has proposed the Audit Committee of Focus Dynamics Technologies Berhad to engage an independent auditor to perform

More information

Invoice 13 Pro Outline

Invoice 13 Pro Outline Invoice 13 Pro Outline Invoice 13 Pro is a feature rich productivity tool for the small business or company from 1 to 30 users. It is notjust an Invoicing software. It is in fact an Invoicing, Accounts

More information

Domain Model and Domain Modeling

Domain Model and Domain Modeling Dr. Michael Eichberg Software Engineering Department of Computer Science Technische Universität Darmstadt Software Engineering Domain Model and Domain Modeling Resources: Craig Larman; Applying UML and

More information

Reviewing all Topics this term

Reviewing all Topics this term Today in CS161 Prepare for the Final Reviewing all Topics this term Variables If Statements Loops (do while, while, for) Functions (pass by value, pass by reference) Arrays (specifically arrays of characters)

More information

CREATING A SALES PROPOSAL. Proposal Setup. Tabbed Job Summary Form

CREATING A SALES PROPOSAL. Proposal Setup. Tabbed Job Summary Form CREATING A SALES PROPOSAL A proposal in SuccessWare 21 is a feature allowing you to group up to 5 different sales quotes into a single document that can be presented to the customer. For example, if you

More information

COS 126 General Computer Science Spring Written Exam 1

COS 126 General Computer Science Spring Written Exam 1 COS 126 General Computer Science Spring 2017 Written Exam 1 This exam has 9 questions (including question 0) worth a total of 70 points. You have 50 minutes. Write all answers inside the designated spaces.

More information

Table Service Daily Steps for Cashiers

Table Service Daily Steps for Cashiers Table Service Daily Steps for Cashiers Process Sales Tasks This section provides information on processing sales from the Process Sales screen. Tasks Select menu items Steps Option 1: (single course meal)

More information

Set 2 MCQ

Set 2 MCQ 1. ETCS means A) Enable Tax Collected at Source B) Electronic Tax Collected at Source C) Electric Tax Collected at Source D) None of these 2. To get Payroll Reports choose A) Gateway of Tally > Display

More information

The University of Nottingham

The University of Nottingham The University of Nottingham SCHOOL OF COMPUTER SCIENCE A LEVEL 2 MODULE, AUTUMN SEMESTER 2008 2009 C/C++ for Java Programmers Time allowed TWO hours Candidates may complete the front cover of their answer

More information

USER GUIDE FOR SUPPLIERS. OpusCapita Business Network

USER GUIDE FOR SUPPLIERS. OpusCapita Business Network USER GUIDE FOR SUPPLIERS OpusCapita Business Network Contents 1. Introduction... 3 2. Finalizing registration and changing your password... 4 2.1 Finalize your registration... 4 2.2 Change your forgotten

More information

THE BCS PROFESSIONAL EXAMINATION BCS Level 5 Diploma in IT September 2017 EXAMINERS REPORT

THE BCS PROFESSIONAL EXAMINATION BCS Level 5 Diploma in IT September 2017 EXAMINERS REPORT THE BCS PROFESSIONAL EXAMINATION BCS Level 5 Diploma in IT September 2017 EXAMINERS REPORT Object Oriented Programming Question A1 a) Explain the terms abstract data type and encapsulation and describe

More information

CIS 341 Final Examination 3 May 2011

CIS 341 Final Examination 3 May 2011 CIS 341 Final Examination 3 May 2011 1 /16 2 /20 3 /40 4 /28 5 /16 Total /120 Do not begin the exam until you are told to do so. You have 120 minutes to complete the exam. There are 12 pages in this exam.

More information

BEng (Hons) Electronic Engineering. Resit Examinations for / Semester 1

BEng (Hons) Electronic Engineering. Resit Examinations for / Semester 1 BEng (Hons) Electronic Engineering Cohort: BEE/10B/FT Resit Examinations for 2016-2017 / Semester 1 MODULE: Programming for Engineers MODULE CODE: PROG1114 Duration: 3 Hours Instructions to Candidates:

More information

download instant at The Relational Data Model

download instant at  The Relational Data Model 3 The Relational Data Model EXERCISES 3.1 Define data atomicity as it relates to the definition of relational databases. Contrast data atomicity with transaction atomicity as used in a transaction processing

More information

I BCS-031 BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination. June, 2015 BCS-031 : PROGRAMMING IN C ++

I BCS-031 BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination. June, 2015 BCS-031 : PROGRAMMING IN C ++ No. of Printed Pages : 3 I BCS-031 BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination 05723. June, 2015 BCS-031 : PROGRAMMING IN C ++ Time : 3 hours Maximum Marks : 100 (Weightage 75%)

More information

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS RESOLV EDI CONTROL User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS Copyright 2011-2016 by Achieve IT Solutions These materials are subject to change without notice. These materials are

More information

BEng (Hons) Electronic Engineering. BEng (Hons) Telecommunications. Examinations for / Semester 2

BEng (Hons) Electronic Engineering. BEng (Hons) Telecommunications. Examinations for / Semester 2 BEng (Hons) Electronic Engineering BEng (Hons) Telecommunications Cohort: BEE/16B/FT & BTEL/16B/FT Examinations for 2016-2017 / Semester 2 Resit Examinations for BTEL/15B/FT, BEE/13B/FT, BTEL/14B/FT &

More information

On to Iteration 3, and Activity Diagrams CSSE 574: Session 6, Part 1

On to Iteration 3, and Activity Diagrams CSSE 574: Session 6, Part 1 On to Iteration 3, and Activity Diagrams CSSE 574: Session 6, Part 1 Steve Chenoweth Phone: Office (812) 877-8974 Cell (937) 657-3885 Email: chenowet@rose-hulman.edu On to Iteration 3: NextGen POS Failover

More information

Supplier Invoicing. Create a PO Backed Credit Note via CSN

Supplier Invoicing. Create a PO Backed Credit Note via CSN Supplier Invoicing There are two methods for creating a credit note via the Coupa Supplier Network (CSN) and from the email which originally conveyed the Purchase Order. Both methods are outlined below.

More information

Intuit-HP Retail Solution

Intuit-HP Retail Solution Intuit-HP Retail Solution Intuit and HP have teamed up to bring you a Solution that is designed specifically for single or multi-store retailers. More sophisticated than a cash register and more durable

More information

Tables Screen. Table State Buttons: Changes the state of the selected table to one of the following: Table Open. Table Reserved Needs Bussing

Tables Screen. Table State Buttons: Changes the state of the selected table to one of the following: Table Open. Table Reserved Needs Bussing Task 1: Log on to POS 1. Select the point of service icon. 2. Choose your Name. 3. Select Keyboard on the Login screen. 4. Enter your Password. 5. Select Enter on the Keyboard screen. Task 2: Open a Serving

More information

Automated Acceptance testing by Developers & Automated Functional Testing by Testers

Automated Acceptance testing by Developers & Automated Functional Testing by Testers Automated Acceptance testing by Developers & Automated Functional Testing by Testers Gowrishankar Sundararajan QA Manager Tata Consultancy Services, Canada Executive Summary Overview on Traditional Agile

More information

Database Development (H4)

Database Development (H4) IMIS HIGHER DIPLOMA QUALIFICATIONS Database Development (H4) Thursday 30 th November 2017 10:00hrs 13:00hrs DURATION: 3 HOURS Candidates should answer ALL EIGHT questions in Part A and THREE of the FIVE

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Programme Overview What are Moody's Analytics Certifications? Moody s Analytics certification programmes are globally recognised and developed for India. The certifications leverage

More information

CTIS 359 Principles of Software Engineering SOFTWARE DESIGN OO(A)D

CTIS 359 Principles of Software Engineering SOFTWARE DESIGN OO(A)D CTIS 359 Principles of Software Engineering SOFTWARE DESIGN OO(A)D Today s Objectives To explain the basic concepts of OO(A)D To describe some best practices regarding to OO(A)D What is NOT UML? The UML

More information

Microsoft Exam

Microsoft Exam Volume: 59 Questions Question No: 1 You create a table named Products by running the following Transact-SQL statement: You have the following stored procedure: You need to modify the stored procedure to

More information

INVENTORY TRACKING (IT) MASTER MANUAL

INVENTORY TRACKING (IT) MASTER MANUAL Page 1 of 43 P O S i T - Integrated POS System - With Inventory Tracking - For Networked Multi Retail Stores - IT Master Version. 2.0 INVENTORY TRACKING (IT) MASTER MANUAL Contents Page Page 2 of 43 1.

More information

PayFirst Salon User Guide:

PayFirst Salon User Guide: PayFirst Salon User Guide: This user guide will outline basic system functionality such as: Logging into System Back Office Setup Setting up Employees Menu Setup Retail Product Setup Creating Package Setup

More information

CSCS 261 Programming Concepts Exam 2 Fall EXAM 2 VERSION 1 Fall Points. Absolutely no electronic devices may be used during this exam.

CSCS 261 Programming Concepts Exam 2 Fall EXAM 2 VERSION 1 Fall Points. Absolutely no electronic devices may be used during this exam. Name: Print legibly! Section: COMPUTER SCIENCE 261 PROGRAMMING CONCEPTS EXAM 2 VERSION 1 Fall 2014 150 Points Absolutely no electronic devices may be used during this exam. 1. No cell phones, computers,

More information

IBM WebSphere Information Analyzer v8.0 Exam.

IBM WebSphere Information Analyzer v8.0 Exam. IBM 000-417 IBM WebSphere Information Analyzer v8.0 Exam TYPE: DEMO http://www.examskey.com/000-417.html Examskey IBM 000-417 exam demo product is here for you to test the quality of the product. This

More information

FORM 2 (Please put your name and form # on the scantron!!!!)

FORM 2 (Please put your name and form # on the scantron!!!!) CS 161 Exam 2: FORM 2 (Please put your name and form # on the scantron!!!!) True (A)/False(B) (2 pts each): 1. Recursive algorithms tend to be less efficient than iterative algorithms. 2. A recursive function

More information

Course Outline LEAN Manufacturing in Microsoft Dynamics AX TO TRAIN

Course Outline LEAN Manufacturing in Microsoft Dynamics AX TO TRAIN 80310 - LEAN Manufacturing in Microsoft Dynamics AX 2012 General Description This course provides students with a detailed overview of the Lean Manufacturing module in Microsoft It provides a description

More information

System Analysis & design

System Analysis & design Assiut University Faculty of Computers and Information System Analysis & design Year 2 Academic Year 2014/ 2015 Term (2) 5 A PICTURE IS WORTH A 1,000 WORDS A process model is a graphical way of representing

More information

Ariba Manual INVOICING PO

Ariba Manual INVOICING PO Ariba Manual INVOICING PO For Suppliers Date 6 september 2013 Document name Ariba Manual - Invoicing PO (SUPPLIER).docx Version Version 2.0 2013 N.V. Nederlandse Gasunie, Groningen Page 1 of 23 Contents

More information

CSSE 374: UML Activity Diagrams. Shawn Bohner Office: Moench Room F212 Phone: (812)

CSSE 374: UML Activity Diagrams. Shawn Bohner Office: Moench Room F212 Phone: (812) CSSE 374: UML Activity Diagrams Shawn Bohner Office: Moench Room F212 Phone: (812) 877-8685 Email: bohner@rose-hulman.edu Learning Outcomes: Patterns, Tradeoffs Identify criteria for the design of a software

More information

NCLTEC Accounting User Manual

NCLTEC Accounting User Manual NCLTEC Accounting User Manual Latest Update: Feb 6, 0 For information about customer support, please visit our homepage at http://www.ncltec.com on the World Wide Web. Copyright 05 NCL Energy Technology

More information

UNIT II Requirements Analysis and Specification & Software Design

UNIT II Requirements Analysis and Specification & Software Design UNIT II Requirements Analysis and Specification & Software Design Requirements Analysis and Specification Many projects fail: because they start implementing the system: without determining whether they

More information

STX & ios Devices. Setting up and using STX iphone, ipad, ipod touch

STX & ios Devices. Setting up and using STX iphone, ipad, ipod touch STX & ios Devices Setting up and using STX iphone, ipad, ipod touch STX for ios provides more flexibility and efficiency for you and your staff. With all the most often used features of STX desktop built-in,

More information

ITIL Managing Across the Lifecycle (MALC)

ITIL Managing Across the Lifecycle (MALC) ITIL Managing Across the Lifecycle (MALC) Course Syllabus (v1.2) Fifalde Consulting Inc. +1-613-699-3005 ITIL is a registered trade mark of AXELOS Limited. 2017 Fifalde Consulting Inc. ITIL MANAGING ACROSS

More information

Computer Science 302 Spring 2018 Practice Examination for the Second Examination,

Computer Science 302 Spring 2018 Practice Examination for the Second Examination, Computer Science 302 Spring 2018 Practice Examination for the Second Examination, March 7, 2018 Name: No books, notes, or scratch paper. Use pen or pencil, any color. Use the rest of this page and the

More information

Software Engineering Prof.N.L.Sarda IIT Bombay. Lecture-11 Data Modelling- ER diagrams, Mapping to relational model (Part -II)

Software Engineering Prof.N.L.Sarda IIT Bombay. Lecture-11 Data Modelling- ER diagrams, Mapping to relational model (Part -II) Software Engineering Prof.N.L.Sarda IIT Bombay Lecture-11 Data Modelling- ER diagrams, Mapping to relational model (Part -II) We will continue our discussion on process modeling. In the previous lecture

More information

APPRAISAL DELIVERY INSTRUCTIONS QUICK REFERENCE TOOL

APPRAISAL DELIVERY INSTRUCTIONS QUICK REFERENCE TOOL APPRAISAL DELIVERY INSTRUCTIONS QUICK REFERENCE TOOL Browser: Internet Explorer Only Website: https://www.gofnc.com/suntrust/ Automated communication from the CMS System will come from the email address:

More information

CSC 1300 Exam 4 Comprehensive-ish and Structs

CSC 1300 Exam 4 Comprehensive-ish and Structs CSC 1300 Exam 4 Comprehensive-ish and Structs December 8, 2017 Name: Read through the entire test first BEFORE starting Multiple Choice and T/F sections should be completed on the scantron Test has two

More information

CSE331 Fall 2014, Final Examination December 9, 2014 Please do not turn the page until 2:30. Rules:

CSE331 Fall 2014, Final Examination December 9, 2014 Please do not turn the page until 2:30. Rules: CSE331 Fall 2014, Final Examination December 9, 2014 Please do not turn the page until 2:30. Rules: The exam is closed-book, closed-note, etc. Please stop promptly at 4:20. There are 156 (not 100) points,

More information

MANAGE // CLAIMS & RETURNS TRAINING MANUAL

MANAGE // CLAIMS & RETURNS TRAINING MANUAL MANAGE // CLAIMS & RETURNS TRAINING MANUAL CONTENTS BASIC NAVIGATION RETURN REQUEST STARTING A NEW CLAIM 5 CREDIT REQUEST SEARCH AND ADD PRODUCTS 6 REVIEW AND SUBMIT CLAIM BASIC NAVIGATION BASIC NAVIGATION

More information

Sentinel SmartTouch Instruction Manual

Sentinel SmartTouch Instruction Manual Sentinel SmartTouch Instruction Manual 1. Introduction.. 2 2. Installing the Software... 2-6 3. Using Admin to setup SmartTouch.. 7-25 4. Using SmartTouch 26-28 5. Main Flags. 29-30 6. SmartTouch Upgrade

More information

Object Oriented Model of Objectory Process

Object Oriented Model of Objectory Process Object Oriented Model of Objectory Process Characteristics of Original Process The original Objectory Process version 4.0 (demo version, Rational, 1997) is complex, but it is made more manageable by viewing

More information

MANAGED PRINT SERVICES. Process Steps 1.2

MANAGED PRINT SERVICES. Process Steps 1.2 MANAGED PRINT SERVICES Process Steps 1.2 Enter Sales Proposal : Role Sales Enter Sales Proposal 1 Customer Information : - Contract Address - Invoice Address There are 2 possibilities to enter the customer

More information

IBM Exam C IBM Business Process Manager Express or Standard Edition V8.0, BPM Application Development Version: 6.0

IBM Exam C IBM Business Process Manager Express or Standard Edition V8.0, BPM Application Development Version: 6.0 s@lm@n IBM Exam C9550-276 IBM Business Process Manager Express or Standard Edition V8.0, BPM Application Development Version: 6.0 [ Total Questions: 53 ] Question No : 1 A document imaging and management

More information

SIF8035. Events and System Requirements

SIF8035. Events and System Requirements SIF8035 Lecture 4 DFD and PrM Events and System Requirements Events Occurrences at a specific time and place Trigger all system processing Requirement definition Determine relevant events External events

More information

An Introduction to Business Process Modeling using Data Flow Diagrams

An Introduction to Business Process Modeling using Data Flow Diagrams An Introduction to Business Process Modeling using Data Flow Diagrams BSAD 141 Dave Novak BDIS: 2.2 (61-77) Lecture Overview Systems and Business processes Business process models Data Flow Diagrams (DFDs)

More information

Pointer Basics. Lecture 13 COP 3014 Spring March 28, 2018

Pointer Basics. Lecture 13 COP 3014 Spring March 28, 2018 Pointer Basics Lecture 13 COP 3014 Spring 2018 March 28, 2018 What is a Pointer? A pointer is a variable that stores a memory address. Pointers are used to store the addresses of other variables or memory

More information

TIS HELP VCCS TECHNICAL INFORMATION SHOP (TIS) INSTRUCTION FOR INDEPENDENT OPERATORS

TIS HELP VCCS TECHNICAL INFORMATION SHOP (TIS) INSTRUCTION FOR INDEPENDENT OPERATORS VCCS TECHNICAL INFORMATION SHOP (TIS) INSTRUCTION FOR INDEPENDENT OPERATORS CONTENTS 1 INTRODUCTION... 3 1.1 Account set up... 3 1.1.1 Independent operators with TIE access... 3 1.2 Login for registered

More information

EXAMINATION FOR THE BSC (HONS) INFORMATION TECHNOLOGY; BSC (HONS) INFORMATION SYSTEMS & BSC (HONS) COMPUTER SCIENCE; YEAR 1

EXAMINATION FOR THE BSC (HONS) INFORMATION TECHNOLOGY; BSC (HONS) INFORMATION SYSTEMS & BSC (HONS) COMPUTER SCIENCE; YEAR 1 FACULTY OF SCIENCE AND TECHNOLOGY EXAMINATION FOR THE BSC (HONS) INFORMATION TECHNOLOGY; BSC (HONS) INFORMATION SYSTEMS & BSC (HONS) COMPUTER SCIENCE; YEAR 1 ACADEMIC SESSION 2014; SEMESTER 2 PRG1203:

More information

QuickBooks Synergy. Life Cycle of a Job in QuickBooks Overview Page 2. Getting Ready Page 3 Inventory or Non-Inventory

QuickBooks Synergy. Life Cycle of a Job in QuickBooks Overview Page 2. Getting Ready Page 3 Inventory or Non-Inventory QuickBooks Synergy Note: This Course is being demonstrated with QuickBooks Premier 2010 Contractors Edition and Minutes Matter QuickBooks & Quoting. In older versions of QuickBooks & Quoting the terminology

More information

BEng (Hons) Telecommunications. Examinations for 2016 / Semester 2

BEng (Hons) Telecommunications. Examinations for 2016 / Semester 2 BEng (Hons) Telecommunications Cohort: BTEL/15/FT Examinations for 2016 / Semester 2 Resit Examination for BTEL/12/FT & BTEL/14/FT MODULE: Programming for Engineers MODULE CODE: PROG1114C Duration: 3 Hours

More information

Final Exam 1 /12 2 /12 3 /10 4 /7 5 /4 6 /10 7 /8 8 /9 9 /8 10 /11 11 /8 12 /10 13 /9 14 /13 15 /10 16 /10 17 /12. Faculty of Computer Science

Final Exam 1 /12 2 /12 3 /10 4 /7 5 /4 6 /10 7 /8 8 /9 9 /8 10 /11 11 /8 12 /10 13 /9 14 /13 15 /10 16 /10 17 /12. Faculty of Computer Science Faculty of Computer Science Page 1 of 21 Final Exam Term: Fall 2018 (Sep4-Dec4) Student ID Information Last name: First name: Student ID #: CS.Dal.Ca userid: Course ID: CSCI 2132 Course Title: Instructor:

More information