Answer:
Hope it helps!
Step-by-step explanation:
Sub y=5x into y=2x+3
so
5x=2x+3
3x=3
x=1
plug x=1 into y=5x
y=5
Checking work
Plug (1,5) into y=2x+3
5=2(1)+3
5=5
Plug (1,5) into y=5x
5=5(1)
5=5
Answer:
C
Step-by-step explanation:
We want a line of best fit, which means we want to create a line that the data points will lie closest to.
One thing we can do is find the slope between the bottom-leftmost point and the top-rightmost point. This is because if we were to draw a line connecting these two, it will cut through the data quite well.
Those two points are (9, 15) and (16, 18), so the slope is change in y divided by the change in x:
(18 - 15) ÷ (16 - 9) = 3 ÷ 7 ≈ 0.4
Eliminate A and B.
Now we need to determine the y-intercept. This needs no calculations; simply look at the graph: there's no way a line cutting through the y-intercept point of (0, 18) will perfectly match the data points; instead it must be a y-intercept lower than 18. So, eliminate D.
The answer is C.
Answer:
x = -1
Step-by-step explanation:
When an exponent is negative, you have to move it to the denominator (or to the numerator if it's already on the denominator). Since the answer is
, you know that the 2 has been raised to the power of 1 (any number to the power of 1 is the same number), so you just make it negative. Hope that helps!
Answer:
for(j = n; j > 0; j--)
System.out.print(\"*\");
Step-by-step explanation:
-A for loop is a repetition control structure.
-It allows the efficiency to write a loop that would otherwise be written a couple of times.
-The output is a single line comprising n asterisks,
-The number of asterisks printed will be equivalent to the n-value declared.