What is the output of the given code?
boolean_1 = 77<78
puts(boolean_1)
boolean_1 = 77<78
puts(boolean_1)A. Nil
B. True
C. False
D. Error
Answer: Option B
boolean_1 = 77<78
puts(boolean_1)A. Nil
B. True
C. False
D. Error
Answer: Option B
What does the 'puts' method do in Ruby?
A. Prints to console
B. Converts to string
C. Finds the length
D. Reads input from user
Join The Discussion