Answer:
So lets start with typing a 6-bits binary number
take it as 101010
so lets start
0 * 2^0 = 0 * 1= 0
1 * 2^1 = 1 * 2 = 2
0 * 2^2 = 0 * 4 = 0
1 * 2^3 = 1* 8 = 8
0 * 2^4 = 0*16 = 0
1 * 2^5 = 1* 32 = 32
So basically what we have to do is start multiplyng each number from left with 2^n where n=0,and further going to right increasing it by 1.
so in this example starting from left
0*(2^0)=0
and further going right 1*(2^1)=2,here n increases by 1,n=2.
and further going on.
now add up all the products
like in this exampe
0+2+0+8+0+32=42 which is the answer.
Please provide a thumbs up feedback.It encourages us.Have a Good day):.
Type a random 6-bits binary number, then converted to decimal. Show the steps.
What is the binary (expressed as 8 bits) equivalent of the decimal number 124?
The largest unsigned decimal number that can be represented in binary using six bits is
Suppose the decimal number 0.768 is converted to base-6 using the multiplication method. Show the 7th product and single digit (for the base-6 number) obtained during the conversion process, separated by comma.
binary storage of numerical data
please show steps for at least one part
Write the following numbers in base-2 (40 digits max accuracy, otherwise be exact), and in 32-bit binary format when stored in a variable of integer*32 and real*32 data type. For integer data type, truncate real numbers by removing the digits past the decimal (i.e. drop the fractional part), and use 1 bit for the sign and 31 bits for the value. For real data types, use 1...
Convert a decimal fractional number 34/5 to its binary equivalent using a program to evaluate the bits of the fractional part for at least upto the second repeating block. i have written some code in python however it is not getting an output at all, so either fixing the code or writing another one would be beyond helpful def binary(n,k): n = 8.6 k = 3 #'n' is the fractional number #'k' is the number of bits up to the loop...
a) Convert decimal 17.375 to binary, hexadecimal and octal. b) How many bits are needed to represent a number between -13 ~ +22?
please explain steps!!
Convert the boy binary floating point numbers below to decimal notation forseti 8 bits: SEEEEEFF and the bias is 7, where S-sign, E-Exponent acts on bits) 10 pt. / 5 pts es convert from 8 bit floating point binary format convert to: decimal +/-n.nn DS EEE (FFC - 0100 1.100 = -1,5 426 6 14.05 Yoryal = 15 +0111 1140=125 10110100 00111110 me floating point
Q1) Convert the following negative decimal numbers to 8 bit binary using the 2’s complement (show the steps): a) -39 b) -127 Q2) Solve the following subtraction problems using 2's complement representation. (Show the steps using 8-bits) a) 19 – 87 b) 89 – 5 Q3) Convert the following numbers into scientific notation: (Note: to show ten raised to the power of n, you can type as 10^n) a) 654.345 b) 0.000000324235 c) 25600000000000 Q4) Convert the following numbers out...
5. (9 Points) Sign Magnitude Complete the following table. (Show the steps) Decimal Signed Magnitude (7-bits including sign) -17 -13 20 Two's Complement One's Complement (7-bits) (7-bits)
Convert the following decimal numbers to 6-bit two's complement binary number and add them. Keep result in binary form. Enter yes/no for any overflows (overflows only, not carried bits). 16 + 9 .............. Overflow?................... 27 + 31 .............. Overflow?....................... (-4) + 19 .............. Overflow? ........................ 3 + (-32) ............ Overflow? ........................ (-16) + (-9) ............... Overflow? .............................. (-27) + (-31) ................ Overflow? ...........................................