πŸ“Š Ruby
Q. What is the output of the given code?
i = 3
while i > 0 do
puts i
i -= 1
end

j = 3
until j == 0 do
puts j
j -= 1
end
  • (A) 1 2 3 1 2 3
  • (B) Nil
  • (C) 0 1 2 3 4 5 6 7 8 9
  • (D) None of the mentioned
πŸ’¬ Discuss
βœ… Correct Answer: (C) 0 1 2 3 4 5 6 7 8 9

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
117
Total Visits
πŸ“½οΈ
2 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
85%
Success Rate