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:
C
Explanation:
One of the disadvantages of solar cells is that electricity storage systems are not readily available. Excess energy generated by the solar panels are wasted except they are stored by solar batteries for later use. There are various systems for storing electricity from solar cells apart from solar batteries which is the common storage system. An example of another electricity storage system for solar cell is using the water electrolyzer to store solar energy which can be used to later generate hydroelectricity.
Advantages of a solar cell includes Renewable energy, Economy-friendly and environmental-friendly energy and good durability
Answer:
The settlement that is expected is 1.043 meters.
Explanation:
Since the pre-consolidation stress of the layer is equal to the effective stress hence we conclude that the soil is normally consolidated soil
The settlement due to increase in the effective stress of a normally consolidated soil mass is given by the formula

where
'H' is the initial depth of the layer
is the Compression index
is the inital void ratio
is the initial effective stress at the depth
is the change in the effective stress at the given depth
Applying the given values we get

Answer:
Alice is correct.
The loop are dependent.
Explanation:
for(i = 1; i <= N; i = (i*2)+17 )
for(k = i+1; k <= i+N; k = k+1) // notice i in i+1 and i+N
printf("B")
This is a nested for-loop.
After the first for-loop opening, there is no block of statement to be executed rather a for-loop is called again. And the second for-loop uses the value of i from the first for-loop. The value of N is both called from outside the loop.
So, the second for-loop depend on the first for loop to get the value of i. For clarity purpose, code indentation or use of curly brace is advised.