The sample Ruby code has no syntax errors. What does the code through lines 3-5 mean? And what is printed to the screen/console?
Any Suggestions ? 
class Sample
attr_writer :name
attr_reader :name do
"Mr. " + @name
end
end
s = Sample.new
s.name = "Ali"
puts s.name
3a455903-3dff-4ae8-b8ff-fe4fe263b3cc|1|3.0