What effect does paying an extra small bit of principal on a mortgage have on the life of a 30 year loan?
A. It has no impact on amount of interest paid but shortens the length of the loan.
B. It saves money in interest and shortens the length of the loan.
C. It increases the amount of interest paid and lengthens the length of the loan.
D. It has no impact on either interest or life span of the loan.
Answer: B
You might also like to view...
What is the difference between a well-formed XML document and a valid XML document?
What will be an ideal response?
What does the output statement in main() print out? What is wrong with the implementation of factorial() in this class?
``` public class BadFactorial { private int n; public static long factorial () { if ( n == 1 ) // base case; recursion ends return 1; // return a result else { // recursive case: update input size to // get closer to base case and iterate again n = n – 1; return n * factorial(); } } public static main() { n = 4; System.out.println("factorial 4 is " + factorial() ); } } ```
The Tree class is derived from a base class named Plant. Which of the following statements can be used by the Tree class to invoke the Plant class's default constructor?
A. MyPlant.New() B. MyBase.New() C. MyTree.New() D. MyTree.Base
Which of the following is NOT a string literal constant?
A. "" B. "&" C. "Hello" D. 'abc'