Suppose that your family has 10 members. Suppose further that every family member has the particular amount of the savings. Your task is to find:
a) The total amount of savings that the family has, as a whole and
b) To find who has the largest savings.
In order to solve this problem:
a) Show the pseudo code declarations required declaring two arrays - one an array that consists of the names of family members, and other an array that consists of the savings (i.e. money) held by every family member. The arrays are parallel arrays since the savings displayed in the second array for a particular array position are the savings for the family member whose name emerges in the same position in the first array.
b) Write down a function that is known as from the main module - this function will find and return the total savings.
c) Write down a function also known from the main module - this function will find and return array index consisting of the largest savings. Your main program must then print the name of person who holds those savings, as well as the amount.