2,723 views

3 Answers

0 votes
0 votes
given:

binary number =1001

The square of the binary number (1001) = 1010001

To convert from binary to hexadecimal (1010001=0101 | 0001)

0101=5 and 0001=1 so answer=51 option (B)
edited by
0 votes
0 votes

Another approach  finding the square of the binary

position 4 3 2 1
bit 1 0 0 1

Here, we have to find the position of 1 in the given binary number

In this example, the position of 1 are 1 and 4

append zeros equal to the $position (1) - 1$ to the right and add all the values to get the desired result

$1 - 1 = 0$ ( 0 zeros to be appended)

$4 - 1 = 3$ ( 3 zeros to be appended)

$1001_{2}+ 1001000_{2} = 1010001_{2} = 51_{16}$

Example 2:

suppose, you want to square $101100$.

the position of $1$ are $3, 4$ and $6$

$ ( 3 - 1 ) = 2 $ $\Rightarrow$$10110000_{2}$

$( 4 - 1 ) = 3$  $\Rightarrow$$101100000_{2}$

$(6-1 ) = 5$ $\Rightarrow$$10110000000_{2}$  

$10110000_{2} + 101100000_{2} + 10110000000_{2} = 11110010000_{2}$  

Related questions

2 votes
2 votes
1 answer
1
DIEGO_ asked May 13, 2016
8,410 views
The binary number 10011101 is equal to the hexadecimal number (a) 103 (b) 76 (c) 67 (d) - 67
2 votes
2 votes
2 answers
2
sh!va asked Jul 14, 2016
1,867 views
The hexadecimal equivalent of the decimal number 0.25 is (A)0 .25(B) 0.35 (C)0 .40 (D) 0.15
10 votes
10 votes
1 answer
3
tiger asked Dec 6, 2015
2,704 views
Given that $(E0B)_{16}-(ABF)_{16}=Y$.The radix 8’s compliment of Y is ?
0 votes
0 votes
1 answer
4
. asked Mar 26, 2017
1,186 views
The number of positive integers n for which n2+96 is a perfect squareis(A) 0 (B) 1 (C) 2 (D) 4