Question: 7 PROGRAMMING TASK 3 Task: Develop a java application that creates an account with an opening balance, displays the balance, makes a deposit and a

 7 PROGRAMMING TASK 3 Task: Develop a java application that createsan account with an opening balance, displays the balance, makes a depositand a withdrawal, and then displays the new balance. The above problem

7 PROGRAMMING TASK 3 Task: Develop a java application that creates an account with an opening balance, displays the balance, makes a deposit and a withdrawal, and then displays the new balance. The above problem can be solved by creating two classes. We want to use two classes in this example in order to show the students how a class can invoke or call the methods of another classe. So let's start by creating a class called BankAccount, the code for this class is given below As we can see clearly, the above class doesn't have a main method. This is so because we don't intend to run it as an application, rather we want to use its methods from another class called the Application class. The code for the Application class is given below: import java.util. ; public class Application public static void main(Strinn ounnrui Scanner myScannerobject //opening account System.out.println("Enter the opening balance"); System.out.println(""); double openingBalance = myScannerobject. nextDouble (); Prepared by: Ms. Haseena \} \begin{tabular}{|l|l|} 3 & System.out.println (""); \\ \} \end{tabular} 8 EXERCISES 1. Create a new project called LAB2_EXERCISES 2. Create a class in LAB2_EXERCISES that computes the area or the perimeter of the square. Given that the square area =LL and the perimeter =4L (where L is the length of the side of the square). 3. Create another class in LAB2_EXERCISES that can be used to convert a temperature from Celsius to Fahrenheit and vise versa. (Hint: Use the following formula: F=1.8C+32). 4. Create another class in LAB2_EXERCISES that can be used to calculate sum of two numbers, subtraction of two numbers and division of two numbers. 5. Create another class in LAB2_EXERCISES that can be used to swap two numbers. 6. A book in KFUPM Library has the following characteristics: Author, Name, ISDN, and status (available, borrowed). Provide appropriate constructors and a two method void borrowBook() and void returnBook() that change the status of book from available to borrowed and vice versa

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!