What is the output of the given code?
length=gets.chomp
case length.length
when length=4
print "length is 4"
when length=5
print "length is 5"
end
length=gets.chomp
case length.length
when length=4
print "length is 4"
when length=5
print "length is 5"
endA. ruby
length is 4
B. ruby
length is 5
C. abc
length is 4
D. syntax error
Answer: Option A
Related Questions on Control Structures in Ruby
In Ruby, what does the unless keyword do?
A. Executes code if condition is true
B. Executes code if condition is false
C. Breaks out of loop if condition is true
D. Executes code only once if condition is true
What is the purpose of the case statement in Ruby?
A. To define a class
B. To handle multiple conditions with one expression
C. To declare a variable
D. To perform mathematical calculations

Join The Discussion