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 trialChristen Smith
39 PointsI don't understand the Binary code
I am trying to figure out the Binary code but I can't!
2 Answers
James Ackerman
14,099 PointsWell, I got the answer right, so I thin I know what they're asking in the quiz. I haven't watched the video on Treehouse, but here's a good video from the Network+ exam about how to do binary math...
http://www.professormesser.com/network-plus/n10-006/binary-math-3/
Balazs Peak
46,160 PointsLook at it this way:
Ternary (normal numbers) symbolize a value which adds up by:
multiplying the first number (from the right) with ten to the 0 power, multiplying the second number (from the right) with then to the 1st power, third number: hundreds -> ten to the 2nd power, fourth number: thousands -> ten to the 3rd power....
.... and then adding them all together.
Binary numbers work the same, but with 2 to the different powers.
Christen Smith
39 PointsChristen Smith
39 PointsI don't understand