Which function will calculate the final value of an investment of $100 a month that earns 4% interest over 5 years?

A) NPV B) FV C) PV D) IPMT


B

Computer Science & Information Technology

You might also like to view...

Write a short program that allows the user to enter the base and height of a triangle and outputs the hypotenuse, formatted to three decimal places.

What will be an ideal response?

Computer Science & Information Technology

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

1. A C-string variable is an array, so it can be indexed to access individual character positions (indexed variables of type character). 2. A C-string is a sequence of characters terminated by the null character.

Computer Science & Information Technology

A podcast is limited to 140 characters.

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

Computer Science & Information Technology

Given the following declaration:  int j;int sum;double sale[10][7];    which of the following correctly finds the sum of the elements of the fourth column of sale?

A. sum = 0; for(j = 0; j < 7; j++)  sum = sum + sale[j][3]; B. sum = 0; for(j = 0; j < 7; j++)   sum = sum + sale[j][4]; C. sum = 0; for(j = 0; j < 10; j++)   sum = sum + sale[j][4]; D. sum = 0; for(j = 0; j < 10; j++)   sum = sum + sale[j][3];

Computer Science & Information Technology