A
Q. What is the output of the given code?
for counter in 1..5
case counter
when 0 .. 2
puts counter
puts "baby"
when 3 .. 6
puts counter
puts "little child"
when 7 .. 12
puts counter
puts "child"
else
puts counter
puts "adult"
end
end
- Correct Answer - Option(C)
- Views: 6
- Filed under category Ruby
- Hashtags:
Discusssion
Login to discuss.