The document outlines five different Java program projects: a Bank Account Management System for basic banking operations, a Student Management System for managing student records, a Library Management System for book management, a To-Do List Application for task management, and a Hotel Room Booking System for room reservations. Each project includes specific functionalities such as account creation, student details management, book handling, task tracking, and room booking operations. These systems aim to provide essential management capabilities in their respective domains.
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
3 views
Assignment Question
The document outlines five different Java program projects: a Bank Account Management System for basic banking operations, a Student Management System for managing student records, a Library Management System for book management, a To-Do List Application for task management, and a Hotel Room Booking System for room reservations. Each project includes specific functionalities such as account creation, student details management, book handling, task tracking, and room booking operations. These systems aim to provide essential management capabilities in their respective domains.
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2
1.
Bank Account Management System
Problem Statement: Develop a Java program that simulates a simple Bank Account Management System. The program should allow the user to perform basic banking operations, such as: Create a new account with a user’s name and initial deposit. Deposit money into the account. Withdraw money from the account, ensuring there are sufficient funds. Check balance of the account. Transfer funds between two accounts. 2. Student Management System Problem Statement: Create a Java program that manages a Student Database for a school or college. The program should allow the user to: Add new student details (name, roll number, and marks). Delete student details by roll number. Display all student information. Search for a student by name or roll number. Calculate and display the average marks for the students.
3. Library Management System
Problem Statement: Design a Library Management System that allows a library to manage its collection of books. The system should allow: Add new books with title, author, and ISBN. Remove books by title or ISBN. Search for books by title or author. Display all books in the library. 4. To-Do List Application Problem Statement: Create a To-Do List Application that helps users manage their tasks. The program should allow: Add a new task. Mark a task as completed. Remove a task. Display all tasks, showing whether they are completed or pending. 5. Hotel Room Booking System Problem Statement: Design a Hotel Room Booking System that enables users to: Check availability of rooms. Book rooms (standard and deluxe). Cancel bookings. Display current bookings and show the total number of available rooms.