It is desired to mask the higher order bits (D7-D4) of the data bytes in register C. consider the following set of 8085 instruction,
(i) MOV A, C
ANI FOH
MOV C, A
HLT
(ii) MOV A, C
MVI B, FOH
ANA B
MOV C, A
HLT
(iii) MOV A, C
MVI B, 0FH
ANA B
MOV C, A
HLT
(iv) MOV A, C
ANI 0FH
MOV C, A
HLT