Answer: Advanced technologixal machines
Explanation: such as big cranes, multiple workers helping creat said structure, and big bull dozers
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 <<
The displacement ∆S of the particle during the interval from t = 2sec to 4sec is; 210 sec
<h3>How to find the displacement?</h3>
We are given the velocity equation as;
s' = 40 - 3t²
Thus, the speed equation will be gotten by integration of the velocity equation to get;
s = ∫40 - 3t²
s = 40t - ¹/₂t³
Thus, the displacement between times of t = 2 sec and t = 4 sec is;
∆S = [40(4) - ¹/₂(4)³] - [40(2) - ¹/₂(2)³]
∆S = 210 m
Read more about Displacement at; brainly.com/question/4931057
#SPJ1