Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMateusz Hyla
128 PointsError in Quiz with first methods in Ruby
In This quiz 2 questions has errors.
I write proper methods in proper order and there is message that it is wrong.
It simply error in code of this quiz.
Cheers
2 Answers
Steve Hunter
57,712 PointsHi Mateusz,
There are three questions in this challenge - I don't know if it selects three questions from a larger pot, but I'll go through the three questions that I receive.
Q. Fill in the blank to call the method that would reverse the characters in a string:
A. name.reverse
Q. Fill in the blank to turn the string "name" in to all uppercase:
A. name.upcase
Q. Fill in the blanks to call the method that would first reverse the characters in a string, and then make them lowercase.
A. name.reverse.downcase
In the last question, make sure you are using both blanks - don't type both methods in the same blank; there's a dot and a second blank for you to use.
I hope that helps.
Steve.
Luke Glazebrook
13,564 PointsHi!
What code are you trying? I think the challenge should be working absolutely fine.
-Luke