Q:What velocity does the boy attain if he throws the bricks one at a time?
Answer:Linear velocity since it moves back and firth and does not rotate like angular velocity.
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 do!!
Explanation:
I have to sit for 3 hours lol♀️
Answer:
Temperature
Explanation:
In an ideal gas the specific enthalpy is exclusively a function of Temperature only this can be also written as h = h(T)
A gas is said be ideal gas if obeys PV= nRT law
And in a ideal gas both internal energy and specific enthalpy are a function of Temperature only. Therefore the constant volume and constant pressure specific heats Cv and Cp are also function of temperature only.
1(A)
2(B)
3(E)
4(C)
5(D)
6(B)
7(C)