You work as a data analyst at ABSA bank. You need to determine the efficiency of a team of brokers by looking at how much money has been invested by each broker, for the month of March 2022. For each broker, you need to investigate how many clients they have seen and how much each client has invested. The brokers receive an incentive from the amount of money that they have invested, as well as the number of clients that they have helped to invest. The investment incentive is two percent of the total money invested per broker. The client incentive is R50 per client that was seen and if a client also invests, it is an extra R50 for that client. To determine the total investment per broker, all investments need to be added together. To determine the broker incentive, the investment incentive and client incentive are added together. Create an algorithm, assuming that there are 10 brokers, and you are required to output each broker's name and their incentive.

Respuesta :

This question seeks to test the students knowledge of Pseudocodes. See the full pseudocodes below.

What is a pseudocode?

A pseudocode is a form of program design notation that resembles a condensed coding language.

What is the pseudocode for the above question?

1. information = {}

2. num_brokers = int(input("Please enter the quantity of specialists: "))

3. for I in range(num_brokers):

name = input("Please enter the name of specialist {}: ".format(i+1))

num_clients = int(input("Please enter the quantity of clients seen by {}: ".format(name)))

data[name] = {"clients": num_clients}

4. for name, information in data.items():

for j in range(info["clients"]):

venture = float(input("Please enter the sum contributed by client {}: ".format(j+1)))

data[name]["investment"] = venture

5. for name, information in data.items():

total_investment = sum(info.values())

data[name]["total investment"] = total_investment

6. for name, information in data.items():

investment_incentive = info["total investment"] * 0.02

data[name]["investment incentive"] = investment_incentive

7. for name, information in data.items():

client_incentive = info["clients"] * 50

data[name]["client incentive"] = client_incentive

8. for name, information in data.items():

total_incentive = info["investment incentive"] + info["client incentive"]

data[name]["total incentive"] = total_incentive

9. for name, information in data.items():

print("{}'s complete motivator is: {}".format(name, info["total incentive"]))

Learn more about pseudocodes at:
https://brainly.com/question/24953880

#SPJ1