Answer:

Explanation:
z = number of atoms
M = Molar mass of zirconium
N = Avogadro’s number
Vc = volume of zirconium unit cell
d = density

z = 6 atoms per unit cell
M = 91.224 g/mol
N = 
d = 




Answer:
1/6
Explanation:
A dice has 6 sides, the probability of 4 appearing is 1/6.
What do y’all do when ya girl go eat lunch and eat it and eat
Answer:
Java is called portable because you can compile a java code which will spew out a byte-code, and then you run that code with Java Virtual Machine. Java Virtual Machine is like an interpreter, which reads the compiled byte-code and runs it. So first of all, you need to install the JVM on the system you want.
Explanation:
Answer:
Explanation:
% Clears variables and screen
clear; clc
% Asks user for input
n = input('Total number of objects: ');
r = input('Size of subgroup: ');
% Computes and displays permutation according to basic formulas
p = 1;
for i = n - r + 1 : n
p = p*i;
end
str1 = [num2str(p) ' permutations'];
disp(str1)
% Computes and displays combinations according to basic formulas
str2 = [num2str(p/factorial(r)) ' combinations'];
disp(str2)
=================================================================================
Example: check
How many permutations and combinations can be made of the 15 alphabets, taking four at a time?
The answer is:
32760 permutations
1365 combinations
==================================================================================