Answer: negative.
Step-by-step explanation:
We know that the slope of the line 
Therefore, the slope for the given data

Hence, the word which describes the slope of the line representing the data in the table = negative.
Answer:
2-5
Step-by-step explanation:
1/4x -2 = -6 + 5/12x
3x - 24 = -72 +5x
3x -5x = -72 +24
-2x = -48
x = 24
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.