Answer:
Ponding will occur in 40mins
Explanation:
We say that the infiltration rate is the velocity or speed at which water enters into the soil. This often times is measured by the depth (in mm) of the water layer that can enter the soil in one hour. An infiltration rate of 15 mm/hour means that a water layer of 15 mm on the soil surface, will take one hour to infiltrate.
Consider checking attachment for the step by step solution.
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}
Answer:
b
Explanation:
i think do kill me if im wrong
Answer:
a) Selection and control of material
b) Control of stress
c) Control of the environment
Explanation:
The measures that can be taken to control and prevent the formation of strss corrosion cracks are:
a) Selection and control of material
It deals with the selection of the best quality material that can resist the stress corrosion cracks to a high extent.
b) Control of stress
It is to control or reduce the intensity of the major stress that causes the stress corrosion cracks.
c) Control of the environment
It includes the prevention of the material from the corrosive environment by removing the component from the region or controlling the environment condition around the object.