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 <<
Answer:
Distillation, heat
Explanation:
Here in this question, we simply want to look at the best options that could fit in the gaps.
We have a mixture of liquids having boiling points which is far from each other.
Whenever we have a mixture of liquids with boiling points far away from each other, the best technique to use in separating them is to use distillation. That is why we have that as the best fit for the first missing gap.
Now, to get the liquids to separate from each other, we shall be needing the heating mantle for the application of heat. This ensures that the mixture is vaporized. After vaporization, the condensing tube will help to condense the vapor of each of the liquids once we reach the boiling point of either of the two.
Kindly note that the liquid with the lower temperature will evaporate first and will be first obtained. In fact after reaching a little above the boiling point of the lower boiling liquid, we can be sure that what we have left in the mixture pot is the second other liquid with the higher boiling point.