Answer:
(a) See attachment
(b) The two planes are parallel because the intercepts for plane [220] are X = 0,5 and Y = 0,5 and for plane [110] are X = 1 and Y = 1. When the planes are drawn, they keep the same slope in a 2D plane.
(c) 
Explanation:
(a) To determine the intercepts for an specific set of Miller indices, the reciprocal intercepts are taken as follows:
For [110]

For [220]

The drawn of the planes is shown in the attachments.
(b) Considering the planes as two sets of 2D straight lines with no intersection to Z axis, then the slope for these two sets are:
For (1,1):

For (0.5, 0.5):

As shown above, the slopes are exactly equal, then, the two straight lines are considered parallel and for instance, the two planes are parallel also.
(c) To calculate the d-spacing between these two planes, the distance is calculated as follows:
The Miller indices are already given in the statement. Then, the distance is:


Answer:

Explanation:
The pump is modelled after the First Law of Thermodynamics. A reversible process means that fluid does not report any positive change in entropy:

The properties of the fluid at entrance and exit are, respectively:
Inlet (Saturated Liquid)




Outlet (Subcooled Liquid)




The power input to the pump is computed hereafter:


My day as been going awesome
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.
Answer:
This is a function written in Python Programming Language to check whether a given number is prime or not.
def is_prime(n):
if (n==1):
return False
elif (n==2):
return True;
else:
for x in range(2,n):
if(n % x==0):
return False
return True
print(is_prime(9))
Explanation:
<h2 />