answersLogoWhite

0

I am not!

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you convert an integer into binary form and count no of 1s and 0s in the binary form?

To convert an integer into binary form, you can repeatedly divide the number by 2 and record the remainders. The binary representation is obtained by reading the remainders in reverse order. Once you have the binary string, you can count the number of '1's and '0's using string methods, such as count('1') and count('0'). For example, in Python, you can use bin(num)[2:] to get the binary form and then count the digits.


How do you convert 47.5 into binary?

To convert 47.5 into binary, first convert the integer part (47) to binary. 47 in binary is 101111. For the fractional part (0.5), multiply by 2, resulting in 1.0, which indicates that the binary representation of 0.5 is .1. Combining both parts, 47.5 in binary is 101111.1.


What is the binary representation of the hexadecimal number 3D9?

The binary representation is : 1111011001


What is the dyadic expansion of an integer?

It is the integer's expansion in binary.


What is the binary representation of the keyword "129" in decimal?

The binary representation of the keyword "129" in decimal is 10000001.


How many digits does a binary number have?

The number of digits in a binary number, also known as its bits, depends on its value. For a binary number representing a non-negative integer ( n ), the number of bits required can be calculated using the formula ( \lfloor \log_2(n) \rfloor + 1 ). For example, the binary representation of the decimal number 5 is ( 101 ), which has 3 bits. The number of bits increases as the value of ( n ) increases.


What is binary of -37 using sign and magnitude representation?

In sign and magnitude representation, the first bit is used for the sign (0 for positive and 1 for negative). The magnitude of 37 in binary is 100101. To represent -37, we set the sign bit to 1, resulting in 1 100101. Thus, the binary representation of -37 in sign and magnitude is 1100101.


What is the binary representation of 0.125?

The binary representation of the decimal number 0.125 can be found by converting it to binary. Since 0.125 is equal to ( \frac{1}{8} ), it can be expressed as ( 0.001 ) in binary. This is derived from the fact that ( 2^{-3} = 0.125 ). Thus, the binary representation of 0.125 is ( 0.001 ).


Full form of BIT?

binary integer don't think so... It's binary digit.


What is the binary representation for a?

To provide the binary representation for "a," we first need to know that "a" is a character in the ASCII (American Standard Code for Information Interchange) encoding system. In ASCII, the character "a" is represented by the decimal value 97, which converts to binary as 01100001. Thus, the binary representation for "a" is 01100001.


How many zeros are present in the binary representation of 51 5?

11111111=255 'o' zeroes are present in the binary representation of 51x5


What is the benefit of using biased representation for the exponent portion of a floatingpoint number?

It allows you to compare two floating point values using integer hardware.