Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Agnieszka Uchacz
855 Pointswhat number is represented by 00000111?
quiz
2 Answers

Jennifer Nordell
Treehouse TeacherHi there, Agnieszka Uchacz! To do the calculation, start at the far right of this number. Note that I will be using ^
to represent "to the power of". You will end up with the following expression:
(1 x 2^0) + (1 x 2^1) + (1 x 2^2)
This is equivalent to:
1 + 2 + 4
So the final value will be 7.
Hope this helps!

Indiya Gooch
12,063 PointsHey there!
This handbook may help with Bitwise & Binary Conversion (pages 77-80)n: https://github.com/ChairBearLearning/software-theory/blob/master/Software%20Languages%20Theory.pdf
You'd find the binary conversion table helpful - it outputs the value 7 for you.