1. Suppose you are studying two hardware lease proposals. Option 1 costs $4,000, but requires that the entire amount be paid in advance. Option 2 costs $5,000, but the payments can be made $1,000 now and $1,000 per year for the next four years. If you do an NPV analysis assuming a 14% discount rate, which proposal is less expensive? What happens if you use an 8% rate?

What will be an ideal response?


When a spreadsheet is used to calculate the present value of the lease proposals, the discount factors (see rows 11 and 15 in the figures) can be changed easily. Using a 14 percent factor, the solution is:







Using an eight percent factor, the solution is:



Computer Science & Information Technology

You might also like to view...

A linked list class uses a Node class with successor reference next and field element to store values. A recursive method to print all list elements can be written as

A) static void printList(Node list) { if (list != null) { System.out.println(list.element); printList(list.next); } } B) static void printList(Node list) { while (list!= null) { System.out.println(list.element) printList(list.next); list = list.next; } } C) static void printList(Node list) { while (list.next != null) { printList(list.next); System.out.println(list.element) list ++; } } D) static void printList(Node list) { System.out.println(list.element): printList(list.next); }

Computer Science & Information Technology

What library must be included for file Output?

A. B. C. D.

Computer Science & Information Technology

Each access point has a(n) ______________ that essentially functions as the name of the network.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Before creating a form, it is critical to identify the business ________ and ________ that will be supported

Fill in the blank(s) with correct word

Computer Science & Information Technology