Assume the availability of class named IMath that provides a static method , toThePowerOf is a method that accepts two int arguments and returns the value of the first parameter raised to the power of the second.

LANGUAGE: JAVA

CHALLENGE:

Assume the availability of class named IMath that provides a static method , toThePowerOf is a method that accepts two int arguments and returns the value of the first parameter raised to the power of the second.

An int variable cubeSide has already been declared and initialized . Another int variable , cubeVolume, has already been declared .

Write a statement that calls toThePowerOf to compute the value of cubeSide raised to the power of 3 and that stores this value in cubeVolume.

SOLUTION:

cubeVolume = IMath.toThePowerOf(cubeSide, 3);