When using parallax, astronomers calculate distance from the sun and not earth to improve on the accuracy of their measurement, since parallax angle decreases as star distance increases.
<h3>
What is parallax distance?</h3>
Parallax enables astronomers to measure the distances of far away stars by using trigonometry.
<h3>Why does astronomers measure parallax distance from sun?</h3>
As the distance of star increases, the parallax angle decreases, and great degree of accuracy is required for its measurement.
So taking a refence from the earth instead of the sun will impact the accuracy of their measurement.
Thus, when using parallax, astronomers calculate distance from the sun and not earth to improve on the accuracy of their measurement, since parallax angle decreases as star distance increases.
Learn more about parallax distance here: brainly.com/question/2128443
#SPJ1
Answer:
Acceleration is increasing or decreasing speed or changing direction, whereas velocity is how much distance you cover in a given amount of time.
Explanation:
I hope this helps :D
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