×

Ruby Tutorial

Ruby Basics

Ruby Control Statements

Ruby Methods

Ruby Classes and Methods

Ruby Arrays

Ruby Sets

Ruby Strings

Ruby Classes & Objects

Ruby Hash

Ruby Tools

Ruby Functions

Ruby Built-in Functions

Misc.

Ruby Programs

Ruby program to demonstrate the logical operators

Last Updated : December 15, 2025

Problem Solution

In this program, we will perform Logical "AND" and Logical "OR" operations using logical operators and print results.

Program/Source Code

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

# Ruby program to demonstrate 
# the logical operators

num1 = 5
num2 = 2

puts("Logical AND: ",num1==5 && num2==2)
puts("Logical OR : ",num1==5 || num2==2)
puts("Logical AND: ",num1==4 && num2==2)
puts("Logical OR : ",num1==2 || num2==5)

Output

Logical AND: 
true
Logical OR : 
true
Logical AND: 
false
Logical OR : 
false

Explanation

In the above program, we created two variables num1, num2 that are initialized with 5, 2 respectively. Then we performed logical "AND" and logical "OR" operations using logical operators and printed the result.

Ruby Basic Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.