Q:

Ruby program to demonstrate the inspect() function

0

In this program, we will create 3 variables with some initial value. Then we will use inspect() to get the value of the variable as a string.

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 inspect() function is given below. The given program is compiled and executed successfully.

# Ruby program to demonstrate 
# the inspect() function

num1 = 12;  
num2 = Complex(0,0);  
num3 = Complex(2,3);  

print "Num1: "  ,num1.inspect();
print "\nNum2: ",num2.inspect();
print "\nNum3: ",num3.inspect();

Output:

Num1: 12
Num2: (0+0i)
Num3: (2+3i)

Explanation:

In the above program, we created three variables with some initial values. Then we used inspect() function with created variable to get the value of variables as a string and printed the result.

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

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now