Vidyalelo
Ruby Programming · Q108

Basic Syntax in Ruby

Programming · Ruby Programming · question 108

Q108

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"

A.
amil jones
B.
What's your first name? amil
My name is Amil
Answer
C.
What's your first name? amil
My name is limA
D.
My name is limA

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board