Answer:
Tempered glass
Explanation:
Tempered or toughened glass is a type of safety glass processed by controlled
thermal or chemical treatments to increase its strength compared with normal glass. Tempering puts the outer surfaces into compression and the interior into tension . Such stresses cause the glass, when broken, to crumble into small granular chunks instead of splintering into jagged shards as plate glass (a.k.a. annealed glass) does. The granular chunks are less likely to cause injury.
The answer is windmill it was used for electricity
Why did you put this on here when you know the answer lol
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 <<