In Excel, the interest percentage on a loan is called the:

A) payment period. B) Present value (Pv). C) Future value (Fv). D) rate.

D

Computer Science & Information Technology

You might also like to view...

Given the following function declaration and local variable declarations, which of the following is not a correct function call?

int myInt; float myFloat; char ch; void someFunction(int& first, float second, char third); a. someFunction(1, 2.0, ch); b. someFunction(myInt, myFloat, ch); c. someFunction(myInt, 2.0, 'c'); d. someFunction(myInt, myFloat, '1');

Computer Science & Information Technology

Modify the changeLittle function to use readLine instead of read.

Note: The question refers to the “readline” method.

Computer Science & Information Technology