What does the `retry` keyword do when used within a loop in Ruby?
A. Repeats the current iteration of the loop
B. Restarts the loop from the beginning
C. Exits the loop
D. Skips the current iteration of the loop
Answer: Option B
A. Repeats the current iteration of the loop
B. Restarts the loop from the beginning
C. Exits the loop
D. Skips the current iteration of the loop
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