Question #145520

Create a Hierarchy chart that will accurately represent the information in the scenario below:

 

“A main programme calls three modules: getDetails(), calculateFees(), and register(). The calculateFees() module calls a module called courses() and a module called courseCost(). The register() module calls a module called printProof().” 


Expert's answer

def courses():
    pass

def courseCost():
    pass

def printProof():
    pass

def getDetails():
    pass

def calculateFees():
    courses()
    courseCost()

def register():
    printProof()

def main():
	getDetails()
    calculateFees()
    register()

main()

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS