Solved

Examine the Following Function Header

Question 34

Multiple Choice

Examine the following function header:
Def mortgagePayment(amount, rate, term) :
Which of the following calls to function mortgagePayment is invalid in Python?


A) mortgagePayment(350000, 5.5, 30)
B) mortgagePayment(amount=350000, rate=5.5, term=30)
C) mortgagePayment(350000, rate=5.5, term=30)
D) mortgagePayment(350000, term=30, rate=5.5)
E) mortgagePayment(rate=5.5, term=30, 350000)

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions