I know how to add binary numbers but what I normally do is add the first 2 binary numbers and then add the 3rd one to their sum. It is really slow. $$ 111_2 + 111_2 + 111_2 + 111_2 $$
Here is what I do.
Step 1: Add the first digits, sum is 4 in decimal then since its binary carry 4
Step 2: add the digits again then add the carry (so 8 in total) it still wont fit so carry again
Step 3: the same as before and add the carry so its 12 it still wont fit
Now my answer is already wrong. Im confused when it comes to the carrying.