Answer: environmental impact
Explanation:
From the question, we are informed that Harlin is designing a new car engine that does not create pollution.
The technological design factor which is probably the most important for the design is the impact on the environment.
Pollution has a negative effect on the environment a d doing this shows that emphasis is placed on how the environmental issue of pollution can be tackled.
Answer:
Phuong works on a research project and creates a report for her boss.
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:
230.4W
Explanation:
Heat transfer by conduction consists of the transport of energy in the form of heat through solids, in this case a jacket.
the equation is as follows

Where
Q=heat
k=conductivity=0.04
A=Area=1.8m^2
T2=33C
T1=1C
L=thickness=1cm=0.01m
Q=230.4W
the skier loses heat at the rate of 230.4W