Write a Python code for this program BANKING SERVICE SYSTEM You are required to develop a Banking Service Application to handle all the primary information required to maintain the customer account in a bank. Once the system is opened, all users (including admin staff and customers) have to pass through a login page to enter the main screen. Upon login, the system should display the user's name on the system's user interface. Customers are allowed to make transaction for deposit and withdrawal of the money. The following characteristics are important to be included in your system: • A default Super User Account should be created in the system that could be used to create admin staff accounts. • In order to register with the bank, the customer is required to fill a registration form to provide his/her personal details. The staff then enters the customer details into the system, and thereafter provides him with the unique account number and a default password. A unique customer account number must be autogenerated and should in a sequence. The account can be Savings account or Current account. • The customer can login into the system using account number and the default password. In addition to modifying the password, the customer can perform deposit and withdrawal transactions using this account number and password. • Admin staff may update or edit the customer's details. However, customer's ID and name should not be available for update. Customer may only perform Deposits or Withdrawals. • The Customer can login into the system and deposit any amount of money in his/her account and the increase in balance is updated in the data file. • In the case of withdrawal, it is always checked whether the withdrawal of money will affect the minimum balance or not. If yes, the transaction will not be permitted. Minimum balance for saving account and current is RM100 and RM500 respectively. • Unique User Interface (UI) using menus should be done for all interactions between users and the system. • Customer's Statement of Account Report may be generated by both Admin Staff and Customer's Statement of Account Report must be printed for a specified period (i.e. a start and an end date must be entered). A total of all deposits and withdrawals should be displayed for the specified duration at the end of the report. • All details must be saved in files – text files. The program should compile and be executed without errors. Besides, validation should be done for each entry from the users in order to avoid logical errors.
Addition of Two Numbers
Adding two numbers in programming is essentially the same as adding two numbers in general arithmetic. A significant difference is that in programming, you need to pay attention to the data type of the variable that will hold the sum of two numbers.
C++
C++ is a general-purpose hybrid language, which supports both OOPs and procedural language designed and developed by Bjarne Stroustrup. It began in 1979 as “C with Classes” at Bell Labs and first appeared in the year 1985 as C++. It is the superset of C programming language, because it uses most of the C code syntax. Due to its hybrid functionality, it used to develop embedded systems, operating systems, web browser, GUI and video games.


Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 3 images









