What is the output of the given code
print "What's your first name?"
first_name=gets.chomp
a=first_name.capitalize
a=a.reverse
puts"My name is #{a}"
amil jones
What’s your first name amil
My name is amil
My name is limA
View Answer
Correct Answer: B — What’s your first name amil
Explanation:
a=a.reverse reverses 'Amil' to 'limA'. The prompt is printed first when asking for input.
