question archive a program uses two parallel arrays named customer numbers and balances
Subject:Computer SciencePrice:2.87 Bought7
a program uses two parallel arrays named customer numbers and balances. the customer numbers array holds customer numbers and the balances array holds customer account balances. If a particular customers customer number is stored in customers numbers[187], where would that customer's account balance be stored?
Answer:
As we have two arrays which holds customer numbers and balances.
if a particular customer number is stored in customernumber[187] then the corresponding customer balance is stored in balance[187].