Computer Science, asked by roshni943150, 6 months ago

The arthimetic operator used for exponation is ---------------​

Answers

Answered by sankarandsundar
2

In addition to addition +, subtraction -, multiplication * and division /, Fortran has an exponential operator **. Thus, raising X to the Y-th power is written as X**Y.

Answered by Anonymous
2

Answer:

In python this operator is used (**)

syntax= a**b

In JAVA, there is no such operator but there is a method :Math.pow(a, b) I.e a to the power b

In C++, it is similar to JAVA

Similar questions