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().”
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()
Comments
Leave a comment