Answer:
Net Present Value = $660.98
Explanation:
<em>The Net present value (NPV) is the difference between the Present value (PV) of cash inflows and the PV of cash outflows. A positive NPV implies a good and profitable investment project and a negative figure implies the opposite. </em>
NPV of an investment:
NPV = PV of Cash inflows - PV of cash outflow
<em>PV of cash inflow = A× (1- (1+r)^(-n))/r
</em>
A- annul cash inflow, r- 8%, n- 3
PV of cash inflow= 41,000× (1- 1.08^(-3))/0.08
= 105,660.98
Initial cost = 105,000
NPV = 105,660.98 - 105,000
= $ 660.98
Answer:
about ppl disrespecting you
Answer:
The correct answer is:
$17 trillion.
Explanation:
The Gross Domestic Product or GDP represents the overall market value of all the goods and services a country produces and it measures the size of the economy. The GDP is determined with the following formula:
GDP = C + G + I + NX
where:
- C: private consumption or consumer spending
- G: government spending
- I: businesses' capital spending
- NX: net exports (exports - imports)
In the example:
GDP = $3 trillion + $10 trillion + $4 trillion = $17 trillion
Answer:
// Program is implemented using Coral Programming Language
int X
int Y
int Sum
Put "Enter any two numbers" to output
x = Get next input
Y = Get next input
if Y < X
Put "Second integer can't be less than the first" to output
else
for Sum = X; Sum <= Y; Sum = Sum + 10
Put Sum to output
Explanation:
The above program is written using Coral Programming Language
The first line is a comment
The next 3 lines declares 3 integer variables
Which are X, Y and Sum
X and Y represent the two input numbers as seen on line 6 and 7
X, being the first and Y being the second
Line 8 tests the larger of the two numbers
If Y is less than X, the output is "Second integer can't be less than the first" without the quotes
Else
The last two lines perform iterative operations that assigns the addition of 10 and X to Sum
It continues printing sum as long as sum is less than the value of Y.