The origin is (0,0)
y = mx + b
slope(m) = 2/3
(0,0)...x = 0 and y = 0
now we sub and find b, the y int
0 = 2/3(0) + b
0 = b
so ur equation is y = 2/3x + 0...or just y = 2/3x
1. -2<2 2. -4> -5. -20<20. -7>-8. -10<-1. 50>-100
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.