Answer:
Given :- the volume of the pyramid is 36 cubic cm , find the volume of the prism on same base and same height as pyramid .
Answer :-
we know that,
Volume of pyramid = (1/3) * Base area * height .
Volume of prism = Base area * height .
so,
→ Volume of pyramid = 36 cm³
→ (1/3) * Base area * height = 36
→ Base area * height = 36 * 3
→ Base area * height = 108 cm³.
then,
→ Volume of prism = Base area * height .
→ Volume of prism = 108 cm³ (Ans.)
Explanation:
Answer:
The picture below with the answer. Hope it helps, have a great day/night and stay safe! Length of the coil,
Answer:
#Initialise a tuple
team_names = ('Rockets','Raptors','Warriors','Celtics')
print(team_names[0])
print(team_names[1])
print(team_names[2])
print(team_names[3])
Explanation:
The Python code illustrates or printed out the tuple team names at the end of a season.
The code displayed is a function that will display these teams as an output from the program.