binary AND operation of the numbers “100101” and “110011” results (in decimal)
Answers
Answered by
21
The value in decimal after using AND operation is equal to 33.
The binary 'AND' operation will always produce 1 as output if both input are equal to one .
It will produce 0 as the output if either of the two inputs is equal to zero .
Applying binary 'AND' operation on
100101 and 110011 .
Input 1 - 1 0 0 1 0 1
Input 2- 1 1 0 0 1 1
Result - 1 0 0 0 0 1
The binary no. after applying the AND operation is 100001 and the integer value = 1×1 + 0×2 + 0×4 + 0×8 + 0×16 + 1×32
=> 33
Answered by
3
The correct values will be "33". The further explanation is given below.
Explanation:
- The 'AND' procedure would always generate 1 (one) as outputs if both inputs are equivalent to just 1. This would generate 0 (zero) as outputs when one of the two inputs becomes 0.
On applying "AND" operation in the given numbers "100101" & "110011" will be:
1 0 0 1 0 1 ...(1)
1 1 0 0 1 1 ...(2)
= 1 0 0 0 0 1 (Result after applying AND operation)
Now,
⇒
⇒
⇒
Learn more:
https://brainly.in/question/16055265
Similar questions