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 trialshobanaannadurai
4,244 Points8 * (( 7 + 8) % 5 + 6 / 2)
Can any one help me on this
3 Answers
shobanaannadurai
4,244 PointsThe answer is 24, copy past 8 * (( 7 + 8) % 5 + 6 / 2) in Google search you can get exact same answer 24.
Michael Franco
Front End Web Development Techdegree Student 2,417 PointsCalculate the following:
8 * 8 ( ( 7 + 8 ) % 5 + 6 / 2) =
- First you start with your inner most brackets ( 7 + 8 ) which equals 15.
- Then you calculate 15 % 5 which equals to 0.
- Work out 6 /2 = 3
- Add 0 to 3 = 3
- 8 *3 = 24
24 is the Answer.
therefore 8 * 8 ( ( 7 + 8 ) % 5 + 6 / 2) = 24
Hope that helps
shobanaannadurai
4,244 PointsThe answer is 192.
Michael Franco
Front End Web Development Techdegree Student 2,417 PointsThe Answer is 24, if you would like to do your own research on it then may I suggest coping and pasting the equation on a Google search.
Thanks.