EXP - Returns the result of raising a number to a power.
EXP( base, exponent)
MESSAGE EXP(10, 2) VIEW-AS ALERT-BOX. // Messages 100
SQRT - Returns the square root of a number.
SQRT( number)
MESSAGE "The square root of 256 is " SQRT(256) VIEW-AS ALERT-BOX. // Messages 16
M...