Answer:
Exit velocity
m/s.
Explanation:
Given:
At inlet:

Properties of steam at 100 bar and 600°C

At exit:Lets take exit velocity 
We know that if we know only one property inside the dome then we will find the other property by using steam property table.
Given that dryness or quality of steam at the exit of nozzle is 0.85 and pressure P=80 bar.So from steam table we can find the other properties.
Properties of saturated steam at 80 bar

So the enthalpy of steam at the exit of turbine



Now from first law for open system

In the case of adiabatic nozzle Q=0,W=0

m/s
So Exit velocity
m/s.
Answer:
Not seeing any other information, the best answer I can give is 2m.
Explanation:
M = magnitude
You see, if they have an equal charge, and you add them, it'd be 2 * m, or 2m.
Answer:
The conversion in the real reactor is = 88%
Explanation:
conversion = 98% = 0.98
process rate = 0.03 m^3/s
length of reactor = 3 m
cross sectional area of reactor = 25 dm^2
pulse tracer test results on the reactor :
mean residence time ( tm) = 10 s and variance (∝2) = 65 s^2
note: space time (t) =
t =
Vo = flow metric flow rate , L = length of reactor , A = cross sectional area of the reactor
therefore (t) =
= 25 s
since the reaction is in first order
X = 1 - 
= 1 - X
kt = In 
k = In
/ t
X = 98% = 0.98 (conversion in PFR ) insert the value into the above equation then
K = 0.156 
Calculating Da for a closed vessel
; Da = tk
= 25 * 0.156 = 3.9
calculate Peclet number Per using this equation
0.65 = 
therefore

solving the Non-linear equation above( Per = 1.5 )
Attached is the Remaining part of the solution
Answer:
The following program is in C++.
#include <bits/stdc++.h>
using namespace std;
void lastChars(string s)
{
int l=s.length();
if(l!=0)
{
cout<<"The last character of the string is: "<<s[l-1];
}
}
int main() {
string s;//declaring a string..
getline(cin,s);//taking input of the string..
lastChars(s);//calling the function..
return 0;
}
Input:-
Alex is going home
Output:-
The last character of the string is: e
Explanation:
In the function lastChars() there is one argument that is a string.I have declared a integer variable l that stores the length of the string.If the length of the string is not 0.Then printing the last character of the string.In the main function I have called the function lastChars() with the string s that is prompted from the user.