The supreme AI (Easy)

Algebra Level 2

10011(2) + 110101110(2) = ? All these numbers are in base 2

Answer in base 2 Do not write (2) in your answer


The answer is 111000001.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Kyle T
May 7, 2019

in my code, I'm converting the numbers from base 2 to base 10, adding them together, then converting that number back to base 2
In base 10, the question is asking what is 19+430? The answer is of course 449, which converted back to base 2 is our answer: 111000001.

1
2
3
<?php
echo base_convert( base_convert(10011,2,10)+base_convert(110101110,2,10), 10, 2); //111000001
?>

Kenichi Fung
May 5, 2019

Because 1(2) + 1(2) = 10(2) Use that rhythm continuously they you will get the answer

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...