Q:

Ruby program to demonstrate the Boolean NOT (!) operator

belongs to collection: Ruby Basic Programs

0

In this program, we will use the boolean NOT (!) operator to reverse the boolean value from TRUE to FALSE and vice versa.

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 Boolean NOT (!) operator is given below. The given program is compiled and executed on UBUNTU 18.04 successfully.

# Ruby program to demonstrate the 
# Boolean NOT "!" operator

num1 = 2
num2 = 5

puts("Result1: ",!(num1>3) )
puts("Result2: ",!(num2==5))

Output:

Result1: 
true
Result2: 
false

Explanation:

In the above program, we created two variables num1num2 that are initialized with 2, 5 respectively. Then we reversed the result of conditions from TRUE to FALSE and vice versa 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 exponential operat... >>
<< Ruby program to find the 1\'s complement of t...