Technician B is right say that hard water potting i usually jut a Surface problem that can be wahed off.
What do you mean by Hard water?
The amount of dissolved calcium and magnesium in the water determines its hardness. Calcium and magnesium are the main dissolved minerals in hard water. The last time you washed your hands, you might have actually felt the effects of hard water.
What do you mean by acid rain?
Any type of precipitation that contains acidic elements, such as sulfuric or nitric acid, that falls to the ground from the atmosphere in wet or dry forms is referred to as acid rain, also known as acid deposition. Rain, snow, fog, hail, and even acidic dust can fall under this category.
Some plants are sensitive to excessive moisture around their root zone, so it may be necessary to increase drainage when growing plants in pots. Additionally, standing water at the bottom of the pot can cause root rot.
Many university agriculture extension agencies have thoroughly debunked the old garden myth that adding rocks to the bottom of a pot will increase drainage.
Learn more about hard water click here:
brainly.com/question/28178305
#SPJ4
Answer:
The elastic modulus of the steel is 139062.5 N/in^2
Explanation:
Elastic modulus = stress ÷ strain
Load = 89,000 N
Area of square cross section of the steel bar = (0.8 in)^2 = 0.64 in^2
Stress = load/area = 89,000/0.64 = 139.0625 N/in^2
Length of steel bar = 4 in
Extension = 4×10^-3 in
Strain = extension/length = 4×10^-3/4 = 1×10^-3
Elastic modulus = 139.0625 N/in^2 ÷ 1×10^-3 = 139062.5 N/in^2
Answer:
if you're talking about the car b-post, the answer is "posts"
Explanation:
looked it up
Answer:
public static int average(int j, int k) {
return (int)(( (long)(i) + (long)(j) ) /2 );
}
Explanation:
The above code returns the average of two integer variables
Line 1 of the code declares a method along with 2 variables
Method declared: average of integer data type
Variables: j and k of type integer, respectively
Line 2 calculates the average of the two variables and returns the value of the average.
The first of two integers to average is j
The second of two integers to average is k
The last parameter ensures average using (j+k)/2