9/10 is the answer. Basic elementary math
Answer:
The line equation is y = 1.5x + 3
Fill the first space with '1.5' and the second with '3'
Step-by-step explanation:
The generic model for a line equation is:
y = ax + b
To find the parameters 'a' and 'b', we can use two points of the graph in the equation.
Using the point (0, 3), we have:
3 = 0*a + b
b = 3
Using the point (-2, 0) and the value of b above, we have:
0 = -2*a + b
2a = 3
a = 1.5
So the line equation is y = 1.5x + 3
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.
I think the answer may be C