Project For EE
Project For EE
Description:
A simple program to manage a library where users can view the list of books, add new books, and mark
books as borrowed or returned. Data will be stored in memory (using an ArrayList).
Features:
Classes:
• Book: Represents a book with attributes like title, author, and isBorrowed.
• Library: Manages the list of books and handles actions like adding, borrowing, and returning books.
Description:
A console-based program where users can create a bank account, deposit money, withdraw money, and check
their balance. Each account will be stored in ArrayList.
Features:
Classes:
• Account: Represents a bank account with attributes like accountNumber, accountHolder, and
balance.
• Bank: Manages multiple accounts and provides methods for creating accounts and performing
transactions.
Description:
A straightforward program where users can view a list of products, add products to a cart, and view the cart
summary. Data will be stored in ArrayList.
Features:
Classes:
• Product: Represents a product with attributes like name, price, and quantity.
Description:
A program to manage student records. Users can add new students, view the list of all students, and search
for students by their ID.
Features:
Classes:
• Student: Represents a student with attributes like id, name, and grade.
• StudentManager: Manages a collection of students and provides methods to add, view, and search for
students.
Description:
A basic program where users can book tickets for a movie. Users can view available tickets, book a ticket, and
see a summary of booked tickets.
Features:
• Book tickets.
Classes:
• Ticket: Represents a ticket with attributes like ticketId, price, and isBooked.