Answer:
to clear land for agriculture and settlement and to use or sell timber for lumber, paper products, or fuel.
Answer:
Newton per square meter (N/m2)
Explanation:
Required
Unit of ultimate tensile strength
Ultimate tensile strength (U) is calculated using:
![U = \frac{Ultimate\ Force}{Area}](https://tex.z-dn.net/?f=U%20%3D%20%5Cfrac%7BUltimate%5C%20Force%7D%7BArea%7D)
The units of force is N (Newton) and the unit of Area is m^2
So, we have:
![U = \frac{N}{m^2}](https://tex.z-dn.net/?f=U%20%3D%20%5Cfrac%7BN%7D%7Bm%5E2%7D)
or
![U = N/m^2](https://tex.z-dn.net/?f=U%20%3D%20N%2Fm%5E2)
<em>Hence: (c) is correct</em>
Complete Question
The complete question is shown on the first uploaded image
Answer:
a) ![f_{(n)} = f_{(n-1)} + n-2](https://tex.z-dn.net/?f=f_%7B%28n%29%7D%20%3D%20f_%7B%28n-1%29%7D%20%2B%20n-2)
b) ![g_{(n)} = g_(n+1) + (n-2)](https://tex.z-dn.net/?f=g_%7B%28n%29%7D%20%3D%20g_%28n%2B1%29%20%2B%20%28n-2%29)
Explanation:
The explanation is shown on the second and third uploaded image
Answer:
Eutectic product in Fe-C system is called Ledeburite-C.
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 <<