Answer:
See attachment for completed question
Explanation:
Given that; Brainly.com
What is your question?
mkasblog
College Engineering 5+3 pts
The dry unit weight of a soil sample is 14.8 kN/m3.
Given that G_s = 2.72 and w = 17%, determine:
(a) Void ratio
(b) Moist unit weight
(c) Degree of saturation
(d) Unit weight when the sample is fully saturated
See complete solving at attachment
Tell me why i got this question got it right and now won’t remember but i’ll get back at you when i remember
Answer:
a) 149 kJ/mol, b) 6.11*10^-11 m^2/s ,c) 2.76*10^-16 m^2/s
Explanation:
Diffusion is governed by Arrhenius equation

I will be using R in the equation instead of k_b as the problem asks for molar activation energy
I will be using

and
°C + 273 = K
here, adjust your precision as neccessary
Since we got 2 difusion coefficients at 2 temperatures alredy, we can simply turn these into 2 linear equations to solve for a) and b) simply by taking logarithm
So:

and

You might notice that these equations have the form of

You can solve this equation system easily using calculator, and you will eventually get

After you got those 2 parameters, the rest is easy, you can just plug them all including the given temperature of 1180°C into the Arrhenius equation

And you should get D = 2.76*10^-16 m^/s as an answer for c)
Answer:
The solution code is written in Java.
- public class Main {
-
- public static void main(String[] args) {
-
- Scanner inNum = new Scanner(System.in);
- System.out.print("Enter number of toss: ");
- int num = inNum.nextInt();
-
- for(int i=0; i < num; i++){
- System.out.println(toss());
- }
- }
-
- public static String toss(){
- String option[] = {"heads", "tails"};
- Random rand = new Random();
- return option[rand.nextInt(2)];
- }
- }
Explanation:
Firstly, we create a function <em>toss()</em> with no parameter but will return a string (Line 14). Within the function body, create an option array with two elements, "heads" and "tails" (Line 15). Next create a Random object (Line 16) and use <em>nextInt()</em> method to get random value either 0 or 1. Please note we need to pass the value of 2 into <em>nextInx() </em>method to ensure the random value generated is either 0 or 1. We use this generate random value as an index of <em>option </em>array and return either "heads" or "tails" as output (Line 17).
In the main program, we create Scanner object and use it to prompt user to input an number for how many times to toss the coin (Line 6 - 7). Next, we use the input num to control how many times a for loop should run (Line 9). In each round of the loop, call the function <em>toss() </em>and print the output to terminal (Line 10).