Question: Multiple choice with one correct answer: Consider this python code: # Given values P 0 _ loan = 1 0 0 0 0 0 #
Multiple choice with one correct answer: Consider this python code:
# Given values
Ploan # Loan amount
rloan # Monthly interest rate
nloan # Total number of payments years
fvloan Ploan # Balloon payment
npfpmtraterloan, npernloan, pvPloan, fvfvloan
Which statement BEST describes this code?
Multiple choice with one correct answer: Consider this python code:
# Given values
Ploan # Loan amount
rloan # Monthly interest rate
nloan # Total number of payments years
fvloan Ploan # Balloon payment
npfpmtraterloan, npernloan, pvPloan, fvfvloan
Which statement BEST describes this code?
a This code calculates the monthly payment for a partially amortizing year mortgage loan of $ with a annual interest rate. The loan has a balloon payment at maturity that is of the original loan balance, which is accounted for by setting the future value fvloan to times the loan amount. The npfpmt function is used to compute the monthly payment required to maintain this loan structure over the year term.
b This code calculates the monthly payment for a fully amortizing year mortgage loan of $ with a annual interest rate. The loan has a balloon payment at maturity that is of the original loan balance, which is accounted for by setting the future value fvloan to times the loan amount. The npfpmt function is used to compute the monthly payment required to maintain this loan structure over the year term.
c This code calculates the monthly payment for a negative amortization, year mortgage loan of $ with a annual interest rate. The loan has a balloon payment at maturity that is of the original loan balance, which is accounted for by setting the future value fvloan to times the loan amount. The npfpmt function is used to compute the monthly payment required to maintain this loan structure over the year term.
d This code determines the monthly payment required to partially amortize a $ loan over years at a interest rate with no balloon payment. The variable fvloan is mistakenly set to a larger value, which would overestimate the payment. The npfpmt function calculates the monthly payment based on the full amortization of the loan, not considering any balloon payment.
e This code calculates the monthly payment for an interestonly year mortgage loan of $ with a annual interest rate. The loan has a balloon payment at maturity that is of the original loan balance, which is accounted for by setting the future value fvloan to times the loan amount. The npfpmt function is used to compute the monthly payment required to maintain this loan structure over the year term.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
