University of Toronto. CSC340S - Information Systems Analysis and Design

Size: px
Start display at page:

Download "University of Toronto. CSC340S - Information Systems Analysis and Design"

Transcription

1 csc340 Information Systems Analysis and Design page 1/12 University of Toronto Faculty of Arts and Science Department of Computer Science CSC340S - Information Systems Analysis and Design Spring 2004 John Mylopoulos April-May Examination Calculators are the only Aids Allowed Duration: 2 hours Make sure that your examination booklet has 12 pages (including this one). Write your answers in the space provided. This examination counts for 35% of your final mark. Name: (Please underline your last ) Student Number: Question Marks 1. /15 2. /15 3. /20 4. /15 5. /10 6. /25 Total /100

2 csc340 Information Systems Analysis and Design page 2/12 1. [Entity-Relationship Diagrams; 15 marks] A telephone company decides to computerize its customer information system that keeps track of customers, their addresses, telephone numbers and rented telephone devices, also their monthly bills. Draw an entity-relationship diagram for the customer database, assuming the following: There are individual and corporate customers. Each individual customer has at least one and up to three residential addresses, but a residential address can have up to ten customers. For each customer, a residential address has one to two associated telephone numbers and zero to five rented telephone devices (some customers own the telephone devices they use at home). A bill is sent each month of the year for each customer address and includes charges for all telephone numbers and all rented devices at that address. Corporate customers have one to ten commercial addresses, one to one thousand telephone numbers, and one to one thousand rented devices. Commercial addresses can have any number of (corporate) customers. All customers have a and a unique account number. Telephone devices are identified by their serial number. Addresses are identified by their street number, street, and city. Make sure that your solution is an Entity-Relationship diagram, NOT a UML class diagram! account# str# strname Individual Customer (1,3) phone# (1,2) amount device# mon-yr (1,5) bill ownsphonesat (0,N) (0,10) Residential Address city Corporate (1,10) amount device# mon-yr phone# bill (1,1000) (1,1000) (0,N) (0,10) ownsphonesat Commercial

3 csc340 Information Systems Analysis and Design page 3/12 2. [Constraint Language; 15 marks] Consider the following class diagram student# Student 0..* studiesat 1 University city budget 0..* in part 1 employedby 1 Department noofstudents 1..* 1 teachesin 0..* 0..* Professor rank salary promote() Express the following constraints in CL: [Part a; 4 marks] No two universities have the same and are in the same city University: Forall x[university(x) and x. = self. and x.city = self.city implies x = self] [Part b; 4 marks] The sum of all professor salaries is less than the budget of the university they are employed by University: sum(self.employedby.salary) < self.budget [Part c; 4 marks] A professor with rank equal to fullprof can t be promoted; moreover, when a professor is promoted her rank changes and her salary increases University::promote() pre: self.rank fullprof post: self.rank self.rank@pre and self.salary > self.salary@pre [Part d; 3 marks] The value of the noofstudents attribute of Department is equal to the number of students in that department Department: size(self.in) = self.noofstudents

4 csc340 Information Systems Analysis and Design page 4/12 3. [Database Design; 20 marks] Consider the Entity-Relationship (ER) schema shown below which describes the contents of a student database. Unless otherwise stated, attributes are assumed to be singlevalued. In addition, you may assume that database operations (register, graduate) treat undergraduate and graduate students the same way. student# Undergrad Student (0,8) faculty course# year term degree (5,5) (1,3) (0,N) registeredfor Semester (0,N) Graduate (0,4) course# (0,3) faculty degree (1,2) registeredfor [Part a; 10 marks] Draw an ER schema that captures the same information as the schema above, but does not have any generalization relationships, nor any multi-valued, or composite attributes. course# Course (0,N) student# sttype enrolment year term Student (0,8) st-reg (0,5) (1,1) Registration (1,1) sem-reg (0,N) Semester reg-deg Degree faculty

5 csc340 Information Systems Analysis and Design page 5/12 [Part b; 10 marks] Give a relational schema that captures the same information as your ER schema of part (a). Show clearly keys for each relation in your schema. Sample solution Student(student#,,stType) Semester(year,term) -- could be omitted Registration(student#,year,term,,faculty) Enrolment(student#, year,term,course#) Degree(student#, year,term,degname,degfaculty)

6 csc340 Information Systems Analysis and Design page 6/12 4. [User Interfaces; 15 marks] Draw a state diagram that specifies the dialogue structure of a login session. The session begins when the user clicks on a login button. Then the system prompts the user for her and password, checks that the user has authorization and logs the user in. If there is a problem with the or password, the user is given one more chance to input a valid and password, otherwise the login program goes into a 10-minute time-out, then returns to idle mode. While the user is logged in, she is allowed to execute different applications by clicking on appropriate buttons. When the user clicks the log out button, the session terminates. login/prompt Wait for input ame +passwd Check for authorization [No?]/prompt Wait for input [Yes?] +passwd Wait [Yes?] Check for authorization logout chooseapp /execute [No?]/lockOut [10mins passed?] Wait 10mins It is OK to loop back to the start state instead of an end state.

7 csc340 Information Systems Analysis and Design page 7/12 5. [Feasibility Study; 10 marks] Consider a project that involves building a web-based e-commerce system for a video store. The expenses for the project are estimated to be $20,000 for development costs, $5,000 for hardware and software (all in year 0), and annual costs of $5,000 for maintenance (for year 1 and thereafter). The new income to be generated by the system is estimated to be $5,000 for year 1, with an increase of 50% in income for subsequent years. Estimate the net income/loss of this project at the end of year 2. You may assume that the present value for one year is 0.9. Year 0 Year 1 Year 2 Development costs ($20,000) Hardware/Software ($5,000) Maintainance ($4,500) ($4,050) Income $4,500 $6,075 Totals ($25,000) ($25,000) ($22,975)

8 csc340 Information Systems Analysis and Design page 8/12 6. [Short Questions; 25 marks total] [Part a: Feasibility Study; 4 marks] What is risk analysis? Give two examples of risk factors. During a feasibility study, risk analysis compares alternatives under consideration from the point of view of risk. Examples of risk factors: Poorly understood requirements at scheduling time, no technology standards. [Part b: Software Architectures; 5 marks] Describe the process by which a server delivers services to clients in a client-server architecture. Server establishes connection with each client, accepts messages from each client and responds to each. [Part c: Computing Platform; 4 marks] Why are personnel considerations more important than hardware, software or network considerations in selecting a computing platform? Personnel costs are often higher than hardware, software and network costs combined.

9 csc340 Information Systems Analysis and Design page 9/12 [Part d: Decision Trees; 6 marks] Consider the decision whether to take a course. First, you check to see if it is required for the degree program you are registered under. If yes, then you check to see if you have all the prerequisites, and if so you add the course to your schedule; if not, then you add one of the missing prerequisites to your schedule. If the course is not required, you check to see if it is interesting. If it s not, you decide not to take it, otherwise you take it. Draw a decision tree for this decision. Take course X? yes Taken prereqs? yes Take it! no Take a prereq! Required? no Take it! Interesting? yes no Taken prereqs? Don t yes no take! Don t take! Can be omitted [Part e: State Diagrams; 6 marks] Give a state diagram that prints YES when it receives events E 1, E 2, and E 3 and outputs NO for all other combinations of input events. You may assume that the state diagram has a special variable EVENT that takes as value the current event that triggered a transition, and is reset to NIL once a transition has been completed.

10 csc340 Information Systems Analysis and Design page 10/12 [Scratch paper]

11 csc340 Information Systems Analysis and Design page 11/12 [Scratch paper]

12 csc340 Information Systems Analysis and Design page 12/12 [Scratch paper]

University of Toronto. CSC340S - Information Systems Analysis and Design

University of Toronto. CSC340S - Information Systems Analysis and Design csc340 Information Systems Analysis and Design page 1/12 University of Toronto Faculty of Arts and Science Department of Computer Science CSC340S - Information Systems Analysis and Design Spring 2002 John

More information

XV. The Entity-Relationship Model

XV. The Entity-Relationship Model XV. The Entity-Relationship Model The Entity-Relationship Model Entities, Relationships and Attributes Cardinalities, Identifiers and Generalization Documentation of E-R Diagrams and Business Rules Acknowledgment:

More information

Database Systems. A Practical Approach to Design, Implementation, and Management. Database Systems. Thomas Connolly Carolyn Begg

Database Systems. A Practical Approach to Design, Implementation, and Management. Database Systems. Thomas Connolly Carolyn Begg Database Systems A Practical Approach to Design, Implementation, and Management For these Global Editions, the editorial team at Pearson has collaborated with educators across the world to address a wide

More information

Conceptual Modeling in ER and UML

Conceptual Modeling in ER and UML Courses B0B36DBS, A7B36DBS: Database Systems Practical Classes 01 and 02: Conceptual Modeling in ER and UML Martin Svoboda 21. and 28. 2. 2017 Faculty of Electrical Engineering, Czech Technical University

More information

PLEASE HAND IN UNIVERSITY OF TORONTO Faculty of Arts and Science

PLEASE HAND IN UNIVERSITY OF TORONTO Faculty of Arts and Science PLEASE HAND IN UNIVERSITY OF TORONTO Faculty of Arts and Science DECEMBER 2011 EXAMINATIONS CSC 343 H1F Instructors: Horton and Papangelis Duration 3 hours PLEASE HAND IN Examination Aids: None Student

More information

Characteristic of the Proposed System. Characteristic of the Proposed System DFD. ER Diagram. Functions used DISADVANTAGES OF PRESENT WORKING SYSTEM

Characteristic of the Proposed System. Characteristic of the Proposed System DFD. ER Diagram. Functions used DISADVANTAGES OF PRESENT WORKING SYSTEM Table of contents:- Project Description Functions used Project Vision Feasibility Study Working Of Present System DISADVANTAGES OF PRESENT WORKING SYSTEM Characteristic of the Proposed System Characteristic

More information

2004 John Mylopoulos. The Entity-Relationship Model John Mylopoulos. The Entity-Relationship Model John Mylopoulos

2004 John Mylopoulos. The Entity-Relationship Model John Mylopoulos. The Entity-Relationship Model John Mylopoulos XVI. The Entity-Relationship Model The Entity Relationship Model The Entity-Relationship Model Entities, Relationships and Attributes Cardinalities, Identifiers and Generalization Documentation of E-R

More information

UNIVERSITY CONTROLLER OFFICE STANDARD OPERATING PROCEDURES

UNIVERSITY CONTROLLER OFFICE STANDARD OPERATING PROCEDURES UNIVERSITY CONTROLLER OFFICE STANDARD OPERATING PROCEDURES ACCOUNTING FOR EDUCATIONAL OPPORTUNITY FUND March 15, 2019 Table of Contents 1. Overview of Educational Opportunity Fund 2. Purpose of EOF Procedure

More information

1/24/2012. Chapter 7 Outline. Chapter 7 Outline (cont d.) CS 440: Database Management Systems

1/24/2012. Chapter 7 Outline. Chapter 7 Outline (cont d.) CS 440: Database Management Systems CS 440: Database Management Systems Chapter 7 Outline Using High-Level Conceptual Data Models for Database Design A Sample Database Application Entity Types, Entity Sets, Attributes, and Keys Relationship

More information

PLEASE HAND IN UNIVERSITY OF TORONTO Faculty of Arts and Science

PLEASE HAND IN UNIVERSITY OF TORONTO Faculty of Arts and Science PLEASE HAND IN UNIVERSITY OF TORONTO Faculty of Arts and Science APRIL 2017 EXAMINATIONS CSC 104 H1S Instructor(s): G. Baumgartner Duration 3 hours PLEASE HAND IN No Aids Allowed Student Number: Last (Family)

More information

Student Registration Override Procedure

Student Registration Override Procedure Student Registration Override Procedure At the beginning of the semester, students sometimes are unable to add classes for various reasons. Many times, they cannot get into a course because it is closed

More information

Roadmap of This Lecture. Weak Entity Sets Extended E-R Features Reduction to Relation Schemas Database Design UML*

Roadmap of This Lecture. Weak Entity Sets Extended E-R Features Reduction to Relation Schemas Database Design UML* E-R Model (II) 1 Roadmap of This Lecture Weak Entity Sets Extended E-R Features Reduction to Relation Schemas Database Design UML* 2 Weak Entity Sets An entity set that does not have a primary key is referred

More information

Work Instruction. Purpose Use this procedure to submit your annual offence declaration or to review previous declaration(s).

Work Instruction. Purpose Use this procedure to submit your annual offence declaration or to review previous declaration(s). icod Offence Declarations Web Application Purpose Use this procedure to submit your annual offence declaration or to review previous declaration(s). Trigger Perform this procedure when so informed by the

More information

Registration Made Simple with Flex Reg

Registration Made Simple with Flex Reg Registration Made Simple with Flex Reg Returning students and new students who have completed assessment can use the Flexible Registration system (FlexReg) to search, plan a schedule and register for credit

More information

Access Online. Navigation Basics. User Guide. Version 2.2 Cardholder and Program Administrator

Access Online. Navigation Basics. User Guide. Version 2.2 Cardholder and Program Administrator Access Online Navigation Basics User Guide Version 2.2 Cardholder and Program Administrator Contents Introduction... 1 Access Online Overview... 2 How We Gather and Manage Transaction Data in Access Online...

More information

eformat Parent Portal User Guide Electronic Free or Reduced Meal Application Tracking

eformat Parent Portal User Guide Electronic Free or Reduced Meal Application Tracking eformat Parent Portal User Guide Electronic Free or Reduced Meal Application Tracking NOTE: You must enter your student s Student ID, first name, and last name exactly as it is recorded in the Student

More information

Using Canvas with TurningPoint 5

Using Canvas with TurningPoint 5 Using Canvas with TurningPoint 5 The integration with Canvas allows for Turning Technologies users to leverage response devices in class to easily collect student achievement data. Very simply one can

More information

Entity Relationship Data Model. Slides by: Shree Jaswal

Entity Relationship Data Model. Slides by: Shree Jaswal Entity Relationship Data Model Slides by: Shree Jaswal Topics: Conceptual Modeling of a database, The Entity-Relationship (ER) Model, Entity Types, Entity Sets, Attributes, and Keys, Relationship Types,

More information

Tutorial 9. Review. Data Tables and Scenario Management. Data Validation. Protecting Worksheet. Range Names. Macros

Tutorial 9. Review. Data Tables and Scenario Management. Data Validation. Protecting Worksheet. Range Names. Macros Tutorial 9 Data Tables and Scenario Management Review Data Validation Protecting Worksheet Range Names Macros 1 Examine cost-volume-profit relationships Suppose you were the owner of a water store. An

More information

How to Use Your EV Connect Account

How to Use Your EV Connect Account How to Use Your EV Connect Account Accessing the EV Connect Network To access the EV Connect network, point your web browser to http://network.evconnect.com. This brings you to the account login page.

More information

To register and set up your access. Click the register button the next screen you see will look like this:

To register and set up your access. Click the register button the next screen you see will look like this: Online Registration Help When you click the button to register online, you will be taken to our Dance Studio management system where you will be able: To register as a first time user and 1. Set yourself

More information

ShelbyNext Financials: Accounts Payable Best Practices (Course #N210)

ShelbyNext Financials: Accounts Payable Best Practices (Course #N210) ShelbyNext Financials: Accounts Payable Best Practices (Course #N210) Presented by: Carmen Dea, Shelby Consultant 2017 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks

More information

VIEW OTHER QUESTION PAPERS

VIEW OTHER QUESTION PAPERS VIEW OTHER QUESTION PAPERS E B4E0562 Reg No.: Name: Total Pages: 2 APJ ABDUL KALAM TECHNOLOGICAL UNIVERSITY FOURTH SEMESTER B.TECH DEGREE EXAMINATION, JULY 2017 Course Code: CS208 Course Name: PRINCIPLES

More information

Steps to Complete an Online CAP Application

Steps to Complete an Online CAP Application Steps to Complete an Online CAP Application 1. Visit usi.edu/cap/apply and click the blue Apply button. CAP students only need to apply ONE TIME. A. If you haven t created an application account, you will

More information

Nelnet Enterprise Student Account Online Billing and Payment System. Undergraduate Student User Guide

Nelnet Enterprise Student Account Online Billing and Payment System. Undergraduate Student User Guide Nelnet Enterprise Student Account Online Billing and Payment System Undergraduate Student User Guide Student Access You may access Nelnet Enterprise by logging on to your Secure Hollins HIS account at

More information

REFERENCE GUIDE TO THE STUDENT CENTER MY.CHAPMAN.EDU

REFERENCE GUIDE TO THE STUDENT CENTER MY.CHAPMAN.EDU REFERENCE GUIDE TO THE STUDENT CENTER MY.CHAPMAN.EDU Access to the Student Center is provided through the Student Self Service link at my.chapman.edu. Enter your regular Chapman User ID and Password. Click

More information

Chapter 7: Entity-Relationship Model

Chapter 7: Entity-Relationship Model Chapter 7: Entity-Relationship Model, 7th Ed. See www.db-book.com for conditions on re-use Chapter 7: Entity-Relationship Model Design Process Modeling Constraints E-R Diagram Design Issues Weak Entity

More information

Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition. Chapter 7 Data Modeling with Entity Relationship Diagrams

Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition. Chapter 7 Data Modeling with Entity Relationship Diagrams Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition Chapter 7 Data Modeling with Entity Relationship Diagrams Objectives In this chapter, students will learn: The

More information

Process Document Defining Expressions. Defining Expressions. Concept

Process Document Defining Expressions. Defining Expressions. Concept Concept Expressions are calculations that PeopleSoft Query performs as part of a query. Use them when you must calculate a value that PeopleSoft Query does not provide by default (for example, to add the

More information

DELIVERY SERVICE WEB SITE (DSWEB) PROCEDURES MANUAL

DELIVERY SERVICE WEB SITE (DSWEB) PROCEDURES MANUAL DELIVERY SERVICE WEB SITE (DSWEB) BGE - SUPPLIER EXCHANGE OF INFORMATION FOR GAS CHOICE PROGRAMS Table of Contents I. Introduction... 3 II. System Requirements... 3 III. Requesting Access to DSWeb... 3

More information

International Affairs Program Data Booklet

International Affairs Program Data Booklet International Affairs Program Data Booklet Term 007 Quality Enhancement Review prepared by the Office of Institutional Research, Budget & Analysis Department International Affairs, Asian Studies, Russian

More information

University of Toronto Department of Computer Science

University of Toronto Department of Computer Science University of Toronto Department of Computer Science CSC340S - Information Systems Analysis and Design March 14, 2003 John Mylopoulos Assignment 3: Detailed Design for an Information System Due Date: 12:00midnight

More information

Member Access User Guide Edit My Profile

Member Access User Guide Edit My Profile UMN.8.015 Revised Date: 10/7/2008 Edit My Profile 3.0 EDIT MY PROFILE 3.1 Overview Click Edit My Profile to update your email address, phone number, or change your Password. Simply enter the new information.

More information

QuikApps Parent Portal

QuikApps Parent Portal QuikApps Parent Portal Electronic Free or Reduced Meal Application Tracking To create a parent or emancipated student user account for access to QuikApps, you need to click the Register link on the site

More information

STEP 1. Go to the CNR Virtual HelpDesk at Then select Student Network Accounts

STEP 1. Go to the CNR Virtual HelpDesk at   Then select Student Network Accounts STEP 1 Go to the CNR Virtual HelpDesk at www.cnr.edu/helpdesk Then select Student Network Accounts Read the Acceptable Use Policy and then click Agree STEP 2 Please make note of your username as you will

More information

CS 4604: Introduction to Database Management Systems. B. Aditya Prakash Lecture #5: Entity/Relational Models---Part 1

CS 4604: Introduction to Database Management Systems. B. Aditya Prakash Lecture #5: Entity/Relational Models---Part 1 CS 4604: Introduction to Database Management Systems B. Aditya Prakash Lecture #5: Entity/Relational Models---Part 1 E/R: NOT IN BOOK! IMPORTANT: Follow only lecture slides for this topic! Differences

More information

User ID and Password Information. What is My User ID?

User ID and Password Information. What is My User ID? User's Guide for Campus Connection User ID and Password Information If you are a student, your User ID is a "W" followed by a 7-digit number. Your User ID and Password for Campus Connection were sent to

More information

The Blackboard 5.5 Student Guide

The Blackboard 5.5 Student Guide The Blackboard 5.5 Student Guide Release Version 2.1 Spring 2003 Semester Chris Matthew Tkaczyk Title III Office The Blackboard 5.5 Student Guide Table of Contents What is Internet Explorer?... 1 How do

More information

1. Go to and then click on the Bookstore link. Select Faculty Adoptions.

1. Go to   and then click on the Bookstore link. Select Faculty Adoptions. Online Textbook Adoption Process 1. Go to www.matc.edu and then click on the Bookstore link. Select Faculty Adoptions. 2. If you have not done so already, register yourself by selecting Register Here.

More information

Nagasaki University NU-Web System. Nagasaki University. Student Manual ver.2.1. March 4, Student Affairs Information Promotion Office

Nagasaki University NU-Web System. Nagasaki University. Student Manual ver.2.1. March 4, Student Affairs Information Promotion Office Nagasaki University NU-Web System Student Manual ver.2.1 March 4, 2010 Student Affairs Information Promotion Office Nagasaki University [Contents] 1. What Is the NU-Web System?- -- 1 2. Cautions for Users

More information

WebAdvisor Student Guide

WebAdvisor Student Guide WebAdvisor Student Guide WebAdvisor Student Guide Contents: Establishing a User ID & Password 2 WebAdvisor Home Page Overview 7 Current Students Menu Overview 8 How to Search for and/or Enroll in a Class

More information

MS in Computer Sciences & MS in Software Engineering

MS in Computer Sciences & MS in Software Engineering SUKKUR INSTITUTE OF BUSINESS ADMINISTRATION Merit-Quality-Excellence Schema of Studies for MS in Computer Sciences & MS in Software Engineering (2016-2017) DEPARTMENT OF COMPUTER SCIENCE Schema of Studies

More information

TransUnion Direct Administrator Guide

TransUnion Direct Administrator Guide TransUnion Direct Administrator Guide Administrator Guide Topics Welcome to TransUnion Direct... 2 Your Role and Responsibilities... 5 Getting Started... 6 Managing Users... 8 Managing a Company... 15

More information

SIS Student Information System

SIS Student Information System SIS Student Information System Hebrew Union College Jewish Institute of Religion Student User s Manual (SIS) March 26, 2015 Table of Contents 1. FERPA reminder... 3 2. Locate HUC-JIR websites... 4 3. Introduction

More information

Faculty Administrator. Last Updated: March 31, 2015

Faculty Administrator. Last Updated: March 31, 2015 Faculty Administrator Last Updated: March 31, 2015 Table of Contents Introduction... 3 Roles... 4 Login... 5 Main Screen... 6 Menu... 7 Reviewer Administration... 8 Manage Reviewers... 8 Search for an

More information

MATH 099 HOMEWORK TWO

MATH 099 HOMEWORK TWO MATH 099 HOMEWORK TWO STUDENT S NAME 1) Matthew needs to rent a car for 1 day. He will be charged a daily fee of $30.00 in addition to 5 cents for every mile he drives. Assign the variable by letting x

More information

SUMMER Early Registration Begins On... Summer Hours. Tuition (per child): JUNE 2019

SUMMER Early Registration Begins On... Summer Hours. Tuition (per child): JUNE 2019 SUMMER 2019 JUNE 2019 SUN MON TUE WED THU FRI SAT 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 30 24 25 26 27 28 29 JULY 2019 SUN MON TUE WED THU FRI SAT 1 2 3 4 5 6 7 8 9 10 11 12 13 14

More information

CS 338 The Enhanced Entity-Relationship (EER) Model

CS 338 The Enhanced Entity-Relationship (EER) Model CS 338 The Enhanced Entity-Relationship (EER) Model Bojana Bislimovska Spring 2017 Major research Outline EER model overview Subclasses, superclasses and inheritance Specialization and generalization Modeling

More information

CMSC 424 Database design Lecture 3: Entity-Relationship Model. Book: Chap. 1 and 6. Mihai Pop

CMSC 424 Database design Lecture 3: Entity-Relationship Model. Book: Chap. 1 and 6. Mihai Pop CMSC 424 Database design Lecture 3: Entity-Relationship Model Book: Chap. 1 and 6 Mihai Pop Database Design Steps Entity-relationship Model Typically used for conceptual database design info Conceptual

More information

Nagasaki University NU-Web System. Nagasaki University. Student Manual Version 6.1. December 16, 2010

Nagasaki University NU-Web System. Nagasaki University. Student Manual Version 6.1. December 16, 2010 Nagasaki University NU-Web System Student Manual Version 6.1 December 16, 2010 December 2010 Student Affairs Information Promotion Office Nagasaki University [Contents] 1. What Is the NU-Web System?- --

More information

Palm Beach Masters Instructions for Online Enrollment of Automated Credit Card Payments

Palm Beach Masters Instructions for Online Enrollment of Automated Credit Card Payments Palm Beach Masters Instructions for Online Enrollment of Automated Credit Card Payments Palm Beach County now gives you an option to pay our monthly masters swimming dues via their new automated credit

More information

INSTITUTE OF INFORMATION TECHNOLOGY UNIVERSITY OF DHAKA

INSTITUTE OF INFORMATION TECHNOLOGY UNIVERSITY OF DHAKA INSTITUTE OF INFORMATION TECHNOLOGY UNIVERSITY OF DHAKA http://www.iit.du.ac.bd/ BACHELOR OF SCIENCE IN SOFTWARE ENGINEERING (BSSE) 1. Institute of Information Technology (IIT) Institute of Information

More information

SIS Student Information System

SIS Student Information System SIS Student Information System Hebrew Union College Jewish Institute of Religion Student User s Manual (SIS) June 20, 2017 Table of Contents 1. FERPA reminder... 3 2. Locate HUC-JIR websites... 4 3. Introduction

More information

Thank you for your interest in studying at HU University of Applied Sciences Utrecht! We look forward to welcoming you to our university.

Thank you for your interest in studying at HU University of Applied Sciences Utrecht! We look forward to welcoming you to our university. 1 Dear Student, Thank you for your interest in studying at HU University of Applied Sciences Utrecht! We look forward to welcoming you to our university. With this guide we would like to inform you about

More information

OrgSync Registration Help

OrgSync Registration Help OrgSync Registration Help Getting started Returning to your registration after closing it Highlights of registration: Faculty advisor information Uploading your roster Space allocation requests Submitting

More information

Benefit Enrollment User Guide

Benefit Enrollment User Guide Benefit Enrollment User Guide Table of Contents Page First Time User Registration 2 4 Enrollment Instructions 5 17 Need Help? 18 1 First Time User - Step 1 Your Benefits Are Mobile Your benefit information

More information

Using the Voyager Library Interface Process Georgia Enhanced Banner Student and Financial Aid Systems User Documentation

Using the Voyager Library Interface Process Georgia Enhanced Banner Student and Financial Aid Systems User Documentation Using the Georgia Enhanced Banner Student and Financial Aid Systems User Documentation Version 8.13 May 2012 This page left blank to facilitate front/back printing. Table of Contents (ZORVLIB)... 1 Parameters:...

More information

Third Annual Oklahoma High Performance Computing Competition

Third Annual Oklahoma High Performance Computing Competition Tandy School of Computer Science Third Annual Oklahoma High Performance Computing Competition When: 10:00 AM 3:00 PM, Saturday, April 21, 2018 Where: Keplinger Hall, The University of Tulsa, Tulsa, OK,

More information

The American University of Paris - 5, Boulevard de la Tour-Maubourg, Paris. Course Registration Guide Visiting Students Summer 2019

The American University of Paris   - 5, Boulevard de la Tour-Maubourg, Paris. Course Registration Guide Visiting Students Summer 2019 The American University of Paris www.aup.edu - 5, Boulevard de la Tour-Maubourg, 75007 Paris Course Registration Guide Visiting Students Summer 2019 How to Register online: login-in Use Internet Explorer

More information

Entity-Relationship Modelling. Entities Attributes Relationships Mapping Cardinality Keys Reduction of an E-R Diagram to Tables

Entity-Relationship Modelling. Entities Attributes Relationships Mapping Cardinality Keys Reduction of an E-R Diagram to Tables Entity-Relationship Modelling Entities Attributes Relationships Mapping Cardinality Keys Reduction of an E-R Diagram to Tables 1 Entity Sets A enterprise can be modeled as a collection of: entities, and

More information

Event Management Systems (EMS)

Event Management Systems (EMS) Event Management Systems (EMS) http://calendar.lamission.edu Table of Contents A. How to create an Event Management Systems account page 2 3 B. How to Request Available Space page 4 11 C. Edit or Cancel

More information

MAUI Final Exam Assignment Needs Submission Instructions for Academic Department Administrators

MAUI Final Exam Assignment Needs Submission Instructions for Academic Department Administrators MAUI Final Exam Assignment Needs Submission Instructions for Academic Department Administrators 1.) Go to MAUI (Made At the University of Iowa student information system) at http://www.maui.uiowa.edu 2.)

More information

Chapter 7: Entity-Relationship Model. Chapter 7: Entity-Relationship Model

Chapter 7: Entity-Relationship Model. Chapter 7: Entity-Relationship Model Chapter 7: Entity-Relationship Model Database System Concepts, 6 th Ed. See www.db-book.com for conditions on re-use Chapter 7: Entity-Relationship Model Design Process Modeling Constraints E-R Diagram

More information

Week 4 Tute/Lab Entity-Relationship (ER) Model

Week 4 Tute/Lab Entity-Relationship (ER) Model ISYS1055/1057 Database Concepts 2018 Semester 2 Week 4 Tute/Lab Entity-Relationship (ER) Model The objectives of this tute/lab session are: Learn about the entity-relationship model; Learn how to build

More information

Application Process Page 1 of 12. Application Process

Application Process Page 1 of 12. Application Process Page 1 of 12 Application Process Login Initiate an Online Application Process Payment of Application Fees Uploading Required Documentation Cloning Unlocking Program Related Applications Initial Grant of

More information

TO: Doctoral Students Expected to Register in EDD 1006 for Spring FROM: R. H. Red Owl, Ph.D., Professor

TO: Doctoral Students Expected to Register in EDD 1006 for Spring FROM: R. H. Red Owl, Ph.D., Professor TO: Doctoral Students Expected to Register in EDD 1006 for Spring 2015 FROM: R. H. Red Owl, Ph.D., Professor (redowl@liu.edu) SUBJECT: EDD 1006 Free Statistics Webinar and Webinar Preparation Session DATE:

More information

User Guide. Store Manager s Guide to efollett.com Website Maintenance

User Guide. Store Manager s Guide to efollett.com Website Maintenance User Guide Store Manager s Guide to efollett.com Website Maintenance Notice Store Manager s Guide to efollett.com Website Maintenance Follett Higher Education Group ( Follett ) provides this manual as

More information

SIGN UP FOR AN AUTOMATIC PAYMENT PLAN

SIGN UP FOR AN AUTOMATIC PAYMENT PLAN SIGN UP FOR AN AUTOMATIC PAYMENT PLAN When you go to www.nyack.edu/sfs/payplan you should see the following: Click on the Sign up for a PAYMENT PLAN option. Upon clicking, you should see the following:

More information

UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Combining Data Your Way

UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Combining Data Your Way UAccess ANALYTICS Next Steps: Working with Bins, Groups, and Calculated Items: Arizona Board of Regents, 2014 THE UNIVERSITY OF ARIZONA created 02.07.2014 v.1.00 For information and permission to use our

More information

Online Registration. CAPP courses are actual UW Oshkosh college courses!

Online Registration. CAPP courses are actual UW Oshkosh college courses! Online Registration By completing this process, you will be enrolling in these courses for college credit Grades are final and permanent on transcript As a UW Oshkosh student you must follow our policies,

More information

2015 KPS Factory Service Training Schedule January-June. *Industrial Gen and Controls. Commercial Marine Certification

2015 KPS Factory Service Training Schedule January-June. *Industrial Gen and Controls. Commercial Marine Certification 2015 KPS Factory Service Training Schedule January-June Jan 19-23 Jan 26-30 Feb 18-20 March 3-5 March 9-13 March 16-20 April 8-10 April 21-22 April 27-28 April 29-30 May 4-8 May 11-15 *Industrial Generator

More information

Intro to DB CHAPTER 6

Intro to DB CHAPTER 6 Intro to DB CHAPTER 6 DATABASE DESIGN &THEER E-R MODEL Chapter 6. Entity Relationship Model Design Process Modeling Constraints E-R Diagram Design Issues Weak Entity Sets Extended E-R Features Design of

More information

Tutorial notes on. Object relational structural patterns

Tutorial notes on. Object relational structural patterns Tutorial notes on Object relational structural patterns Dr. C. Constantinides, P.Eng. Computer Science and Software Engineering Concordia University Page 1 of 14 Exercise 1. a) Briefly describe what is

More information

GUJARAT TECHNOLOGICAL UNIVERSITY

GUJARAT TECHNOLOGICAL UNIVERSITY Seat No.: Enrolment No. GUJARAT TECHNOLOGICAL UNIVERSITY BE - SEMESTER III (NEW) - EXAMINATION SUMMER 2017 Subject Code: 21303 Date: 02/06/2017 Subject Name: Database Management Systems Time: 10:30 AM

More information

FCDS IDEA USER ACCOUNT Page 1 2. FACILITY ACCESS ADMINISTRATOR (FAA) Page 3 5. FCDS ABSTRACTOR CODE Page 6 9

FCDS IDEA USER ACCOUNT Page 1 2. FACILITY ACCESS ADMINISTRATOR (FAA) Page 3 5. FCDS ABSTRACTOR CODE Page 6 9 FCDS IDEA USER ACCOUNT Page 1 2 p. 1 p. 2 FCDS IDEA User Account Set up Password Reset User ID Retrieval User Account Renewal FACILITY ACCESS ADMINISTRATOR (FAA) Page 3 5 p. 3 FCDS Requirements Establishing

More information

This tutorial explains the process for entering effort in the new FACET module.

This tutorial explains the process for entering effort in the new FACET module. Entering Effort Overview: Understanding the FACET Entering Effort Process The University has an effort reporting system that is the tool to ensure compliance to the state's 12-hour law as well as to satisfy

More information

Membership, Credit and Service Application

Membership, Credit and Service Application Membership, Credit and Service Application 510 Broadway PO Box 136 Abercrombie, ND 58001 T: 701-553-8309 866-553-8309 F: 701-553-8396 www.redrivercomm.com membersupport@redrivercomm.com Date Membership

More information

Name: utorid: U of T

Name: utorid: U of T UNIVERSITY OF TORONTO Faculty of Arts and Science term test #1, Version 1 CSC1481S Date: Wednesday February 7, 6:10 7:00pm Duration: 50 minutes Instructor(s): AbdulAziz Alhelali Arnamoy Bhattacharyya Danny

More information

CS3200 Database Design Spring 2018 Derbinsky. Entity-Relationship (ER) Diagrams. Lecture 7

CS3200 Database Design Spring 2018 Derbinsky. Entity-Relationship (ER) Diagrams. Lecture 7 Lecture 7 . Context Outline Design & Implementation Process 2. Goals of Conceptual Design 3. Entity-Relationship (ER) Model 4. One ER Diagrammatic otation 5. Requirements Elicitation 6. Approaches to Conceptual

More information

Course Registration Guide Visiting Students Summer 2018

Course Registration Guide Visiting Students Summer 2018 Course Registration Guide Visiting Students Summer 2018 How to Register online: step by step Use Internet Explorer or Mozilla Firefox only (the portal is not compatible with Safari, Chrome, etc.) If you

More information

Contact Information: How do I get started?

Contact Information: How do I get started? eportfolio Lab Hours: Mon: 9:00am 1:00pm Tues: 2:00pm 7:00pm Wed: 12:00pm 5:00pm Thurs.: 2:00pm 7:00pm Fri: 12:00pm 5:00pm Sat: 1:00pm 5:00pm Lab Location: G606 Contact Information: 718-260-5243 itec@citytech.cuny.edu

More information

Student access to OracleWeb. June

Student access to OracleWeb. June Student access to OracleWeb June 2010 1 Access OracleWeb from the Rockhurst University web page (www.rockhurst.edu). Go to Current Students page. June 2010 2 From the Current Students Page, click on Online

More information

Obtain Energy Meter Usage Data - CenterPoint

Obtain Energy Meter Usage Data - CenterPoint Obtain Energy Meter Usage Data - CenterPoint You will need energy data that covers all of the energy used by all building systems and occupants during the time period from January 1 to December 31 of the

More information

SOFTWARE ENGINEERING Prof.N.L.Sarda Computer Science & Engineering IIT Bombay. Lecture #10 Process Modelling DFD, Function Decomp (Part 2)

SOFTWARE ENGINEERING Prof.N.L.Sarda Computer Science & Engineering IIT Bombay. Lecture #10 Process Modelling DFD, Function Decomp (Part 2) SOFTWARE ENGINEERING Prof.N.L.Sarda Computer Science & Engineering IIT Bombay Lecture #10 Process Modelling DFD, Function Decomp (Part 2) Let us continue with the data modeling topic. So far we have seen

More information

You can participate in Learning Catalytics with any device that has a browser (laptop, smartphone, or tablet).

You can participate in Learning Catalytics with any device that has a browser (laptop, smartphone, or tablet). LEARNING CATALYTICS Table of Contents Student Support... 3 What is?... 4 How do I access?... 7 Do I already have access to?... 8 How do I retrieve my username and/or password?...10 Getting Started with

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

Course Registration Manual

Course Registration Manual Course Registration Manual Introduction Please keep the following points in mind when registering for courses. 1 Campusmate cannot be used between 3:00 AM and 5:00 AM (Japan Standard Time) each day. APU

More information

Doctoral Human Resources Database (JGRAD) User s Manual

Doctoral Human Resources Database (JGRAD) User s Manual Doctoral Human Resources Database (JGRAD) User s Manual September 2016 Edition CONTENTS CONTENTS... 1 1. ACCESSING THE DOCTOR DATABASE WEBSITE... 1 2. LOGGING IN/OUT OF THE DOCTOR DATABASE... 2 3. ACTIVATION...

More information

Go to SQA Academy the website address is

Go to SQA Academy the website address is Joining a course on the SQA Academy You may find it useful to print out this document for reference. There are two steps to joining an SQA Academy course. First you need an account with the SQA Academy,

More information

User s Manual for EZSchoolPay Parents

User s Manual for EZSchoolPay Parents User s Manual for EZSchoolPay Parents This manual is divided into three chapters: Revision 7 09/20/2007 1. Sign-up and Login This chapter explains the sign-up procedure in detail. It also provides help

More information

0001 Understand the structure of numeration systems and multiple representations of numbers. Example: Factor 30 into prime factors.

0001 Understand the structure of numeration systems and multiple representations of numbers. Example: Factor 30 into prime factors. NUMBER SENSE AND OPERATIONS 0001 Understand the structure of numeration systems and multiple representations of numbers. Prime numbers are numbers that can only be factored into 1 and the number itself.

More information

Web Portal Guide my.phone.coop

Web Portal Guide my.phone.coop Web Portal Guide my.phone.coop The Phone Co-op has an online portal called my.phone.coop which is designed to help you keep an eye on your broadband usage and telephone calls with us. Not only can you

More information

Database Management Systems MIT Lesson 01 - Introduction By S. Sabraz Nawaz

Database Management Systems MIT Lesson 01 - Introduction By S. Sabraz Nawaz Database Management Systems MIT 22033 Lesson 01 - Introduction By S. Sabraz Nawaz Introduction A database management system (DBMS) is a software package designed to create and maintain databases (examples?)

More information

Banner Student Module Advisor & Instructor Self-Service Manual

Banner Student Module Advisor & Instructor Self-Service Manual Banner Student Module Advisor & Instructor Self-Service Manual TABLE OF CONTENTS Introduction... Timeframes and Deadlines... Signing onto MyIIT and Teaching Tab...... Adding the Advisor Dashboard Channel......

More information

Using the New CDSP Online epay System

Using the New CDSP Online epay System Using the New CDSP Online epay System CDSP s new online payment system offers many benefits, including a comprehensive view of all invoices and payments applied to your account, the ability to use credit

More information

Emergency Routing Service (ERS) Customer Administrator Guide Subscriber Guide

Emergency Routing Service (ERS) Customer Administrator Guide Subscriber Guide Emergency Routing Service (ERS) Customer Administrator Guide Subscriber Guide Rev B August 15, 2016 1 CUSTOMER ADMINISTRATOR GUIDE... 2 Introduction... 3 Getting Familiar with the terminology... 3 ERS

More information

Cover sheet for Assignment 5

Cover sheet for Assignment 5 Faculty of Arts and Science University of Toronto CSC 358 - Introduction to Computer Networks, LEC0101 Cover sheet for Assignment 5 Due Monday April 2, 10:00am. Complete this page and attach it to the

More information

School Days Off Online Registration Tutorial

School Days Off Online Registration Tutorial 2016-2017 School Days Off Online Registration Tutorial Please follow the below steps to register for 2016-2017 School Days Off program dates. If you have any questions regarding School Days Off online

More information

Bihar School Examination Board

Bihar School Examination Board Bihar School Examination Board Sinha Library Road, Patna-800017 CORRIGENDUM TO e-tender Notice No- PR 55/2018 With reference to tender notice No:- PR-55/2018 issued in various newspapers on 13 th March

More information

When funds are deposited into an Account, a Deposit Receipt will be issued by Companies House containing the following details:

When funds are deposited into an Account, a Deposit Receipt will be issued by Companies House containing the following details: GUIDANCE NOTE 3 Opening an Account with Companies House Opening an account with Companies House will allow users to enjoy a more efficient service for over the counter or email requests. Should the user

More information