The method calcPyramidVolume is an illustration of the java methods; where the methods are executed when called or evoked
The program written in Java, where comments are used to explain each action is as follows:
//This defines the calcPyramidVolume method
public static double calcPyramidVolume(double baseLength,double baseWidth, double pyramidHeight) {
//This calculates the volume of the pyramid
double PyramidVolume = calcBaseArea(baseLength,baseWidth) * pyramidHeight;
//This returns the volume of the pyramid
return PyramidVolume;
}
Read more about java methods at:
https://brainly.com/question/19271625