Answer:
hello some parts of your question is missing attached below is the missing part ( the required fig and table )
answer : The solar collector surface area = 7133 m^2
Explanation:
Given data :
Rate of energy input to the collectors from solar radiation = 0.3 kW/m^2
percentage of solar power absorbed by refrigerant = 60%
Determine the solar collector surface area
The solar collector surface area = 7133 m^2
attached below is a detailed solution of the problem
Answer: c) they have low genetic variability among them.
When a plant is grown for several generations of offspring of a plant, then there are some common things which are to be noted which are found similar in the offspring and in the parent of the offspring. The flowers and fruits and the time or season they come in are absolutely the same.
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: I'm a boy, but I'm not toxic or fake
Explanation: