Answer:
b)false
Explanation:
Rolling is a process in which work piece passes through rolls to produce desired out put of the work piece.Rolling is a metal forming process.
We know that friction force is responsible for motion of work piece between rolls.If friction force is so small at the entrance side then work piece will not enter in the forming zone and forming process will not occurs.So the friction force should be high at the entrance side and low at the exit side.
So given statement is wrong.
Answer:
86701 Micrometers.
Explanation:
Multiply 0.86701 dm by 100,000 to get 86701 um.
Answer:
a. 0.4544 N
b.
Explanation:
For computing the normality and molarity of the acid solution first we need to do the following calculations
The balanced reaction
= 0.27264 g
= 0.006816 mol
Now
Moles of needed is
= 0.003408 mol
= 0.333984 g
Now based on the above calculation
a. Normality of acid is
= 0.4544 N
b. And, the acid solution molarity is
= 0.00005112
=
We simply applied the above formulas
Hi, you haven't provided the programing language in which you need the code, I'll just explain how to do it using Python, and you can apply a similar method for any programming language.
Answer:
1. def pyramid_volume(base_length, base_width, pyramid_height):
2. volume = base_length*base_width*pyramid_height/3
3. return(volume)
Explanation step by step:
- In the first line of code, we define the function pyramid_volume and it's input parameters
- In the second line, we perform operations with the input values to get the volume of the pyramid with a rectangular base, the formula is V = l*w*h/3
- In the last line of code, we return the volume
In the image below you can see the result of calling the function with input 4.5, 2.1, 3.0.