Q:

Ruby program to demonstrate the abs2() function

belongs to collection: Ruby Basic Programs

0

In this program, we will create two variables and initialize them with some values. Then we will use the abs2() function with created variables. The abs2() function returns the square of the given number.

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

# Ruby program to demonstrate 
# the abs2() function

num1 = Complex(2,3); 
num2 = -15;

print num1.abs2(),"\n";
print num2.abs2(),"\n";

Output:

13
225

Explanation:

In the above program, we created two variables num1num2 and initialized them with some values. Then we used the abs2() function with both variables to get the square of numbers 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 get the magnitude of the given num... >>
<< Ruby program to demonstrate the arg() function...