What is the output of the following?
if 1<2
print "one is less than two"
end
if 1<2
print "one is less than two"
end
A. One is less than two
B. Syntax error
C. 1<2
D. None of the mentioned
Answer: Option A
if 1<2
print "one is less than two"
end
A. One is less than two
B. Syntax error
C. 1<2
D. None of the mentioned
Answer: Option A
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