3 ways:
1. convert all 3 numbers to base 10, add them , then convert back
2. stay in base 2 by using the base 2 addition chart
+ 0 1
0 0 1
1 1 10
3. make use of this little applet
www.rapidtables.com/convert/number/base-converter.html
The sum of 111011base2,11111base2 and 10000 is 10m10n0base2.Find the value of m and n?
3 answers
4. If using unix or its variants, use the program bc, and give it the commands
ibase=2
obase=2
and all your input and output will be in base 2
ibase=2
obase=2
and all your input and output will be in base 2
The sum of 11011base2,11111base2,10000base2 is 10m10n0base2. Find the value of m and n