Question: AssignmentI113CSM-4 1. Write a java program that prints the summation of the following series: Using while statement Get the value for n from the user

AssignmentI113CSM-4 1. Write a java program that prints the summation of the following series: Using while statement Get the value for n from the user 2. Write the java code for the following class diagram. Incorporate the instruction given for the same. -Balance int AccHolder Name : String AccHolder ID :int BankAccount (Name: int, ID: int, Balance: int) + withDraw (int): void +deposit (int): void + chkBal ance : int Instructions: 1. Create 3 objects for the dass "BankAccount" 2. Use the constructor to initialize the variables. . withDraw) will reduce the Balance with the given value. 4. deposit) will add the given value with the current balance. S. chkBalance) can be used to display the Balance in the account 6. Display the following output after 2 withdraw and deposit operations for every object. Balance Customer ID Customer Name : What would be the output for the java code you wrote for class diagram in problem 2, when executed with the following main() program? Public static void main (String args[ D BankAccount al- new BankAccount( "Ahmed", 1234563,200); BankAccount a2-new BankAccount( "Khalid,1894563, 300); BankAccount a3- new BankAccount("Alr, 1234563, 250); al withDraw(100); a2 deposit(300); a3 withDraw(150): a3deposit(100): a2 deposit(300): a3 withDraw(100) System.out.printin(al. AccHolder Name"+a1.chkBalancel): System.out.printin(a2.AccHolder Name+a2.chkBalancel): System.out-printin( a3.AccHolder Name+a3.chkBalance)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
