Answer:
-1/4
-4
3/2
1
got it right on edge 2020
Step-by-step explanation:
Correct Answer: First Option
Explanation:
There are two ways to find the actual roots:
a) Either solve the given quadratic equation to find the actual roots
b) Or substitute the value of Possible Rational Roots one by one to find out which satisfies the given equation.
Method a is more convenient and less time consuming, so I'll be solving the given equation by factorization to find its actual roots. To find the actual roots set the given equation equal to zero and solve for x as given below:

This means the actual roots of the given equation are 3 and -4. So first option gives the correct answer.
A correlation coefficient is always a value in between -1 and 1
The closest a coefficient to -1, the correlation is a strong negative correlation
The closest a coefficient to 1, the correlation is a strong positive correlation
The closest a coefficient to 0, there is no correlation at all
The coefficient -0.61 shows a strong negative correlation
This means that the relationship between the age and the violation is an inverse relationship; as age increases, violation decreases
Answer: option C
Answer:
B is 50° and C is 130°
Step-by-step explanation:
complementary angle
x+x=90°
40°+x=90°
x=90°-40°
x=50°
supplementary angles
x+x=180
50+x=180
x=180-50
x=30°
Answer:
bool b = isupper(x);
Step-by-step explanation:
I have written the expression for a char variable x.The isupper(x) will return true if the character x is upper case and false if the character x is lower case.
I have stored the returned value to a bool variable b .So the value of variable b will be true only when the x is in uppercase and false when b is lower case.