Answer:
1. Shape factor is calculated.
2.Heat transfer rate is calculated.
3.Heat transfer per unit length is calculated.
Best Regards.
Answer:
The answer is below
Explanation:
1) The synchronous speed of an induction motor is the speed of the magnetic field of the stator. It is given by:

2) The speed of the rotor is the motor speed. The slip is given by:

3) The frequency of the rotor is given as:

4) At standstill, the speed of the motor is 0, therefore the slip is 1.
The frequency of the rotor is given as:

Answer:
0.667 per day.
Explanation:
Our values here are

Degradation constant=k and is unknown.
We calculate the concentration through the formula,

Replacing values we have

That is the degradation constant of Z-contaminant
Answer:
cout<<"''<<user_word<<"' "<<user_number;
Explanation:
The above question was answered using C++ programming language.
The keyword cout represents print and it carries out print operation only.
It prints all variable in front of it.
Assume the values of user_word and user_number to be Charles and 20, respectively.
The output of the above instruction would be
'Charles' 20 just as it is in the sample output in the question.
In java programming language, it is
System.out.print("'"+user_word+"' "+user_number);
In Qbasic, it is
PRINT "'"+user_word+"' "+ user_number