What is the output of the given code?
print "what's your first name?"
first_name=gets.chomp
a=first_name.capitalize
"a".reverse
puts"My name is #{a}"1.mil jones
2.What’s your first name? amil My name is Amil
3.My name is lima
4.My name is limA
Answer:2