Answer:
Mass, in physics, quantitative measure of inertia, a fundamental property of all matter.
Explanation:
Mass is the matter that makes up objects
Answer:
a). Work transfer = 527.2 kJ
b). Heat Transfer = 197.7 kJ
Explanation:
Given:
= 5 Mpa
= 1623°C
= 1896 K
= 0.05 
Also given 
Therefore,
= 1 
R = 0.27 kJ / kg-K
= 0.8 kJ / kg-K
Also given : 
Therefore,
= 

= 0.1182 MPa
a). Work transfer, δW = 
![\left [\frac{5\times 0.05-0.1182\times 1}{1.25-1} \right ]\times 10^{6}](https://tex.z-dn.net/?f=%5Cleft%20%5B%5Cfrac%7B5%5Ctimes%200.05-0.1182%5Ctimes%201%7D%7B1.25-1%7D%20%20%5Cright%20%5D%5Ctimes%2010%5E%7B6%7D)
= 527200 J
= 527.200 kJ
b). From 1st law of thermodynamics,
Heat transfer, δQ = ΔU+δW
= 
=![\left [ \frac{\gamma -n}{\gamma -1} \right ]\times \delta W](https://tex.z-dn.net/?f=%5Cleft%20%5B%20%5Cfrac%7B%5Cgamma%20-n%7D%7B%5Cgamma%20-1%7D%20%5Cright%20%5D%5Ctimes%20%5Cdelta%20W)
=![\left [ \frac{1.4 -1.25}{1.4 -1} \right ]\times 527.200](https://tex.z-dn.net/?f=%5Cleft%20%5B%20%5Cfrac%7B1.4%20-1.25%7D%7B1.4%20-1%7D%20%5Cright%20%5D%5Ctimes%20527.200)
= 197.7 kJ
In metallurgy, non-ferrous metals are metals or alloys that do not contain iron in appreciable amounts. Generally more costly than ferrous metals, non-ferrous metals are used because of desirable properties such as low weight, higher conductivity, non-magnetic property or resistance to corrosion
Answer:
a) Cr = Co - Fx / D
b) ΔC / Δx = ( CR - Cr ) / ( xR - xRo )
Explanation:
A) Derive an expression for the profile c(r) inside the tissue
F = DΔC / X = D ( Co - Cr ) / X ------ 1
where : F = flux , D = drug diffusion coefficient
X = radial distance between Ro and R
Hence : Cr = Co - Fx / D
B) Express the diffusive flux at outer surface of the balloon
Diffusive flux at outer surface = ΔC / Δx = CR - Cr / xR - xRo
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.