Which of the following is the correct way to define a constant in Ruby?
A. CONSTANT_NAME = value
B. constant_name = value
C. CONSTANT_NAME : value
D. constant name = value
Answer: Option A
A. CONSTANT_NAME = value
B. constant_name = value
C. CONSTANT_NAME : value
D. constant name = value
Answer: Option A
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