CSIS 209 Programming Assignment 8

CMS Systems, Inc. is a company that provides information systems consulting services to companies in the telecom industry in the United States and the United Kingdom. Due to its success, CMS is hoping to expand its operations into other parts… Read More

CSIS 209 Programming Assignment 7

Based on the program you created for Assignment 5, modify your code to perform the following steps. In Assignment 5, you created an Account hierarchy with a base class (Account) and two derived classes (SavingsAccount and CheckingAccount). Three of the… Read More

CSIS 209 Programming Assignment 6

Develop a polymorphic banking application using the Account hierarchy you created in Assignment #5. Create the following two SavingsAccount objects and two CheckingAccount objects and store them in an array called “arrays” of Account references to the objects: Account Name… Read More

CSIS 209 Programming Assignment 5

Create an inheritance hierarchy that a bank might use to represent customers’ bank accounts. All customers at this back can deposit (i.e. credit) money into their accounts and withdraw (i.e. debit) money from their accounts. More specific types of accounts… Read More

CSIS 209 Programming Assignment 4

Create a class called SavingsAccount. Use a static variable called annualInterestRate to store the annual interest rate for all account holders. Each object of the class contains a private instance variable savingsBalance, indicating the amount the saver currently has on… Read More

CSIS 209 Programming Assignment 3

Write a recursive method called Power(base, exponent) that, when called, returns [latex] base^{exponent}[/latex]. For example: Assume that exponent is an integer greater than or equal to 1. The recursion step should use the relationship: [latex]{base}^{exponent}={base}*{base}^{exponent-1}[/latex] The terminating condition occurs when… Read More

CSIS 209 Programming Assignment 2

A large company pays its salespeople on a commission basis. The salespeople receive $200 per week plus 9% of their gross sales for that week. For example, a salesperson who sells $5,000 worth of merchandise in a week receives $200… Read More

CSIS 209 Programming Assignment 1

Write an application that asks the user to enter two integers and displays “The two numbers you entered are: “, followed by the two numbers on the screen. Next , determine the sum, difference (result of first number minus the… Read More