develop an online banking application, where users can go to near by our banking machine and do all the banking stuff.
functionalities like: opening a new account, deposit money, withdraw money, balance check, appliying for credit card,
applying for loans etc.. can be done through this application. and much more requirements come into the picture.
we are gonna deliver this application through sprints.
for first iteration, so called sprint lets deliver a basic appliation to users and get their feedback and address
those, and make the applicatin more robust.
DCUT DATE: saturday 9 PM EST.
what is DCUT,
Desigining, coding, unittesting
requirements for the first iteration.
lets have basic functionality like
opening accoutn, deposit money, withdraw money
and balance check.
expected output after running the script
Welcome to
Options:
open the account
Deposit
withdraw
bal check
quit
please enter your option: 1
please enter min value to open the account: 100
successfully opened bank account with bofa, and the account bal is: 100
<program should not end by here, instead it should take use to main menu again.>
Options:
open the account
Deposit
withdraw
bal check
quit
please enter your option: 2
please enter amount to deposit: 200
successfully deposited money 200.
and program shoudl still continue until user enters 5 which is quit.
like wise if I choose 2 it should ask for deposit money and once after successfull deposit it should greet me with success msg
same for all the functionalitis.
intention of this project is to implement all the concepts we learnt so far.
variables
data types
operators
conditions
functions.
keep this things in mind:
try to write a code as simple as possible and make sure the units of code is reusable.
'''
project: Online Banking Machine
''' About Poject:
develop an online banking application, where users can go to near by our banking machine and do all the banking stuff.
functionalities like: opening a new account, deposit money, withdraw money, balance check, appliying for credit card, applying for loans etc.. can be done through this application. and much more requirements come into the picture.
we are gonna deliver this application through sprints.
for first iteration, so called sprint lets deliver a basic appliation to users and get their feedback and address those, and make the applicatin more robust.
DCUT DATE: saturday 9 PM EST.
what is DCUT, Desigining, coding, unittesting
requirements for the first iteration.
lets have basic functionality like opening accoutn, deposit money, withdraw money and balance check.
expected output after running the script
Welcome to
Options:
please enter your option: 1
please enter min value to open the account: 100
successfully opened bank account with bofa, and the account bal is: 100
<program should not end by here, instead it should take use to main menu again.>
Options:
please enter your option: 2
please enter amount to deposit: 200
successfully deposited money 200.
and program shoudl still continue until user enters 5 which is quit.
like wise if I choose 2 it should ask for deposit money and once after successfull deposit it should greet me with success msg
same for all the functionalitis.
intention of this project is to implement all the concepts we learnt so far.
keep this things in mind: