26. What will be the output after execution of the
following instructions?
MOV A, #00H
ANL A, #55H
O a) OOH
Ob) FFH
O c) 55H
O 66H
Answers
Answered by
0
Answer:
c 55H
Explanation:
because #00H +#55H = 55H
Answered by
0
Option(A) is correct.
Concept:
The ANL instruction does a bitwise logical AND between the provided byte or bit operands and puts the result in the destination operand.
Program:
AND operation between and .
Solution:
ANL is a bitwise AND operation.
AND operation between and is
______________
Hence, the output of the program is . Option (A) is correct.
Hence, the output of the program is . Option (B) is incorrect.
Hence, the output of the program is . Option (C) is incorrect.
Hence, the output of the program is . Option (D) is incorrect.
Similar questions