which return statement in the following function will return the cubic root of a number? def cubic root(num): return group of answer choices return num**1/3 return num*num*num return num**(1./3) return num**(1/3)