answersLogoWhite

0


Best Answer

Decimal of 1111 base 2 is 10001010111

the algorithms for finding decimal number equivalent of binary is as follow:

#include
#include
void main()
{ int i,n,j,b[100];
clrscr();
printf("Enter a Number:");
scanf("%d",&n);
i=0;
while(n>0)
{
b[i]=n%2;
n=n/2;
i++;
}
printf("\n\nBinary Equivalent:");
j=i-1;
for(i=j;j>=0;j--)
printf("%d",b[j]);
getch();
}
using this algorithms... the binary equivalent of any number is taken out...!!! enjoy... have any query... email at :- "devilllcreature@Yahoo.com" thank you....!!!

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Decimal of 1111 base 2
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the binary equivalent of the decimal number 255?

1111 1111 base 2


What is 1010 in decimal binary?

1010 base 2 = 10 base 10 1010 base 10 = 11 1111 0010 base 2


What is the decimal equivalent of 1111 in binary?

1111 converted from binary (base 2) to decimal (base 10) is 15 When you expand the steps... 1111 binary = (1 X 2^3) + (1 X 2^2) + (1 X 2^1) + (1 X 2^0) = 8 + 4 + 2 + 1 = 15


What is the largest 32-bit binary number that can be represented with unsigned numbers?

In binary: 1111 1111 1111 1111 1111 1111 1111 1111 In octal: 37777777777 In hexadecimal: FFFFFFFF in decimal: 2³² - 1 = 4,294,967,295


Convert 1111 two to base ten?

To convert the binary number 1111 to base ten, we use the positional value system. Starting from the right, each digit in the binary number represents a power of 2. So, 1111 in binary is equal to 1*(2^3) + 1*(2^2) + 1*(2^1) + 1*(2^0) = 8 + 4 + 2 + 1 = 15 in base ten. Therefore, 1111 in binary is equal to 15 in base ten.


What is the 1's complement of 10?

The 1's complement is formed by inverting every binary digit (bit) of the number - if it is a 0 it becomes a 1, otherwise it is a 1 and becomes a 0. If 10 is in base 2, then its 1's compliment is 01 or just 1. If 10 is in base 10, then in binary it is 1010 and its 1's complement is 0101 = 5 in decimal. However, if more bits are being used to store it, there would be leading 0s that get inverted to 1s and so the resultant number is different; examples: 8 bits (a byte): decimal 10 = 0000 1010 → 1111 0101 = 245 in decimal 16 bits: decimal 10 = 0000 0000 0000 1010 → 1111 1111 1111 0101 = 65525 Next, if 2s complement is being used to represent negative numbers, the binary 1111 0101 represents decimal -11; similarly 1111 1111 1111 0101 represents decimal -11.


What is the binary represented by of 1111?

1111 in binary is 15 in decimal. 1111 in decimal is 10001010111‬ in binary.


What is the binary equivalent of the decimal number255?

1111 1111


Convert binary number 1111 to decimal?

1111 = 15


What does 1111 in Binary code mean?

1111 in binary is 15 in decimal.


What is the largest 4 digit number in base 2?

It is 15.


Why can't 1111 be used in a BCD number?

1111 can't be used for Binary Coded Decimal (BCD) because 1111=15 which is made of 2 digits 1 and 5. In BCD a 4-digit binary number is used for every decimal digit. ex. 1111 is incorrect 1 = 0001 5 = 0101 Answer: 0001 0101