61. Assume that the accumulator and the register C of 8085 microprocessor contain respectively F0 H
and OF H initially. What will be the content of accumulator after execution of instruction ADD C?
- 00 H
- FF H
- EF H
- FE H
62. It is desired to multiply the numbers 0A H by OB H and store the result in the accumulator. The numbers are available in registers B and C respectively. A part of the 8085 program for this purpose is given below:
MVI A, OO H
Loop; ………..
………..
………..
HLT END
The sequence of instruction to complete the program would be
- JNZ LOOP; ADD B, DCR C
- ADD B; JNZ LOOP; DCR C
- DCR C; JNZ LOOP; ADD B
- ADD B; DCR C; JNZ LOOP
63. Find the content of the accumulator after the execution of the following program:
MVI A, F0 H
ORI FF H
XRI F0 H
- 00 H
- F0 H
- 0F H
- FF H
64. The following program starts at location 0100 H
LXI SP, 00FF
LXI H, 0701 H
MVI A, 20 H
SUB M
The content of accumulator when the program counter reaches 0107 H is
- 20 H
- 02 H
- 00 H
- FF H
65. The difference between 8085 instructions RST n and PCHL is
- RST n is equivalent to a sub-routine call while PCHL is equivalent to unconditional branch.
- RST n uses direct addressing while PCHL uses register indirect addressing.
- RST n is a software interrupt while PCHL simulates a hardware interrupt
- RST n resets the processor while PCHL restarts the processor.
66. The content of accumulator are 70 H. Initially all flags are zero. What will be values of CY and S after executing instruction RLC?
- CY = 0 and S = 0
- CY = 1 and S = 1
- CY = 1 and S = 0
- CY = 0 and S = 1
67. A software delay subroutine is written as given below:
DELAY: MVI H, 255D H
MVI L, 255D H
LOOP: DCR L
JNZ LOOP
DCR H
JNZ LOOP
How many times DCR instruction will be executed?
- 255
- 510
- 65025
- 65279
68. What is content of accumulator of 8085 microprocessor after the execution of XRI F0 H instruction?
- Only the upper nibble of accumulator is complemented
- Only the lower nibble is complemented
- Only the upper nibble is reset to zero
- Only the lower nibble is reset to zero
69. The 8085 programming manual says that it takes seven T states to fetch and execute the MOV instruction. If the system clock has a frequency of 2.5 MHz, how long is an instruction Cycle?
- 2.8 s
- 2.5ns
- 2.8 ns
- 2.8 μs
70. The instruction PCHL, in 8085 is used for
- Load PC with contents of HL.
- Load HL with contents of memory location pointed by PC.
- Load HL with contents of PC
- Load PC with the contents of memory location pointed by HL pair.