Project Part 3 Putting the pieces together. Modifications on previous parts In part 1 you created a : BankAccount class, with several fields. Increment.

Slides:



Advertisements
Similar presentations
How to set up an A-to-Z with LinkSource CustomLink in EBSCOadmin
Advertisements

What Are the Functions of ATM Machines?
Creating and Submitting a Necessary Wayleave Application
ExamView Test Generator
How to Efile a Lobbyist Expenditure Report 01/1/2014.
The Way to Success … Sta rt Sta rt Ak Technologies Mo | Visit.
London & Zurich Plc User Guide. Service Benefits Full on-line management of client accounts Paperless direct debit – no signatures required Standing orders.
Biller Direct Getting Started
Farm Service Agency Lender’s training for Electronic Submission of Guarantee Fees Implementation Date: September 23, 2009.
Information Regarding
Author Instructions How to upload a full session proposal with abstracts – two step process.
How to Submit a Matching Gifts Application.
Target 2nd tier Prime Supplier Guide
Completing GLACIER Tax Prep (GTP) This demonstration will walk you through the basic program. Depending on your personal information entered into the system.
Troop Users.
Troop Users.
User Guide. Service Benefits  Full on-line management of client accounts  Paperless direct debit – no signatures required  Standing orders fixed not.
Lab 10: Bank Account II Transaction List, error checking & aggregation.
HELP GUIDE NEW USER REGISTRATION (SLIDE 2) TAKING A QUIZ (SLIDE 8) REVIEWING A QUIZ (SLIDE 17) GROUP MEMBERSHIP (SLIDE 26) CREATING QUIZZES (SLIDE 31)
Banking Basics. Getting the idea Banks have different types of accounts for your money. A bank account earns interest if the bank pays you an additional.
In an internet browser type: If you have never used this software before, click on create an account. If you have used ilrn, click on Sign.
DataMine 2.0 Role: Manufacturer AASHTO’s NTPEP Program presents: NTPEP DataMine 2.0 NTPEP DataMine 2.0.
In an internet browser type: If you have never used this software before, click on create an account. If you have used ilrn, click on Sign.
{ How to Use An ATM A simple tutorial to teach how to use ATM Machines.
Updating User Information Password – use this field to change your own password Confirm Password – retype the new password for verification purposes To.
People © 2013 The Sleeter Group All rights reserved. Intuit, the Intuit logo and QuickBooks, among others, are registered trademarks of Intuit Inc. Other.
2013.  Reconcile your checking account  Create bank reconciliation reports  Find errors during reconciliation  Correct errors found during reconciliation.
Direct Deposit Set Up. You should allow a minimum of 3-4 weeks before being able to implement this process.
1 Turn on the Wii, go to the Wii menu.. 2 Click on the Wii options.
Address Book in JAVA By What is Address Book Address Book is book or database used for storing entries called contacts Each contact.
Click to edit Master title style A tool designed to provide useful information and assist Propex Plus Partners!
Creating a Single Sign On Account. To create a Single Sign On ID please visit and select the option to create a new account.
ACC Online Services and Online Registration. Guess What? Telephone Registration Has Gone Away...It Is Time To Go Online! Part 1: Obtaining Your ACCeID.
ETutorial - Online TAN Registration and Request for Consolidated TDS/TCS file from TIN November 18, Tax Information Network of Income Tax Department.
NAMS Account Activation Training. 2 What is NAMS? The NASA Account Management System is NASA’s centralized process for requesting and maintaining accounts.
STAY CONNECTED TOLLFREEEXPRESS CONTROL PANEL GUIDE.
UNCLASSIFIED User Guide Applicant. UNCLASSIFIED Table of Contents What is the SAFETY Act? Applicant Guide Help Desk.
How to Apply for a Position at Prince George’s Community College Updated 07/13/
System-level and RESA Administrators Functions. Topics Manually creating new student account Manually creating new teacher account Importing data Viewing.
NEW RMU PORTAL – RMU Panel.
Merijn Benjamin Christina
ICP Kit 2011 HHC Data Entry Module The World Bank ICP Kit Training African Development Bank.
Glenn David Blank Computer Science & Engineering Department Lehigh University, Bethlehem, PA, USA With support from the National Science Foundation (Grants.
NEW INNOVATIONS Faculty Introduction NEW INNOVATIONS Faculty Introduction This presentation includes the following topics: Login Notifications Completing.
RDN Enhancements Dear Customers, RDN is happy to announce our next release, scheduled to go into production on June 25, Below is a list.
In the web address box enter Enter your user ID (first and last initial 7 digit ID number) Select Log in.
USER SETUP. 2 This guide will show you how to add a new user or edit an existing one with Mifos X System How to add new user or edit an existing one?
Physics Exercise Generation and Simulation Interface Welcome! Login as Student Login as Instructor Register as Instructor Register as Student.
Cuallet step by step guide. Step 1 From the Cuallet home page, click the “Sign Up Now” button. New user / Register.
How to Create a Paypal Account A tutorial. At the Login screen for Paypal, click the option to Pay using your credit or debit card.
Trade Now Select Product Login ID Login Password Submit.
Patient Portal Website Patient Training Powered by the.
Self Service Enrollment – Choose Your Benefits Medical Dental Vision Life 401(k) IRA 457 Health Savings Account.
Single Sign-on with stoneware Presented by:. Access Stoneware Visit the district home page. In the main menu, hover over LCS Employees and choose Stoneware.
Do Now Why do people have checking accounts?. Unit 4: Lesson 13: Checking Accounts Day 1 Objective: identify vocabulary terms related to checking accounts.
Inventory system is used through almanara program to do the inventory process with more easily and flexible way for all items that are existed within.
How to use Exam Software
CPLTA – ONLINE CREDIT TRACKING SYSTEM
Payment Center Self Enrollment and Making a Payment
Objects First with Java Transaction List, error checking & aggregation
How to Apply for a Clara Abbott Foundation Scholarship Application Available: April 30 Application Deadline: May 30 Welcome to the 2018/2019 February.
The Smarter Balanced Assessment Consortium
The Smarter Balanced Assessment Consortium
Internet Ordering Change.
The Smarter Balanced Assessment Consortium
The Smarter Balanced Assessment Consortium
HOW TO PLACE MY ORDER ?.
Wire Transfer Templates
Completing the Transcript Information
Presentation transcript:

Project Part 3 Putting the pieces together

Modifications on previous parts In part 1 you created a : BankAccount class, with several fields. Increment the number of fields to include –A Password field to allow the access of the owner of the BankAccount –A secret-question field, in case you forgot your password –An answer (to the previous question) field You will need to modify the constructors accordingly, and create the corresponding getter and setter methods for them.

Modifications on previous parts In part 2 you : enhanced the BankAccount and create a Bank –Now you must add a field to the bank, which will hold the name of the bank –Modify the constructors to take care of this new field –Create the corresponding get and set methods for the new field. –Create another getAccount method, that gets an account given the accountholder’s name and password.

In this part 3 you are going to generate an Atm class Fields –ArrayList of Banks. Constructor –To create the empty ArrayList of Banks Methods –selectBank, which will return the bank in the ArrayList, corresponding to the name of the Bank that you supply. –selectAccount, which will return the Bankaccount on the previous bank when the method ask the user to enter the name for the accountholder, and the password, If the password is wrong, it can ask the accountholder to answer the secret question. If the answer is wrong, the program will terminate. Otherwise it will return the account. –menu, Once you have accessed your account, the method will show the different options that you have to perform operations with your account (deposit, debit or withdraw, transfer, etc,,)You must select one..

In this part 3 you are going to generate an Atm -II –After any of the previous operations is finished it should display information that confirms that the operation was performed correctly, and return to the menu method, to see if you want perform another operation. One of the option should be to return to another account in the same or different bank. –main method, it will create several banks (at least two) with several accounts each (at least 3). Then you should work with the accounts of the banks, performing some operations. Your grade will depend upon how well the program mimics an ATM machine, and the amount of operations you can perform with it, and how you use the previous parts of the project on it.

Submitting your work Save your project with the name Part3_netID, by exporting it, and upload it to Canvas