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?

a. ```Dim dblAIntRate as Double = 5.5
Dim dblLoanAmt as Double = 150000
Dim intYears as Integer = 30
Dim dblMPay as Double
dblMPay = Pmt(dblAIntRate / 12, intYears * 12, -dblLoanAmt)
```

b. ```Dim dblAIntRate as Double = 5.5
Dim dblLoanAmt as Double = 150000
Dim intYears as Integer = 30
Dim dblMPay as Double
dblMPay = Pmt(dblAIntRate, intYears, -dblLoanAmt)
```

c. ```Dim dblAIntRate as Double = 5.5
Dim dblLoanAmt as Double = 150000
Dim intYears as Integer = 30
Dim dblMPay as Double
dblMPay = Pmt(dblAIntRate / 12, intYears, -dblLoanAmt)
```

d. ```Dim dblAIntRate as Double = 5.5
Dim dblLoanAmt as Double = 150000
Dim intYears as Integer = 30
Dim dblMPay as Double
dblMPay = Pmt(dblAIntRate, intYears * 12, -dblLoanAmt)
```


a. ```Dim dblAIntRate as Double = 5.5
Dim dblLoanAmt as Double = 150000
Dim intYears as Integer = 30
Dim dblMPay as Double
dblMPay = Pmt(dblAIntRate / 12, intYears * 12, -dblLoanAmt)
```

Computer Science & Information Technology

You might also like to view...

Which term identifies a single instance of an information asset suffering damage, unintended or unauthorized modification, or disclosure?

A. Exploit B. Exposure C. Vulnerability D. Loss

Computer Science & Information Technology

Which of the following are examples of situations in which a person can expect privacy?

a. In an enclosed telephone booth. b. Sitting on a park bench listening to a music player. c. Parked at an intersection with the car windows wide open. d. Material that has been placed into opaque bags before thrown into the trash.

Computer Science & Information Technology

A user slice has a dotted line border.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The digital forensics competency has the required functional perspective of ____.

A. manage, design B. manage C. manage, design, evaluate D. manage, evaluate

Computer Science & Information Technology