Questions Updated1
Questions Updated1
Questions
12. What is addressing mode? Describe different types of addressing modes used in 8086.
Interrupt-
24. What is interrupt? Write down the importance of interrupt.
25. Differences between- (i) Hardware & Software Interrupt
(ii) Maskable & Non-maskable Interrupt (INTR & NMI)
26. Describe dedicated interrupt used in 8086.
27. Write down the differences between interrupt & procedure.
28. What is PIC? Write down the function of PIC?
29. Draw the block diagram of 8259A and describe its block diagram.
Co-Processor-
30. What is co-processor? Write down the function of co-processor.
31. Describe math co-processor 8087 with its appropriate block diagram.
Instruction Format-
32. What is instruction format? Write down different types of instruction format used in 8086 with
examples.
Memory Bank-
33. What is memory bank? How data is read by the followings-
(i) 8-bit data from even address bank.
(ii) 8-bit data from odd address bank.
(iii) 16-bit data from even address bank.
(iv) 16-bit data from odd address bank.
DMA-
34. What is DMA and DMA Cntroller? How DMA operations are performs?
Namzul Sir
(Updating…)
Nazmul Sir
L1:
int 21h
inc dl
loop L1
mov ah,4ch
int 21h
main endp
end main
Input/output:
ABCDEFGHIJKLMNOPQRSTUVWXYZ
Write an assembly language program to calculate the factorial of a positive integer number.
Source Code:
MOV AL, 00H
MOV SI, 500H
MOV [SI], AL
ADD SI, 01H
ADD AL, 01H
MOV [SI], AL
MOV CX, [0000H]
SUB CX, 0002H
L1:
MOV AL, [SI-1]
ADD AL, [SI]
ADD SI, 01H
MOV [SI], AL
LOOP L1
HLT
END
Flowchart:
Code:
; Program to find Fibonacci Series
MOV AL, 00H
MOV SI, 500H
MOV [SI], AL
ADD SI, 01H
ADD AL, 01H
MOV [SI], AL
MOV CX, [0000H
Flowchart:
Code:
; Program to find Fibonacci Series
MOV AL, 00H
MOV SI, 500H
MOV [SI], AL
ADD SI, 01H
ADD AL, 01H
MOV [SI], AL
MOV CX, [0000
Algorithm
Divide & Conquer Method-
1. Maximum & Minimum (09-01-23)
2. Merge Sort (16-01-23)
3. Bubble Sort (30-01-23)
4. Quick Sort (30-01-23)
5. Knapsack Algorithm (06-02-23)
6. Prim’s Algorithm (13-03-23)
7. Single Source Shortest Path (21-03-23)
8. 8 Queens Problem (27-03-23)
(previous year q)
80286 mp details with figure (19)
The internal architecture of 8086 and explain its functional units of it (19)
Describe 8087 with Figure (19)
Explain the memory write cycle by timing diagram (19)
How does DMA transfer work? Explain with a suitable diagram (19) (ist)
Design 8k*8 RAM module using 2k*8 RAM chip (19)
Draw and explain BIU and EU at 8086 mp (18) (ist)
Draw and explain the internal architecture of the Intel Pentium processor (18)
Describe 8259A interrupt controller with its block diagram(17) (ist)
Midterm Analysis