Answer:
it's 360.
Step-by-step explanation:
138+72+60+90=360
Answer:
A.)lPace the compass needle on M and, keeping the compass width the same, draw two arcs that intersect
Step-by-step explanation:
In the construction of a line perpendicular to AB←→ and passing through an external point M the first step must be"Place the compass needle on M and, keeping the compass width the same, draw two arcs that intersect AB←→". After that you can draw arcs from intersection points (keeping the compass width same as before) to the opposite side of M, name it as N than use straightedge to draw line passes through M and n that would be perpendicular line to AB.
Answer:
Divide 12 by 4 first to figure out how many gallons are in each 1/4 of the tank.
12/4=3
So if I added another 1/4 to the capacity:
It could hold 15 gallons.
All you have to do to find how many half bottles can be filled is to times 15 by two since we are filling half gallon bottles.
15x2=30
30 bottles.
Answer:
2/12
Step-by-step explanation:
7/12 -5/12 = 2/12
the number 2 can go into 2 once and 12 six times so you should get 1/6 as your answer
Using pseudocode:
printArray(arr[], integers)
DECLARE integers
integers = SizeOf(arr)
FOR i = 1 to integers // loop from 1 to the number of elements in arr[]
print(i)
print('')
i = i + 1
ENDFOR
END