Answer: if the width was not effected then the width is still 24 inches
if the area stayed the same, then
find area
area=legnth times width
288=12 times 24
so the new height./legnth =2
288=2 times width
divide by 2
144=width'
the new width =144
Answer:
least common denominator=6
Step-by-step explanation:
For the fractions, 1/3 and 1/6th, 3*2=6. making the fraction 2/6 and leaving the other the same 1/6th.
The speed of a yacht traveling a distance of 1.357 km in 165 minutes is 0.5 km/h
<h3>What is Speed?</h3>
The speed of an object is the distance covered by the object in respect to time.
Mathematically:


- We know that 60 minutes = 1 hour
- 165 minutes = 2.75 hours

Speed = 0.5 km/hour
Learn more about calculating speed here:
brainly.com/question/4931057
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.