The initial void ratio is the <em>parameter </em>which is used to show the structural foundations for each <em>specimen of sand </em>so that the method and speed of compression would be <em>measured</em>.
Relative density is the mass per unit volume of each specimen of sand which is <em>measured </em>and it has to do with the<em> relative ratio</em> of the density of the sand.
Unit weight is the the exact weight per cubic foot of the sand which is measured.
Please note that your question is incomplete so I gave you a general overview to help you better understand the concept
Read more here:
brainly.com/question/15220801
Answer:
Explanation:
Inductance = 250 mH = 250 / 1000 = 0.25 H
capacitance = 4.40 µF = 4.4 × 10⁻⁶ F ( µ = 10⁻⁶)
ΔVmax = 240, f frequency = 50Hz and I max = 110 mA = 110 /1000 = 0.11A
a) inductive reactance = 2πfl = 2 × 3.142 × 50 × 0.25 H =78.55 ohms
b) capacitive reactance =
= 1 / ( 2 × 3.142× 50 × 4.4 × 10⁻⁶ ) = 723.34 ohms
c) impedance =
= 240 / 0.11 = 2181.82 ohms
Answer:
135 hour
Explanation:
It is given that a carburizing heat treatment of 15 hour will raise the carbon concentration by 0.35 wt% at a point of 2 mm from the surface.
We have to find the time necessary to achieve the same concentration at a 6 mm position.
we know that
where x is distance and t is time .As the temperature is constant so D will be also constant
So
then
we have given
and we have to find
putting all these value in equation

so
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language