C is the correct answer to the problem
When a hostname is configured through the Cisco cli, there are some naming <span>conventions are part of the guidelines that should be followed.
From these conventions:
1- the name of the host shouldn't contain any spaces.
2- the name of the host should always begin with a letter
3- the name of the host should be less than 64 characters in length.</span>
Answer:
Following are the program in Python programming language
def pyramid_volume(base_length,base_width,pyramid_height):
base_area=base_length*base_width
volume=base_area*pyramid_height*(1/3)
return volume
print('volume for 4.5,2.1,3.0 is:',pyramid_volume(4.5,2.1,3.0))
Explanation:
Here, we define a function "pyramid_volume()" and pass an arguments "base_length,base_width,pyramid_height"
inside that program we have calculated the area of the pyramid and after that we have calculated the volume of that pyramid and return the volume.
Outside of the function we have called the function by passing the arguments.