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 trialMirali Mirzayev
1,980 PointsConditional Statements
The question states ('lion' > zebra') and asks whether its true or false. so i selected True because the first letter of Lion "L" comes before the first Letter of Zebra "Z" in the alphabet. However the answer was checked and it showed that i was wrong by the system. Why?
3 Answers
KRIS NIKOLAISEN
54,971 PointsWell done! When comparing strings, the first letter of the first string is compared to the first letter of the second string. Since 'l' comes before 'z' in the alphabet, 'lion' is not greater than 'zebra.'
Jason Anders
Treehouse Moderator 145,860 PointsHi Mirali,
The question is asking whether "lion" is greater than "zebra". the values being compared are the ASCII codes for the letters. "l" has a code lower than that of "z", so it is not "greater than".
You can have a look a this ASCII table or just Google one you may prefer better.
Hope that helps :)
Mirali Mirzayev
1,980 PointsThank you guys you have been a great help:)