which of the following could replace the body of compute, so that the new version returns the identical result as the original for all n? group of answer choices return 4 * n; return 8 * n; return (int) math.pow(n, 4); return 64 * n; return (int) math.pow(n, 8);