Ask Question
8 November, 03:06

Which of the following sections of code will calculate the monthly payment for a $150,000 house with a 30 year mortgage at an annual rate of 5.5%, and assign the result to dblMPay?

+4
Answers (1)
  1. 8 November, 03:15
    0
    dblMPay = Pmt (dblAIntRate / 12, intYears * 12, - dblLoanAmt)

    Explanation:

    Dim dblAIntRate as Double = 5.5%

    Dim dblLoanAmt as Double = 150,000

    Dim intYears as Integer = 30

    Dim dblMPay as Double

    dblMPay = Pmt (dblAIntRate / 12, intYears * 12, - dblLoanAmt)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Which of the following sections of code will calculate the monthly payment for a $150,000 house with a 30 year mortgage at an annual rate ...” in 📗 Business if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers