Q:

Ruby program to demonstrate the exponential operator (**)

belongs to collection: Ruby Basic Programs

0

In this program, we will find the exponential using the "**" operator. Here right operand becomes the exponent of the left side operator.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to demonstrate the exponential operator is given below. The given program is compiled and executed on UBUNTU 18.04 successfully.

# Ruby program to demonstrate 
# the exponential operator

num1 = 2
num2 = 5

num3 = num1 ** num2
puts("Exponential: ",num3)

Output:

Exponential: 
32

Explanation:

In the above program, we created two variables num1num2 that are initialized with 2, 5 respectively. Then we calculated the exponential using the "**" operator and printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to demonstrate the arithmetic operato... >>
<< Ruby program to demonstrate the Boolean NOT (!) op...