A
Q. What is the output of the given code?
a=true
b=false
if a && b
puts "False"
elsif a || b
puts "True"
else
puts "neither true nor false"
end
- Correct Answer - Option(B)
- Views: 5
- Filed under category Ruby
- Hashtags:
Discusssion
Login to discuss.