answersLogoWhite

0

I am not!

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you write 2- as a signed integer?

To write -2 as a signed integer, you simply represent it as -2. In binary, using two's complement notation (which is commonly used for signed integers), you first convert the positive version, 2, to binary (which is 10 in binary for a 2-bit representation). Then, to represent -2, you invert the bits and add 1, resulting in its two's complement representation. For example, in an 8-bit system, -2 is represented as 11111110.


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 many digits does binary number system use?

The binary number system uses two digits: 0 and 1. This base-2 system represents values using combinations of these two digits. Each digit represents a power of 2, allowing for the representation of any integer or binary-coded data.


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.