Answer:
electrical
computer
mechanical
and manufacturing .... I think
Answer:
option c is correct
47.2%
Explanation:
given data
consisting of refrigerant = 134 a
volume V = 0.01 m³/kg
pressure P = 1MPa = 1000 kPa
to find out
quality of the R 134a
solution
we will get here value of volume Vf and Vv from pressure table 60 kpa to 3 Mpa for 1 Mpa of R134 a
that is
Vf = 0.0008701 m³/kg
Vv = 0.0203 m³/kg
so we will apply here formula that is
quality = (V - Vf) / (Vv - Vf) ............1
put here value
quality = (0.01 - 0.0008701 ) / ( 0.0203 - 0.0008701 )
quality = 0.4698
so quality is 47 %
SO OPTION C IS CORRECT
Answer:
Inside the Sun.
Explanation:
Inside the Sun, this process begins with protons (which is simply a lone hydrogen nucleus) and through a series of steps, these protons fuse together and are turned into helium. This fusion process occurs inside the core of the Sun, and the transformation results in a release of energy that keeps the sun hot.
Answer:
A)The sketches for the required planes were drawn in the first attachment.
B)The sketches for the required directions were drawn in the second attachment.
To draw a plane in a simple cubic lattice, you have to follow these instructions:
1- the cube has 3 main directions called "a", "b" and "c" (as shown in the first attachment)
2- The coordinates of that plane are written as: π:(1/a₀ 1/b₀ 1/c₀) (if one of the coordinates is 0, for example (1 1 0), c₀ is ∞, therefore that plane never cross the direction c).
3- Identify the points a₀, b₀, and c₀ at the plane that crosses this main directions and point them in the cubic cell.
4- Join the points.
To draw a direction in a simple cubic lattice, you have to follow these instructions:
1- Identify the points a₀, b₀, and c₀ in the cubic cell.
2- Draw the direction as a vector-like (a₀ b₀ c₀).
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.