Computer Science, asked by vaishu2398, 10 months ago

binary AND operation of the numbers “100101” and “110011” results (in decimal)

Answers

Answered by nayananand04
6

I don't know as I haven't studied about this

Answered by AskewTronics
2

(100001_{2}) or (33_{10}) is the correct answer for the above question.

Explanation:

  • The binary value of AND operation of "100101" and "110011" binary number is "100001". It is because:- 1 AND 1 become 1 and 0 and (0 or 1) become 0. It means that in the add operation when 0 or 1 doing the add operation with 0 then it will become 0.
  • In another word we can say that the output of the AND operation will become 1 only both input will be 1.
  • The below figure is listed the AND operation of the above two binary number which result in the binary value as 100001_{2} .

Conversion of binary value 100001_{2} into decimal:

  • Firstly we multiply every digit of the binary number with the increasing power of 2 from right to left. It is like1\times2^{5}+0\times2^{4}+0\times2^{3}+0\times2^{2}+0\times2^{1}+1\times2^{0}
  • Then It will be 1\times32+0+0+0+0+1\times1.
  • Then 32+1.
  • Then 33 which can be written as 33_{10} in decimal.

Learn More:

  • Binary operation : https://brainly.in/question/9599030
Attachments:
Similar questions