Answer:
x=26
Step-by-step explanation:
3x +12 =90
subtract 12 from each side
3x=78
divide 3 from each side
x=26
Answer:
The equation for the object's height s at time t seconds after launch is s(t) = –4.9t2 + 19.6t + 58.8, where s is in meters. When does the object strike the ground.
Step-by-step explanation:
Answer:
B. 56
l hope it is correct or maybe
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.