Match the functions with their descriptions

I. PPMT
II. IPMT
III. PMT
IV. RATE
V. NPER

A. Calculates interest payment
B. Calculates principal payment
C. Calculates the interest rate
D. Calculates total number of payments
E. Calculates total loan payment

Answer: B, A, E, C, D

Computer Science & Information Technology

You might also like to view...

An array is a single variable with room to store a group of items.

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

Computer Science & Information Technology

What will be displayed after the following document.write statement is executed?

``` var math = new Array("Algebra 1", "Algebra 2", "Trig", ? "Calculus 1", Calculus 2"); document.write("There are " + math.length + 1 + " math ? courses in the sequence."); ``` a. There are 5 math courses in the sequence. b. There are 4 math courses in the sequence. c. There are 6 math courses in the sequence. d. Nothing will display. This code won't work.

Computer Science & Information Technology