A

Admin • 831.35K Points
Coach

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
  • Correct Answer - Option(C)
  • Views: 10
  • Filed under category Ruby
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.