recategorized by
18,419 views
31 votes
31 votes

The number of $1$'s in the binary representation of $(3\ast4096 + 15\ast256 + 5\ast16 + 3)$ are:

  1. $8$
  2. $9$
  3. $10$
  4. $12$
recategorized by

6 Answers

Best answer
91 votes
91 votes
I suggest the following approach, here we can clearly see that numbers are getting multiplied by powers of $16.$ So this is nothing but Hexadecimal number in disguise.

$(3\times 4096 + 15 \times 256 + 5 \times 16 + 3)  = (3F53)_{16} = (0011111101010011)_2$ which has total $2 + 4 + 2 + 2 = 10\;\; 1's$

Correct Answer: C.
edited by
59 votes
59 votes

We have,  3*4096 + 15*256 + 5*16 + 3

              = (2+1)*212     + (8+4+2+1) * 28          +  (4+1)*24  + 2 + 1

              = 213 + 212      + 211  + 210 + 2+ 28   +   26 + 24   + 2 + 1

              = 1        1            1       1        1      1          1      1      1     1

              = 10  1's     So, OPTION (C) .. 

40 votes
40 votes
$3 = (11)_2$
$3\times 4096 = 3\times (2^{12}) = (11)_2<< 12 = (11000000000000)_2$

Similarly, $15 \times 256 = (1111)_2 << 8 = (111100000000)_2$ and $5 \times 16 = (101)_2 << 4 = (1010000)_2$

So, $3\times 4096 + 15 \times 256 + 5\times 16 + 3 = (11111101010011)_2$

Number of 1's = 10.
5 votes
5 votes
Answer is C.

All 4096,256,16 needs only 1 one to be represented in binary

3 - requires 2   1's

15 - requires 4 1's

5 - requires 2 1's

3 - requires 2 1's

so adding all those we get 2+4+2+2= 10
Answer:

Related questions

24 votes
24 votes
5 answers
2
13 votes
13 votes
2 answers
3
go_editor asked Jun 15, 2016
4,952 views
Which of the given number has its $\text{IEEE - 754}$ $32$-bit floating point representation as $\text{(0 10000000 110 0000 0000 0000 0000 0000)}$$2.5$$3.0$$3.5$$4.5$
12 votes
12 votes
4 answers
4
anand007 asked Jun 14, 2016
10,403 views
The decimal number has $64$ digits. The number of bits needed for its equivalent binary representation is?$200$$213$$246$$277$