Solution :
Given :

Operation time,
= 3000 hours per year

Operation time,
= 2000 hours per year
The density, ρ = 
The wind blows steadily. So, the K.E. = 

The power generation is the time rate of the kinetic energy which can be calculated as follows:
Power = 
Regarding that
. Then,
Power
→ Power = constant x 
Since,
is constant for both the sites and the area is the same as same winf turbine is used.
For the first site,
Power, 

For the second site,
Power, 
The answer is number 2) Increase the resistance of the concrete to freeze-thaw damage.
Answer:
c
Explanation:
if someone is wrong that they can help with
Answer:
if you're talking about the car b-post, the answer is "posts"
Explanation:
looked it up
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 <<