Click here to Skip to main content
15,885,435 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I need answer ASAP - Create a "Bank Management System" Using JAVA Programming language implement following Features given below as bank follows those features apply it on your knowledge.

MUST REQUIREMENTS:-

1-Create 15 Classes given below on Functional Features.
2-Inherit class no 8, 9 & 10 under Base class no 7 Business Investment.
3-Under Class 11 Loan Account Use OOP concept & inherit class 12/13 in this class
4-Must Use Java 3 OOP principles Inheritance-Polymorphism-Encapsulation.
5-GUI Platform:- JAVA FX

This Project contains all the basic activities of the bank. there are 2 main actors.

Admin (Bank)
User(Customer)
Functional feature

Class1   - Admin Login
Class2   - User Login (Un Registered - Customers)
Class3   - Current Account
Class4   - Creating Account
Class5   - Savings Account (Salary Account)
Class6   - Deleting Record/Account
Class7   - Business Investment
Class8   - Plan A - (6-Months with 3% return)
Class9   - Plan B - (1 Year Month with 0.1% return)
Class10   - Plan C - (1 Year Investment with 6% return)
Class11   - Loan Account
Class12   - Housing based Loan
Class13   - Salary Based Loan
Class14   - User Details
Class15   - Salary Statement

Admin: Following activity performs by admin or bank user.

The bank can ADD/EDIT/UPDATE new customers.
Admin can ADD/EDIT/UPDATE Bank.
The bank can ADD/EDIT/UPDATE transactions as per the customer request.
When a new user will be added under any bank. A unique starting from 1- account number will be generated automatically for the customer that the user will use this during the transactions.

User:  User can perform following crud operation.

Users can register and login in to the application.
Users can send money to another user.
The user can update his profile.
Users can check the transaction history as well.
Please inform in how many hours you'll solve this, THANKS.


What I have tried:

My background isn't cs so please help
Posted
Updated 28-Dec-21 7:12am
Comments
Dave Kreskowiak 28-Dec-21 11:30am    
What do you mean by "answer"? This is an exercise to apply YOUR knowledge. Is there a problem with that?

Try this :
Java
/*
 ******************************************************************************
 *
 *    Name      : sample.java
 *
 *    Function  : Basic Console sample.
 *
 ******************************************************************************
 */

import java.io.*;
import java.util.Scanner;
import java.util.*;
import java.text.DateFormat;

class dyow {
	static Long[] theKeys =
	{
		9097624470788603392L, 4485938452361199104L, 0L, 0L,
		4693335872299862016L, 4485938452361199104L, 4702111234474982912L, 9097624732831990016L,
		4485938452361199104L, 4702111234610512128L, 4711136060342747392L, 0L,
		4702111234610512128L, 4485938452361199104L, 9097624732831990016L, 4702396244260176128L,
		0xFFL
	};

    public static void main(String[] argv) {
		System.out.printf("\n\n\n\n");
		for (int key = 0; theKeys[key] != 0xFF; key += 4)
		{
			for (int row = 0; row < 7; ++row)	// for each row in the maps
			{
				System.out.printf("      ");
				for (int i = 0; i < 4; ++i)
				{
					if (theKeys[key + i] == 0)
						break;
					Long lnext = theKeys[key + i] >> (56 - (row * 8));	// get the map entry
					byte next = (byte)(lnext & 0xFF);
					for (int col = 7; col >= 0; --col)
					{
						System.out.printf("%c", (next & (1 << col)) != 0 ? '#' : ' ');
					}
					System.out.printf("  ");	// at the end of the columns add two spaces
				}
				System.out.printf("\n");
			}
			System.out.printf("\n\n");
		}
	}
}
 
Share this answer
 
v2
Comments
k5054 28-Dec-21 12:26pm    
+5 for inventiveness. Must be a slow day at work.
Richard MacCutchan 28-Dec-21 12:32pm    
I'm retired so I have many slow days. :)
This was actually born out of another problem that I was working on some time ago.
While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for us to do it all for you.

So we need you to do the work, and we will help you when you get stuck. That doesn't mean we will give you a step by step solution you can hand in!
Start by explaining where you are at the moment, and what the next step in the process is. Then tell us what you have tried to get that next step working, and what happened when you did.

If you are having problems getting started at all, then this may help: How to Write Code to Solve a Problem, A Beginner's Guide[^]
 
Share this answer
 
Quote:
My background isn't cs so please help

There is no way we teach you that background. Have a talk with your teacher.

You are learning and homework is training, nobody can do it for you.
Do you think Usain Bolt asked someone to train for him when he was a beginner ?

You show no attempt to solve the problem yourself, you have no question, your main effort is pasting the requirement, you just want us to do your HomeWork.
HomeWork problems are simplified versions of the kind of problems you will have to solve in real life, their purpose is learning and practicing.

We do not do your HomeWork.
HomeWork is not set to test your skills at begging other people to do your work, it is set to make you think and to help your teacher to check your understanding of the courses you have taken and also the problems you have at applying them.
Any failure of you will help your teacher spot your weaknesses and set remedial actions.
Any failure of you will help you to learn what works and what don't, it is called 'trial and error' learning.
So, give it a try, reread your lessons and start working. If you are stuck on a specific problem, show your code and explain this exact problem, we might help.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900