A group of students toured a limestone cave in northwest Georgia.
Which of these best explains how the limestone caves in Georgia were formed?
A. Plant roots split the rock.
B. Acidic water dissolved the rock.
C. Animals burrowed into the rock.
D. Ice formed and broke up the rock.
The mass needed at peg 1 is a 5g mass.
The 15g should hang at peg 5.
The reason is force x distance clockwise is equal to force x distance anti-clockwise
Law of universal gravitation:
F = GMm/r²
F = gravitational force, G = gravitational constant, M & m = masses of the objects, r = distance between the objects
F is proportional to both M and m:
F ∝ M, F ∝ m
F is proportional to the inverse square of r:
F ∝ 1/r²
Calculate the scaling factor of F due to the change in M:
k₁ = 2M/M = 2
Calculate the scaling factor of F due to the change in m:
k₂ = 2m/m = 2
Calculate the scaling factor of F due to the change in r:
k₃ = 1/(4r/r)² = 1/16
Multiply the original force F by the scaling factors to obtain the new force:
Fk₁k₂k₃
= F(2)(2)(1/16)
= F/4
Answer:
Sorry, I don't understand this language, sorry dear
Answer:
True
Explanation:
If there's no preference over the string case (upper case or lower case), one can convert both strings to upper case or to lowercase and then compare the converted strings to test if they're equal or not.
An Illustration is
string a = "Boy"
string b = 'bOy"
if(a.ToUpper() == b.ToUpper() || a.ToLower() == b.ToLower())
{
Print "Equal Strings"
}
else
{
Print "Strings are not equal";
}
The above will first convert both strings and then compare.
Since they are the same (after conversion), the statement "Equal Strings" will be printed, without the quotes