Connecting with Computer Science Chapter 13 Review: Chapter Summary:

Size: px
Start display at page:

Download "Connecting with Computer Science Chapter 13 Review: Chapter Summary:"

Transcription

1 Connecting with Computer Science Chapter 13 Review: Chapter Summary: Software engineering involves many different steps to create an application that meets end user s needs. The process of building an application is accomplished by following a software development life cycle (SDLC) model. Each SDLC model provides a different way of outlining the steps for creating a software product. A design document is created as a blueprint for software development and outlines an application s functionality. Several steps should be followed when creating a design document: researching end users needs, communication, logical design of screens, reports and data structures; and all other steps that must take place before any source code is written. Unified Modeling Language (UML) is a tool that enables developers and end users to illustrate an application functionality. There are several types of UML diagrams, each serving a particular purpose or describing a part of the project being developed. Using reports and a data dictionary can help a developer find any oversights in the project s design. Software development is often a team effort; building a team involves knowing the specific roles of each member. Team members often include a project manager, database administrator, developers / programmers, clients/end users, testers and customer relations representatives. After the application has been developed, installation media must be generated. After the application is installed on the client s system, spend some time training end users who can in turn train other end users.

2 Key Terms: Support Technician (456) Data Dictionary (443) DBA (454) Design Document (436) End User (434) Flowchart (446) Gold Plating (453) Project Manager (453) Prototype(435) Scope Creep Software Developer (455) SDLC (434) Software Engineering (434) Tester(455) UML(438) Waterfall Model (435) Person responsible for interacting with testers, developers and end users during the product s creation and early release and on an ongoing basis with end users as long as the product is being used. A document describing the type of data being used in the program, showing table definitions, indexes and other data relationships. Person assigned the role of creating and maintaining the database structure. A document that details all the design issues for an application. Someone or something that needs the program to perform a function or meet a need and determines the program s required functionality. A combination of symbols and text that provides a visual description of a process. Adding unnecessary features to the project design. Leader of the software development team; responsible for choosing the right players for the right positions and making sure the project is on schedule. A standard or typical example that gives end users a good idea of what they will see when their application is completed. Occurs when new changes are added to a project constantly, thus changing the proposed deadline so that the project is never completed; instead it is in a constant improvement mode. Person responsible for writing source code to meet the end user s functional requirements. A model that describes the life of the application, including all stages involved in: developing, testing, installing, and maintaining a program. The process of producing software apps, involving not just the program s source code but also associated documentation, including UML diagrams, screen prototypes, reports, software requirements, future development issues and data needed to make programs operate correctly. Person responsible for making sure the program functions correctly and meets all the functional requirements specified ion the design document. A software modeling process for creating a blueprint that shows the programs overall functionality and provides a way for the client and developer to communicate. An SDLC approach involving sequential application development with processes organized into phases; after a phase is completed, a new one starts, and you cannot return to the previous phase. Test Yourself: 1.) Describe what the process of software engineering includes Software engineering is the process of producing software applications. It involves not just the program s source code but also associated documentation, including: UNL, diagrams, screen prototypes, reports, software requirements, future development issues, and data needed to make programs operate correctly. It is the heart of computer science and incorporates everything a software developer might encounter, including hardware components networking, databases, Web development, software applications and so forth.

3 2.) What is a design document and how does it affect software engineering? A design document details all the application s design issues and includes its functionality, appearance and distribution. Without a well-defined design document, a project is doomed to failure. Creating a design document is based on good communication with end users in determining the application s and requirements. 3.) Write the pseudo code steps for a program that processes a savings deposit in an ATM. Prompt for card. When card is entered, read card. Ask for PIN. Confirm that PIN matches card. If there is a match, continue with transaction. Otherwise display error message. Ask for dollar amount to add to savings. Add dollar amount to savings and update account. Ask if they would like to make another transaction. If so, continue by going back to Step 6. Otherwise, display a thank you message and quit. Eject card. 4.) Write the pseudo code steps for a program that processes a savings withdrawal from an ATM. Prompt for card. When card is entered, read card. Ask for PIN. Confirm that PIN matches card. If there is a match, continue with transaction. Otherwise display an error message. As for dollar amount to remove from account. Subtract dollar amount from account and update the account. Ask if they would like to make another transaction. If so, continue by going back to Step 6. Otherwise, display a thank you message and quit. Eject card. 5.) How can UML help a developer create a program that meets an end user s needs? UML is a software modeling process that enables developers to create a blueprint showing the overall functionality of the program being engineered and provides a way for clients and developers to communicate. Better communication results in a better project. 6.) How is a data dictionary used in software development? A data dictionary is a document defining the structure of the database, and describing the type of data used in the program, and showing table definitions, indexes, and other data relationships. Developers use it to clarify the data available for use in reports, screens, file transfers and other data operations. Developers and end users can also use it during the report creation process. The document acts as a master guide for making sure all data is consistent.

4 7.) What is a prototype and how is it used in software engineering? A prototype is a typical example that gives end users a good idea of what they ll see when their application is completed. It is not the final product, ready to go. A software engineer can design all the screens and reports before any lines of code are written and should get end users input on factors such as: color, position of fields and so forth. The result should be a product agreed by both the user and the developer, thus promoting good communication throughout the process. 8.) What are some mistakes you can make in designing and developing a software program? Not including the end user in the design process. Writing your application without getting user approval for the prototype. Not testing the application. Using poor coding procedures. Not creating a design document. Thinking that end users do not know what they want, so you tell them what they are going to get. 9.) Describe the steps in the waterfall SDLC model. The waterfall SDLC model represents the fundamental processes in creating a program as phases. The output from each phase is used as the input for the next phase. The first step is gathering all the requirements for the project. The second step is designing the system and software. After all the requirements have been defined and the project has been designed, it is time to build and implement the application. After the application is finished, it must be tested and then finally put into operation and maintained to meet users needs. If you encounter a problem in the design, you must return to the first step and continue repeating the process until the final product has met all the users functional requirements. 10.) List each software development team role and describes the job function. Project Manager: Leader of the team, responsible for choosing the right players for the right positions, determining the projects risks, cost and schedule of tasks, and keeping the project on schedule. Database Administrator (DBA): Person assigned the role of creating and maintaining the database. Software developer: Person responsible for writing source code to meet end users functional requirements. Client: A person who has a need that can be met through the process of software engineering. Clients are the ones who know what they really want and why. Tester: Person responsible for making sure the program functions correctly and meets all the functional requirements specified in the design document. Consumer relations representative: Person responsible for interacting with testers, developers and end users during the product s creation and early release and on an ongoing basis with the end users as long as the product is being used.

5 11.) Draw a flowchart for using a microwave to heat a TV dinner for 2 minutes. Start Press cook time button Open Door Place food inside microwave Enter 2 min Press start button Close door Open Door Press cook level button If remaining Cook < 2 min Yes Remove food Select high level No Close Door Sound Timer & reset display Stop 12.) Write the pseudo code for using a microwave a TV dinner for 2 minutes. Open microwave door. Place food inside microwave Press the cook level button Select high Press the cook time button Enter 2 minutes Press the start button When the timer goes off, open door Remove food Close door

6 13.) Draw a flow chart for making a purchase on the internet. Start Go to Web URL Enter login name Enter password Click Login button Enter Search Display error message No Click checkout Process all charges Confirm order Stop Click search button If item is found Yes Add to cart

7 14.) Write the pseudo code for making a purchase on the internet. Go to the web site URL Enter login name Enter password Click the login button Type item description in search area Click the Search button If found, enter quantity and click Add item to shopping cart. If not found, display error message and return to screen Click the Checkout button Confirm information and click the Confirm Order button Click the Logout button 15.) Draw a flow chart and write the pseudo code for an application that allows a professor to keep track of the following information for each student: 10 homework assignments, 4 quiz scores and 2 test scores. The application should calculate the average grade for each type of information (homework, quizzes, and tests) and then calculate a final grade by averaging all three average scores. Start Enter SS ID Enter SS ID Input 2 test scores Calculate hw Avg score Input 4 quiz scores Calc test avg score Calc final Average Calc quiz avg score Stop

8 Enter Student ID. Input 10 homework scores. Calculate the homework average score. Input 4 quiz scores. Calculate the quiz average score Input 2 test scores Calculate the test average score Calculate the final average (HomeworkAvg + QuizAvg + TestAvg) / 3

Objectives. Connecting with Computer Science 2

Objectives. Connecting with Computer Science 2 Objectives Learn how software engineering is used to create applications Learn some of the different software engineering process models Understand what a design document is and how it should be used during

More information

User Sign In Page. New User Page. Click My Account on top or bottom toolbars.

User Sign In Page. New User Page. Click My Account on top or bottom toolbars. New User Instructions URL: www.costore.com/chemicalbank or www.chemicalbankstore.com Home Page For assistance please contact JMA Promotions- Amy Rush at 1-800-431-1101 or email arush@jmapromotions.com

More information

*ANSWERS * **********************************

*ANSWERS * ********************************** CS/183/17/SS07 UNIVERSITY OF SURREY BSc Programmes in Computing Level 1 Examination CS183: Systems Analysis and Design Time allowed: 2 hours Spring Semester 2007 Answer ALL questions in Section A and TWO

More information

Standard User Site Registration Account Options Customer Hot List Creation & Utilization.

Standard User Site Registration Account Options Customer Hot List Creation & Utilization. Standard User Site Registration Account Options Customer Hot List Creation & Utilization www.gosafe.com gosafe.com User Instructions This document details the process for registering with gosafe.com, options

More information

This course includes 14 lessons and 5 Course Activities. Each lesson contains one or more Lesson Activities. The lessons cover the following topics:

This course includes 14 lessons and 5 Course Activities. Each lesson contains one or more Lesson Activities. The lessons cover the following topics: Syllabus Computer Science 1B Overview This one-semester course is intended as a practical, hands-on guide to help you understand various phases of the Software Development Life Cycle (SDLC). This course

More information

Banking System Upgrade - Frequently Asked Questions (FAQs)

Banking System Upgrade - Frequently Asked Questions (FAQs) Banking System Upgrade - Frequently Asked Questions (FAQs) What does banking system upgrade mean and why do we need to upgrade our banking system? A banking system upgrade means we are changing the technology

More information

Student User Guide. Version 1.2. Page 1 of 16. Student User Guide Version 1.2

Student User Guide. Version 1.2. Page 1 of 16. Student User Guide Version 1.2 Page 1 of 16 Table of Contents Introduction... 3 Using Your Unikey... 3 Managing Your Account... 4 Editing Contact Information... 4 Managing Addresses... 5 Course Notes... 8 Selecting Course Notes... 8

More information

Ordering Instructions

Ordering Instructions Ordering Instructions Document Overview This document contains information about how to order PreACT test materials. Contents Document Overview 1 Who Orders Test Materials and Reporting Packages? 1 When

More information

Marketing Portal User s Guide. Buy A List Orders

Marketing Portal User s Guide. Buy A List Orders Marketing Portal User s Guide Buy A List Orders page 1 Marketing Portal User s Guide 1. Welcome to AdVestors Marketing Portal User s Guide! Please enter: hvamarketing.com into your browser s URL address

More information

Up and Running Software The Development Process

Up and Running Software The Development Process Up and Running Software The Development Process Success Determination, Adaptative Processes, and a Baseline Approach About This Document: Thank you for requesting more information about Up and Running

More information

SOFTWARE ENGINEERING. Lecture 6. By: Latifa ALrashed. Networks and Communication Department

SOFTWARE ENGINEERING. Lecture 6. By: Latifa ALrashed. Networks and Communication Department 1 SOFTWARE ENGINEERING Networks and Communication Department Lecture 6 By: Latifa ALrashed Outline q q q q q q q q Define the concept of the software life cycle in software engineering. Identify the system

More information

Selection of UML Models for Test Case Generation: A Discussion on Techniques to Generate Test Cases

Selection of UML Models for Test Case Generation: A Discussion on Techniques to Generate Test Cases St. Cloud State University therepository at St. Cloud State Culminating Projects in Computer Science and Information Technology Department of Computer Science and Information Technology 6-2018 Selection

More information

For Volunteers An Elvanto Guide

For Volunteers An Elvanto Guide For Volunteers An Elvanto Guide www.elvanto.com Volunteers are what keep churches running! This guide is for volunteers who use Elvanto. If you re in charge of volunteers, why not check out our Volunteer

More information

Ordering promotional items and literature

Ordering promotional items and literature Ordering promotional items and literature A guide to using your Brand Centre rsc.li/brand-centre The Royal Society of Chemistry is the world s leading chemistry community, advancing excellence in the chemical

More information

ORAC Match. User Manual for Support Workers. V1.0 Updated 13/11/2017

ORAC Match. User Manual for Support Workers. V1.0 Updated 13/11/2017 ORAC Match User Manual for Support Workers V1.0 Updated 13/11/2017 1 Contents: The Login Screen: ORAC can be accessed through any web browser, smartphone or tablet via the following link; https://app.orac.support

More information

NHD Online Registration Guide: Teacher

NHD Online Registration Guide: Teacher NHD Online Registration Guide: Teacher Introduction Welcome to the National History Day Contest Management system. Within this guide, you will see a description of key terms within the contest system along

More information

Getting Started in Your Blackboard 5 Course

Getting Started in Your Blackboard 5 Course Getting Started in Your Blackboard 5 Course Course Name: Course ID: Instructor: URL: http://hofstra.blackboard.com Username: Password: This course will be using Web-based software, which integrates course

More information

BYU-Idaho Online Knowledgebase

BYU-Idaho Online Knowledgebase STUDENT GUIDES Table of Contents Introduction...4 I-Learn Introduction (Video)...5 A Successful Start in Pathway (Video)...6 Student Communication...7 How Do I Set My Time Zone?...8 How Do I Exclude Some

More information

3Lesson 3: Web Project Management Fundamentals Objectives

3Lesson 3: Web Project Management Fundamentals Objectives 3Lesson 3: Web Project Management Fundamentals Objectives By the end of this lesson, you will be able to: 1.1.11: Determine site project implementation factors (includes stakeholder input, time frame,

More information

The Workwear Group Online Ordering Manual. Ozcare employees

The Workwear Group Online Ordering Manual. Ozcare employees The Workwear Group Online Ordering Manual Ozcare employees Welcome to The Workwear Group online at http://www.pbworkwearonline.com.au This site provides you with everything you need to manage your uniform

More information

Overview of HoundMart eprocurement Module and Benefits

Overview of HoundMart eprocurement Module and Benefits Contents Overview of HoundMart eprocurement Module and Benefits... 1 Purpose of this Guide... 1 Access HoundMart Application... 2 HoundMart Home Page Overview... 3 Shop using Hosted Catalog... 4 Notification

More information

WebCRD Ad-Hoc Ordering Instructional Walk-through Document

WebCRD Ad-Hoc Ordering Instructional Walk-through Document WebCRD Ad-Hoc Ordering Instructional Walk-through Document Spectrum Brands Ad-Hoc Ordering December 2016 Ver. 2.0 2013 Xerox Corporation. All rights reserved. Xerox and Xerox and Design are trademarks

More information

Welcome to Moodle! How To Moodle

Welcome to Moodle! How To Moodle Welcome to Moodle! The MH Vicars School Moodle site is where you ll find all the online components of your Vicars curriculum. For the following year, this will include quizzes and access to multimedia

More information

Sample Exam. Certified Tester Foundation Level

Sample Exam. Certified Tester Foundation Level Sample Exam Certified Tester Foundation Level Answer Table ASTQB Created - 2018 American Stware Testing Qualifications Board Copyright Notice This document may be copied in its entirety, or extracts made,

More information

Getting Started with. InSpiredByYou.com COPYRIGHT STUDIOPLUS SOFTWARE, LLC ALL RIGHTS RESERVED

Getting Started with. InSpiredByYou.com COPYRIGHT STUDIOPLUS SOFTWARE, LLC ALL RIGHTS RESERVED Getting Started with InSpiredByYou.com COPYRIGHT 1998-2013 STUDIOPLUS SOFTWARE, LLC ALL RIGHTS RESERVED i Getting Started with InSpiredByYou Table of Contents Setting Up InSpiredByYou... 3 Set Up an InSpiredByYou

More information

AP Onestop Request Official Transcript

AP Onestop Request Official Transcript AP Onestop Request Official Transcript USERNAME: Refer to AP Self Service for user name PASSWORD: The first time only will be ApA and the 8 digit A# or Birth date twodigit month, day and year. Then click

More information

Introduction... 4 I-Learn Introduction (Video)... 5 A Successful Start in Pathway (Video)... 6

Introduction... 4 I-Learn Introduction (Video)... 5 A Successful Start in Pathway (Video)... 6 STUDENT GUIDES Table of Contents Introduction... 4 I-Learn Introduction (Video)... 5 A Successful Start in Pathway (Video)... 6 Student Communication... 7 How Do I Set My Time Zone?... 8 How Do I Exclude

More information

User-Centered Development

User-Centered Development Software Lifecycle CS470 User-Centered Development User-centered development refers to a design process for creating a system that meets the needs of the user Users should be included in the design process

More information

In Figure 6, users can view their profile information in the Profile tab displayed by. Figure 8 Figure 7

In Figure 6, users can view their profile information in the Profile tab displayed by. Figure 8 Figure 7 This guide is designed to give new users a brief overview of Learn360. It will review how to begin using the many tools, features and functionality Learn360 has to offer. Login Figures 1, 2 and 3 feature

More information

OLLI Online Registration Training

OLLI Online Registration Training OLLI Online Registration Training 1 Locating New OLLI at UK Online Registration Website There are two ways to find the OLLI at UK new online registration website: 1. Type the web address directly into

More information

place an order or Review your Patterson Advantage benefits and account information.

place an order or Review your Patterson Advantage benefits and account information. If you have an existing username and password for the website, select the Sign In button or enter your credentials in the Sign In field. To sign up for a new online account, select the Sign In button or

More information

Android Basics Nanodegree Syllabus

Android Basics Nanodegree Syllabus Android Basics Nanodegree Syllabus Before You Start This is an entry-level program. No prior programming experience required. Project 1: Build a Single Screen App Design and implement a single screen app

More information

hamster.ca Web Site User Guide 2018 See who we are

hamster.ca Web Site User Guide 2018 See who we are hamster.ca Web Site User Guide 2018 See who we are Table of Contents Table of Contents...2 First Welcome Window...3 Managing sessions...3 Lost your Password?...3 Power Search tools...4 Ink & Toner Reference

More information

TASKS IN THE SYSTEMS DEVELOPMENT LIFE CYCLE

TASKS IN THE SYSTEMS DEVELOPMENT LIFE CYCLE SUMMARY AND REFERENCE ACTG 313 TASKS IN THE SYSTEMS DEVELOPMENT LIFE CYCLE PREPARATION PHASE 1. Identification of the Need for a new Information System 2. Initial Feasibility Study (always flawed because

More information

MAGENTO BOF: BASIC USER GUIDE NCT IT

MAGENTO BOF: BASIC USER GUIDE NCT IT MAGENTO BOF: BASIC USER GUIDE 2013.07.04 NCT IT MAGENTO BOF: ACCESS LEVELS WHO CAN MAKE ORDERS? The new Branch Order Form does away with order approval and uses a stricter access system instead. As long

More information

Login Page. A link is provided on this page allowing new users to register.

Login Page. A link is provided on this page allowing new users to register. Login Page A link is provided on this page allowing new users to register. Returning Users can simply enter their Username and Password to enter the site. If you are a returning user and have forgotten

More information

Android Basics Nanodegree Syllabus

Android Basics Nanodegree Syllabus Android Basics Nanodegree Syllabus Before You Start This is an entry-level, single term Nanodegree program with no prior programming experience required. Support Options We are here to support you every

More information

ParentConnection User Guide

ParentConnection User Guide ParentConnection User Guide Table of Contents How to Access ParentConnection for the Anchorage School District... Welcome Parents!... Computer Requirements... Finding ParentConnection & Logging In... Your

More information

Web site design proposal

Web site design proposal Web site design proposal Project title www.test.com web site design Prepared By SPTeoh Date Wednesday, October 17, 2007 Conditions Price and content will valid for one month start from the issued date

More information

Software Life-Cycle Models

Software Life-Cycle Models Software Life-Cycle Models CMPSC 487 Lecture 03 Topics: UML Class Diagram Rosenburg Chap 2. Domain Modeling A. UML: Unified Modeling Language UML is a general-purpose, developmental, modeling language

More information

Complete On-Demand Clone Documentation

Complete On-Demand Clone Documentation Complete On-Demand Clone Documentation Table of Contents 1. How Complete On-Demand Clone works...4 2. Primary Pages of App...8 A. App...8 B. Auth....10 C. Sell...11 D. Business...12 E. Driver...12 F. Admin/Dashboard...13

More information

Olds Minor Hockey Association Online Registration Manual

Olds Minor Hockey Association Online Registration Manual Olds Minor Hockey Association Online Registration Manual Olds Minor Hockey Association B 5133-52nd Street Olds, AB T4H 1G9 email: oldsminorhockey@gmail.com Website: www.oldsminorhockey.com 1 Table of Contents

More information

CSCA0102 IT and Business Applications Chapter 7. Data and Information

CSCA0102 IT and Business Applications Chapter 7. Data and Information CSCA0102 IT and Business Applications Chapter 7 Data and Information Data and Information Data Data is raw, unorganized facts that need to be processed. Data can be something simple and seemingly random

More information

Outline. Program development cycle. Algorithms development and representation. Examples.

Outline. Program development cycle. Algorithms development and representation. Examples. Outline Program development cycle. Algorithms development and representation. Examples. 1 Program Development Cycle Program development cycle steps: Problem definition. Problem analysis (understanding).

More information

Why do architects need more than TOGAF?

Why do architects need more than TOGAF? Why do architects need more than TOGAF? To bridge the gap between a high-level management framework for EA and solution/implementation projects You need something like BCS professional certificates in

More information

Auditing in an Automated Environment: Appendix E: System Design, Development, and Maintenance

Auditing in an Automated Environment: Appendix E: System Design, Development, and Maintenance Accountability Modules Auditing in an Automated Environment: Agency Prepared By Initials Date Reviewed By Audit Program - System Design, Development, and Maintenance W/P Ref Page 1 of 1 Procedures Initials

More information

ORAC Match. User Manual for Support Workers. V1.0 Updated 13/11/2017

ORAC Match. User Manual for Support Workers. V1.0 Updated 13/11/2017 ORAC Match User Manual for Support Workers V1.0 Updated 13/11/2017 1 Contents: The Login Screen: ORAC can be accessed through any web browser, smartphone or tablet via the following link; https://app.orac.support

More information

HOW TO REGISTER FOR THE TEAS ASSESSMENT

HOW TO REGISTER FOR THE TEAS ASSESSMENT How to Register for the TEAS Assessment 1 HOW TO REGISTER FOR THE TEAS ASSESSMENT You can now register for the TEAS Assessment through our Online Store. How you access the Online Store depends on whether

More information

Remote Access Synchronization DL Parent

Remote Access Synchronization DL Parent Remote Access Synchronization DL Parent 205 Distance Learning Features Switched-On Schoolhouse 2008 School Edition has two optional distance learning features available: SOS Remote Access and SOS Synchronization.

More information

Searching Options. Quick Start Guide. With Learn360, there are three different searching options which are displayed in Figures 1, 2, & 3.

Searching Options. Quick Start Guide. With Learn360, there are three different searching options which are displayed in Figures 1, 2, & 3. This guide is designed to give new users a brief overview of. It will review how users can begin using the many tools, features and functionality has to offer with the greatest of ease. Login Figures 1,

More information

Creating an Intranet using Lotus Web Content Management. Part 2 Project Planning

Creating an Intranet using Lotus Web Content Management. Part 2 Project Planning Creating an Intranet using Lotus Web Content Management Introduction Part 2 Project Planning Many projects have failed due to poor project planning. The following article gives an overview of the typical

More information

Digital StoreFront TRAINING

Digital StoreFront TRAINING Florida Agricultural and Mechanical University Digital StoreFront TRAINING Faculty and Staff January 2017 What is Digital StoreFront (DSF)? Digital StoreFront is a web-to-print e-commerce site that allows

More information

Directions to Principals Registering, Activating & Creating User Accounts In UAA

Directions to Principals Registering, Activating & Creating User Accounts In UAA Directions to Principals Registering, Activating & Creating User Accounts In UAA Step 1 - Register for this school year The principal (known as the Primary Delegator in UAA) must register at the beginning

More information

Welcome to Technology Class. 7 th Grade: Web Design 8 th Grade: Digital Animation

Welcome to Technology Class. 7 th Grade: Web Design 8 th Grade: Digital Animation Welcome to Technology Class 7 th Grade: Web Design 8 th Grade: Digital Animation Syllabus We will go over important details of the syllabus YOU WILL NOT RECEIVE A NEW COPY IF YOU LOSE IT Be sure to return

More information

One-Time PIN. User Guide

One-Time PIN. User Guide One-Time PIN User Guide Table of Contents Online Banking Setting up One-Time PIN Registering your device Logging in with One-Time PIN Changing One-Time PIN Delivery Method Mobile Banking Setting up One-Time

More information

easypurchase Magellan User Reference Guide

easypurchase Magellan User Reference Guide 1 easypurchase Magellan User Reference Guide v1.12.13 Table of Contents Getting Started... 3 Initiating your Account... 3 Logging In... 3 Shop... 4 Creating an Order... 4 Hosted Catalogs... 4 Punchout

More information

To register your team for an MB Mission program, you must select the Participant type option I want to register a team (I am a team leader).

To register your team for an MB Mission program, you must select the Participant type option I want to register a team (I am a team leader). To register your team for an MB Mission program, you must select the Participant type option I want to register a team (I am a team leader). Once this option is selected, you must enter a Team Name. (If

More information

Design of Embedded Systems

Design of Embedded Systems Design of Embedded Systems José Costa Software for Embedded Systems Departamento de Engenharia Informática (DEI) Instituto Superior Técnico 2015-01-02 José Costa (DEI/IST) Design of Embedded Systems 1

More information

Logging Into ipart Enter the Store ID

Logging Into ipart Enter the Store ID Logging Into ipart Enter the Store ID Using your computers web browser, navigate to the ipart homepage URL: https://ipart.amador.ca which will look similar to the image above. Enter the Store ID requested

More information

This handbook contains directions on using tools and resources in WebAccess at CSM.

This handbook contains directions on using tools and resources in WebAccess at CSM. WebAccess Handbook This handbook contains directions on using tools and resources in WebAccess at CSM. Contents Logging in to WebAccess... 2 Setting up your Shell... 3 Docking Blocks or Menus... 3 Course

More information

STLCC Print Shop. user guide version 2.0

STLCC Print Shop. user guide version 2.0 STLCC Print Shop user guide version 2.0 SUPPORT Contact our support team with any questions express.support@modernlitho.com 573-644-6245 Monday-Friday 7am-5pm CST GETTING STARTED Go to www.modernlithoonline.com

More information

HTML/CSS Lesson Plans

HTML/CSS Lesson Plans HTML/CSS Lesson Plans Course Outline 8 lessons x 1 hour Class size: 15-25 students Age: 10-12 years Requirements Computer for each student (or pair) and a classroom projector Pencil and paper Internet

More information

2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows,

2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows, 2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows, Windows Server, and other product names are or may be registered

More information

Table of Contents. Buyer Functions Buyer Responsibilities: Create and submit orders for approval and manage personal profile and preferences.

Table of Contents. Buyer Functions Buyer Responsibilities: Create and submit orders for approval and manage personal profile and preferences. Table of Contents Buyer Functions Buyer Responsibilities: Create and submit orders for approval and manage personal profile and preferences. Web site Login Page # Login Process 3 Reset Password 4 Authorize

More information

Systems Analysis and Design in a Changing World, Fourth Edition

Systems Analysis and Design in a Changing World, Fourth Edition Systems Analysis and Design in a Changing World, Fourth Edition Systems Analysis and Design in a Changing World, 4th Edition Learning Objectives Explain the purpose and various phases of the systems development

More information

Schedule A PARTY HOW TO. Create New Host. The first thing you will do is create a new host for the party.

Schedule A PARTY HOW TO. Create New Host.   The first thing you will do is create a new host for the party. HOW TO Schedule A PARTY To schedule a party login to your godésana Organics back office. In the left-hand navigation of your back office click on the link titled Host a Party. Create New Host The first

More information

CMSC 201 Spring 2017 Homework 4 Lists (and Loops and Strings)

CMSC 201 Spring 2017 Homework 4 Lists (and Loops and Strings) CMSC 201 Spring 2017 Homework 4 Lists (and Loops and Strings) Assignment: Homework 4 Lists (and Loops and Strings) Due Date: Friday, March 3rd, 2017 by 8:59:59 PM Value: 40 points Collaboration: For Homework

More information

Contents GENERAL OVERVIEW 3. User Profile and Permissions... 3 Regional Manager... 3 Manager... 3 User... 4 Security... 4

Contents GENERAL OVERVIEW 3. User Profile and Permissions... 3 Regional Manager... 3 Manager... 3 User... 4 Security... 4 SYNERGY USER GUIDE Contents GENERAL OVERVIEW 3 User Profile and Permissions... 3 Regional Manager... 3 Manager... 3 User... 4 Security... 4 Budgets... 4 Spending Limits... 5 PO Hold Review... 5 Regional

More information

FAQ: Database System Development Life Cycle

FAQ: Database System Development Life Cycle Question 1: Why study database management system (DBMS) designs? Answer 1: Understanding and designing databases is truly an evolutionary learning process. There is not a right way or a wrong way to develop

More information

All Applications Release Bulletin February 2013

All Applications Release Bulletin February 2013 In this bulletin... All Applications Release Bulletin February 2013 All Applications Enhancements 2 System Administration and My BackPack (General) Enhancements 3 My BackPack Redesign 4 Mobile: New 'School

More information

WEB DESIGN 8 PHASES OF THE DESIGN PROCESS. By da Creative Team

WEB DESIGN 8 PHASES OF THE DESIGN PROCESS. By da Creative Team WEB DESIGN 8 PHASES OF THE DESIGN PROCESS By da Creative Team 1. Project Definition 1.1. Project Summary 1.2. Goals 1.3. Target Audience 1.4. Message 1.5. Competition 1.6. Content Strategy 2. Project Scope

More information

Software Engineering - I

Software Engineering - I Software Engineering - I An Introduction to Software Construction Techniques for Industrial Strength Software Chapter 3 Requirement Engineering Copy Rights Virtual University of Pakistan 1 Requirement

More information

School Payment Portal. Parents Guide to Getting Started

School Payment Portal. Parents Guide to Getting Started School Payment Portal Parents Guide to Getting Started Contents Creating a New Account... 3 Logging into the School Payment Portal... 6 Site Logout... 7 Adding Students to Account... 8 Make a Cafeteria

More information

How to Choose the Right Designer: A Checklist for Professional Web Design

How to Choose the Right Designer: A Checklist for Professional Web Design How to Choose the Right Designer: A Checklist for Professional Web Design How to Choose the Right Designer 2 The Internet has changed the way the world does business and that s just as true for the business

More information

Outline for Today. Lab Equipment & Procedures. Teaching Assistants. Announcements

Outline for Today. Lab Equipment & Procedures. Teaching Assistants. Announcements Announcements Homework #2 (due before class) submit file on LMS. Submit a soft copy using LMS, everybody individually. Log onto the course LMS site Online Assignments Homework 2 Upload your corrected HW2-vn.c

More information

Using the MyKidsSpending website

Using the MyKidsSpending website Using the MyKidsSpending website Use these links to jump to the portion of the guide discussing that topic: Creating your MyKidsSpending account, or adding more students Logging in to your account I can

More information

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link.

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link. How to Order a Four Panel Brochure through Print Services Go to the Print Services Web Page and select the Online Store link. 1 Enter your Username and Password on the Print Services Online Ordering home

More information

Outline of Unified Process

Outline of Unified Process Outline of Unified Process Koichiro OCHIMIZU School of Information Science JAIST Schedule(3/3) March 12 13:00 Unified Process and COMET 14:30 Case Study of Elevator Control System (problem definition,

More information

Online Ordering Instructions

Online Ordering Instructions Online Ordering Instructions Supplied By Table of Contents Login... 2 How to Order Products... 2 Shopping Cart... 3 Checkout... 3 My Account... 7 Login Type www.alliancepromotions.com.au in your preferred

More information

International SOS e-learning Training Hub User Guide

International SOS e-learning Training Hub User Guide International SOS e-learning Training Hub User Guide WELCOME TO THE INTERNATIONAL SOS TRAINING HUB.... 2 STEP 1. ACCESSING THE INTERNATIONAL SOS TRAINING HUB... 2 STEP 2. LOGGING INTO INTERNATIONAL SOS

More information

Note: If a New Account Representative provided you a NetTeller ID at new account opening, skip this section of the enrollment process.

Note: If a New Account Representative provided you a NetTeller ID at new account opening, skip this section of the enrollment process. Thank you for choosing to bank online with First Security Bank! To begin the process of enrolling for online banking, visit our website at www.fsbmsla.com and click on the Enroll Now! link. Note: If a

More information

ATM Use Cases. ID: CIS Title: Check Balance Description: Customer aims to know the balance in his/her account

ATM Use Cases. ID: CIS Title: Check Balance Description: Customer aims to know the balance in his/her account ID: CIS375-01 Title: Login Description: Customer logs into the system by inserting the card and entering pin code. Preconditions: Customer has a bank account and an ATM Card. Postconditions: Customer logged

More information

01 INTRODUCTION TO COURSE

01 INTRODUCTION TO COURSE DATA STRUCTURES AND ALGORITHMS 01 INTRODUCTION TO COURSE ALGORITHMS & DATA STRUCTURES IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD WWW.IMRANIHSAN.COM LECTURES ADAPTED FROM: DANIEL KANE, NEIL

More information

User Guide Mobile Point-of-Sale (mpos), Version 2.0

User Guide Mobile Point-of-Sale (mpos), Version 2.0 User Guide Mobile Point-of-Sale (mpos), Version 2.0 Contents Overview... 1 Features... 1 Getting Started... 2 Login... 3 First Time Login/Password Reset... 3 Setting Security Questions... 4 Password Expiring...

More information

Lasell College s Moodle 3 Student User Guide. Access to Moodle

Lasell College s Moodle 3 Student User Guide. Access to Moodle Access to Moodle The first session of this document will show you how to access your Lasell Moodle course, how to login, and how to logout. 1. The homepage of Lasell Learning Management System Moodle is

More information

CIT110 A+ Hardware Spring 2015

CIT110 A+ Hardware Spring 2015 CIT110 A+ Hardware Spring 2015 Instructor: Laura Pike Email: laura.pike@gbcnv.edu Phone: 775-753-2288 Office: HTC 131 Office Hours: Monday and Tuesday 9:00 11:00 am, Thurs. 4:00-5:00 pm LabSim: ISBN: 978-1-935080-42-8,

More information

Step 1: Register as a New User

Step 1: Register as a New User Login Page A link is provided on this page allowing new users to register. Step 1: Register as a New User Returning Users can simply enter their Email Address and Password to enter the site. If you are

More information

ProjectPlus. Implementations, Upgrades WHITE PAPER. Table of Contents SCOPE OF THIS PAPER... 2 PROJECTPLUS... 3 MENU SET-UP AND MANAGEMENT...

ProjectPlus. Implementations, Upgrades WHITE PAPER. Table of Contents SCOPE OF THIS PAPER... 2 PROJECTPLUS... 3 MENU SET-UP AND MANAGEMENT... WHITE PAPER ProjectPlus Implementations, Upgrades Conversions and Much More Table of Contents SCOPE OF THIS PAPER... 2 PROJECTPLUS...... 3 MENU SET-UP AND MANAGEMENT... 3 PROFILES USERS AND ROLES... 4

More information

Business Portals Guide

Business Portals Guide Business Portals Guide The ZipLine (NPCA) Business Portals are three web sites that allow a merchant to launch a payment card program to local businesses. The businesses can save on each transaction by

More information

Attention Students. Capistrano Valley Christian Schools has teamed up with EdTech for your online book store! Here's how it works:

Attention Students. Capistrano Valley Christian Schools has teamed up with EdTech for your online book store! Here's how it works: Attention Students Capistrano Valley Christian Schools has teamed up with EdTech for your online book store! Here's how it works: Your school's online book store opens on August 23rd, 2017, at cvc.shelfit.com.

More information

PlanWell 4.0 User Guide

PlanWell 4.0 User Guide PlanWell 4.0 User Guide Contents Finding Planwell and Logging On 2 Planwell Access Portals 2 Document Selection 3 Build a Set 4 Most Current Set 4 Custom Packages 4 Issue Tree 5 Standard Order Process

More information

The software lifecycle and its documents

The software lifecycle and its documents The software lifecycle and its documents Supplementary material for Software Architecture course B. Meyer, May 2006 Lifecycle models Origin: Royce, 1970, Waterfall model Scope: describe the set of processes

More information

1: Specifying Requirements with Use Case Diagrams

1: Specifying Requirements with Use Case Diagrams Outline UML Design Supplement 1: Specifying Requirements with Use Case Diagrams Introduction Use Case Diagrams Writing Use Cases Guidelines for Effective Use Cases Slide adapted from Eran Toch s lecture

More information

If you then enter the relevant address, leaving the password field blank and then select the Login/Register button.

If you then enter the relevant  address, leaving the password field blank and then select the Login/Register button. PARENTS GUIDE Introduction Epraise gives you the opportunity to see how well your child/children are getting on and what s going on at the school. This guide will show you how to register an account online,

More information

Lecture 34 SDLC Phases and UML Diagrams

Lecture 34 SDLC Phases and UML Diagrams That Object-Oriented Analysis and Design Prof. Partha Pratim Das Department of Computer Science and Engineering Indian Institute of Technology-Kharagpur Lecture 34 SDLC Phases and UML Diagrams Welcome

More information

Amazon Business End User FAQ Library

Amazon Business End User FAQ Library Amazon Business End User FAQ Library Getting Started How do I register as part of the Campus Marketplace Amazon Business account? Please read the following instructions prior to accessing Amazon Business.

More information

Dilbert Scott Adams. CSc 233 Spring 2012

Dilbert Scott Adams. CSc 233 Spring 2012 Dilbert Scott Adams CSc 233 Spring 2012 Dilbert Scott Adams CSc 233 Spring 2012 2 Dilbert Scott Adams CSc 233 Spring 2012 3 prerequisites CSc 233 Spring 2012 I thought we had agreed long ago that the Department

More information

USER-CENTERED DESIGN KRANACK / DESIGN 4

USER-CENTERED DESIGN KRANACK / DESIGN 4 USER-CENTERED DESIGN WHAT IS USER-CENTERED DESIGN? User-centered design (UCD) is an approach to design that grounds the process in information about the people who will use the product. UCD processes focus

More information

Introduction to Programming

Introduction to Programming CHAPTER 1 Introduction to Programming Begin at the beginning, and go on till you come to the end: then stop. This method of telling a story is as good today as it was when the King of Hearts prescribed

More information

TestOut EduApp Integration Guide

TestOut EduApp Integration Guide 1 TestOut EduApp Integration Guide Revised 11-21-2018 2 TABLE OF CONTENTS Setting up the TestOut EduApp in Canvas (Canvas Admins)... 3 Creating a Developer Key... 3 Configuring the EduApp... 6 Creating

More information