Implement a Simple Command-Line Calculator:
• Problem: Create a program that takes two numbers and an operator (+, -, *, /) as
command-line arguments and performs the corresponding operation.
•
Implement a Class with Constructors:
• Problem: Create a Book class with attributes like title, author, and price. Implement
constructors to initialize these attributes and a method to display the book details.
•
Develop a Simple Banking Application:
• Problem: Design a BankAccount class with methods to deposit, withdraw, and
check the balance. Ensure that the account balance cannot go negative.
•
Create a Student Grading System:
• Problem: Develop a program that calculates the grade of a student based on marks
obtained in three subjects. Use methods to input marks, calculate the total, and
determine the grade.
•