71. The following instruction copies a byte of data from the accumulator into the memory address given in the instruction
- STA address
- LDAX B
- LHLD address
- LDA address
72. The instruction that exchanges top of stack with HL pair is
- XTHL
- SPHL
- PUSH H
- POP H
73. In 8085 microprocessor, during PUSH PSW Operation, Stack pointer is
- Decremented by one
- Decremented by two
- Incremented by one
- Incremented by two
74. While a program is being executed in an Intel 8085 microprocessor, the program counter of the microprocessor contains:
- The memory address of the instruction that is being currently executed.
- The memory address of the instruction that is to be executed next.
- The number of instructions that have already been executed.
- The total number of instructions in the current program still to be executed.
75. The description of a program counter (PC) in 8085 microprocessor is
- An up/down counter
- An 8-bit register
- Initialized automatically by microprocessor
- Used to point to stack memory area
76. If the status of the control lines SI and SO is LOW, then 8085 microprocessor is performing
- Reset operation
- HOLD operation
- Halt operation
- Interrupt acknowledge
77. LXI SP, 7FFF H
MVI A, 25 H
XRI 02 H
PUSH PSW
POP H
MOV A,L
ORI 10 H
HLT
What are the contents of A, H, L, SP and PSW registers after executing the above set of instructions? Assume undefined flags always remain clear.
- 10H, 25H, 00H, 7FFFH, 00H respectively
- 14H, 27H, 04H, 7FFFH, 04H respectively
- 14H, 25H, 00H. 7FFFH, 04H respectively
- 10H, 27H, 04H, 7FFFH, 00H respectively
78. The content of the programme counter of an 8085 microprocessor is
- the total number of instructions in the program already executed.
- the total number of times a subroutine is called.
- the memory address of the instruction that is being currently executed.
- the memory address of the instruction that is to be executed next.
79. The opcode for the instruction “Add Immediately to Accumulator with carry” in 8085 microprocessor is
- ADI
- ACI
- ADC
- ADD
80. MVI A, AA H
ORI FFH
RRC
RRC
CMC
INR A
What are the contents of A and PSW registers after executing the above set of instructions in sequence?
- AAH and 00H
- FFH and 66H
- 00H and 54H
- 00H and 00H