Q:

Ruby program to get total bits required for the given number using library function

belongs to collection: Ruby Basic Programs

0

In this program, we will create some variables. Then we will get the total number of bits are required for a number using library function bit_length().

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 get the total bits required for the given number using the library function is given below. The given program is compiled and executed successfully.

# Ruby program to get total bits required for 
# given number using library function

num1 = 22;
num2 = 8;
num3 = 3;
num4 = 0;

print "Total bits required for num1: ",num1.bit_length(),"\n";
print "Total bits required for num2: ",num2.bit_length(),"\n";
print "Total bits required for num3: ",num3.bit_length(),"\n";
print "Total bits required for num4: ",num4.bit_length(),"\n";

Output:

Total bits required for num1: 5
Total bits required for num2: 4
Total bits required for num3: 2
Total bits required for num4: 0

Explanation:

In the above program, we created some variables. Then we got the total number of bits required for a number using library function bit_length() 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 GCD and LCM using gcdlcm()... >>
<< Ruby program to compare numbers and strings using ...