Show pseudo code which solves the problem


Show pseudocode which solves the following problem.

Assume that your family has 10 members. Assume further that each family member has a certain amount of savings. Your task is to determine: (a) the total amount of savings that the family has, as a whole and (b) to determine who has the largest savings.

To solve this problem:

a. Show the pseudocode declarations needed to declare two arrays - one an array which contains the names of the family members, and the other an array which contains the savings (i.e. money) held by each family member. The arrays are parallel arrays because the savings shown in the second array for a certain array position are the savings for the family member whose name appears in the same position in the first array. 

b. Write a function, which is called from the main module - this function will determine and return the total savings. 

c. Write a function also called from the main module - this function will determine and return the array index containing the largest savings. Your main program should then print the name of the person who holds those savings, as well as the amount.  

Request for Solution File

Ask an Expert for Answer!!
Data Structure & Algorithms: Show pseudo code which solves the problem
Reference No:- TGS0112432

Expected delivery within 24 Hours