Answer:
investment 10 years from now is $1,238,000
.
Explanation:
given data
sum = $500,000
rate = 12% =0.12
total time = 10 year
solution
as present value After 2 years from now is $500,000
so time period is now = 8 year ( 10 - 2 )
so we apply future value formula that is
Future value = present value ×
............1
put here value we get
Future value = $500,000 ×
Future value = $500,000 × 2.476
Future value = $1,238,000
so investment 10 years from now is $1,238,000
.
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<
Answer:
a)
1) R16C ; Tn = 17 TMU
2) G4A ; Tn = 7.3 TMU
3) M10B5 ; Tn = 15.1 TMU
4) RL1 ; Tn = 2 TMU
5) R14B ; Tn = 14.4 TMU
6) G1B ; Tn = 3.5 TMU
7) M8C3 ; Tn = 14.7 TMU
8) P1NSE ; Tn = 10.4 TMU
9) RL1 ; Tn = 2 TMU
b) 3.1 secs
Explanation:
a) Determine the normal times in TMUs for these motion elements
1) R16C ; Tn = 17 TMU
2) G4A ; Tn = 7.3 TMU
3) M10B5 ; Tn = 15.1 TMU
4) RL1 ; Tn = 2 TMU
5) R14B ; Tn = 14.4 TMU
6) G1B ; Tn = 3.5 TMU
7) M8C3 ; Tn = 14.7 TMU
8) P1NSE ; Tn = 10.4 TMU
9) RL1 ; Tn = 2 TMU
b ) Determine the total time for this work element in seconds
first we have to determine the total TMU = ∑ TMU = 86.4 TMU
note ; 1 TMU = 0.036 seconds
hence the total time for the work in seconds = 86.4 * 0.036 = 3.1 seconds
Answer:
C. UNDP or World Bank.
Explanation:
Suppose the country of Bangladesh wants a low interest loan to invest in the building of infrastructure. The international organizations which Bangladesh would most likely turn to are UNDP or World Bank.
Answer:
Detailed solution is attached in the images below showing step wise solution and answer for each part individually.