What is the output of the given code?
i = 0
while i < 5
puts i
i=(i+1)**2
end
i = 0
while i < 5
puts i
i=(i+1)**2
end
A. 1 2 3 4 5
B. 0 1 4
C. 0 1
D. 1 4
Answer: Option B
i = 0
while i < 5
puts i
i=(i+1)**2
end
A. 1 2 3 4 5
B. 0 1 4
C. 0 1
D. 1 4
Answer: Option B
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