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 trialSC3 Rocks
33,474 PointsHi, could someone help with me a different way of translating binary code, other than what is introduced in the video?
I'm having trouble with the 5 question binary quiz, and I could use some help figuring out this question: What number is represented by the byte 00000011? - Thank you in advance for your help.
1 Answer
KRIS NIKOLAISEN
54,971 PointsHere is an online converter with an explanation on how to do the conversion:
https://www.rapidtables.com/convert/number/binary-to-decimal.html?x=011
011 = (0 × 2²) + (1 × 2¹) + (1 × 2⁰) = 3
SC3 Rocks
33,474 PointsSC3 Rocks
33,474 PointsTook a look at the link you posted - Still pretty confused. The way they explain binary is a little too complex for me. Thanks for trying all the same though. I do appreciate the effort... P