answersLogoWhite

0

What is 2 plus 2 in binary?

Updated: 12/24/2022
User Avatar

Wiki User

14y ago

Best Answer

100

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is 2 plus 2 in binary?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

In the binary system what is 1 plus 1?

1 plus 1 = 2


What is 1 plus 1 plus?

2 decimal, or 10 binary.


What is 2 plus 2 using the binary system?

100


In binary system what is 1 plus 1?

1 plus 1 = 2


Can C plus plus read binary?

yes it can very much so read binary.


How much makes 1 plus 1?

Two, which is denoted as 2, except in binary, where it is denoted 10 2


When does 1 plus 1 equals 10?

This will be in binary arithmetic, i.e. base 2 arithmetic.


What is plus operator is it unary or binary?

There is no unary plus in C, but if there were, it would have only one operand, unlike the binary plus which has two: x = a + b; /* binary plus */ x = + b; /* unary plus -- not in C*/ x = a - b; /* unary plus */ x = - b; /* unary minus */


C plus plus program that convert decimal to binary using the concept of stack?

#include<stdio.h> #include<stdlib.h> main() { int number,binary[10000],b=0; printf("Enter decimal number "); scanf("%d",&number); printf("\nBinary: "); for(;number;number/=2,b++) binary[b]=number%2; for(b--;b>-1;b--) printf("%d ",binary[b]); }


What is 111 base 2 plus 111 base 2?

Binary: 111 + 111 = 1110 Decimal: 7 + 7 = 14


What is 1 plus 1 in binary?

1 + 1 = 10 in binary numbers.


Conversion of 00110 binary number into decimal?

Normal decimal numbers are based on powers of 10. The individual digits are (from right to left):ones (10^0),tens (10^1),hundreds (10^2),etc.So, 365 is really 5 ones, plus 6 tens, plus 3 hundreds. 5 + 60 + 300 = 365Binary numbers are based on powers of two. The individual bits (Binary digITS) are:ones (2^0),twos (2^1),fours (2^2),eights (2^3),etc.So, your binary 00110 is really 0 ones, plus 1 twos, plus 1 fours. 0 + 2 + 4 = 6 your 00110 binary is equal to 6 decimal.