SlideShare a Scribd company logo
1 of 6
Download to read offline
1
Scheme G
Sample Test Paper-I
Course Name : Diploma in Computer Engineering Group
Course Code : CO/CD/CM/CW/IF
Semester : Fourth
Subject Title : Microprocessor and programming
Marks : 25 Time: 1 hour
Instructions:
1. All questions are compulsory
2. Illustrate your answers with neat sketches wherever necessary
3. Figures to the right indicate full marks
4. Assume suitable data if necessary
5. Preferably, write the answers in sequential order
Q1. Attempt any THREE of the following: 9 Marks
a) Explain the function of following pins of 8085 processor
i.ALE
ii.HOLD
iii.HLDA
b) List any 6 features of 8086 microprocessor.
c) Given SS: 3450H; SP: 2A56H, calculate the physical address.
d) List any 2 addressing modes with example. Identify the addressing mode of the instruction
MOV AL, [SI].
Q2. Attempt any TWO of the following 8 Marks
a) Draw the internal architecture of 8086.
b) Explain memory segmentation in 8086.
c) Differentiate between minimum mode and maximum mode.
Q3. Attempt any TWO of the following 8 Marks
a) Draw the flag register of 8086. Explain any 2 control flags.
b) Draw the timing diagram for maximum mode memory read cycle.
c) Explain the instructions of 8086
i. XLAT
ii. TEST
17431
2
Scheme G
Sample Test Paper-II
Course Name : Diploma in Computer Engineering Group
Course Code : CO/CD/CM/CW/IF
Semester : Fourth
Subject Title : Microprocessor and programming
Marks : 25 Time: 1 hour
Instructions:
1. All questions are compulsory
2. Illustrate your answers with neat sketches wherever necessary
3. Figures to the right indicate full marks
4. Assume suitable data if necessary
5. Preferably, write the answers in sequential order
Q.1 Attempt any THREE of the following: 9 Marks
a. Explain the following instructions
i. ROL
ii. MOVS
iii. STD
b. Explain the assembler directives ASSUME, DW, EVEN.
c. Write the code segment for adding two 16 bit numbers.
d. Differentiate between FAR and NEAR calls (Any 3 points)
Q.2 Attempt any TWO of the following 8 Marks
a. Explain Assembler and Linker.
b. Explain Recursive procedure with example.
c. Write an assembly language program to find the largest of 10 bytes.
Q.3 Attempt any TWO of the following 8 Marks
a. Define Macro. Give an example and explain.
b. Write an assembly language program to transfer block of data from one location to another.
c. Write an assembly language program to convert HEX number to BCD.
17431
3
Scheme G
Sample Question Paper
Course Name : Diploma in Computer Engineering Group
Course Code : CO/CD/CM/CW/IF
Semester : Fourth
Subject Title : Microprocessor and programming
Marks : 100 Time: 3 hour
Instructions:
1. All questions are compulsory
2. Illustrate your answers with neat sketches wherever necessary
3. Figures to the right indicate full marks
4. Assume suitable data if necessary
5. Preferably, write the answers in sequential order
Q1. a) Attempt any SIX of the following: 12 Marks
a. State the functions of the following pins of 8085 microprocessor
1) ALE 2) IO/M
b. List all the 16 bit general purpose registers of 8086 microprocessor
c. List any two addressing modes of 8086 with one example each.
d. Draw the symbols used in a flowchart while developing ALP. Mention the use of each
symbol (Any 4)
e. State two uses of Accumulator in 8085.
f. State the use of OF and AC flags in 8086.
g. Give the syntax for defining the Macro.
h. Differentiate between SHR and ROR instructions of 8086. (2points)
Q1. b) Attempt any TWO of the following: 8 Marks
a. State the function of following assembly language programming tools.
a. Editor
b. Assembler
c. Linker
d. Debugger
17431
4
b. Explain follwing assembler dirtecive
a. ASSUME
b. DB
c. DUP
d. ENDS
c. Differentiate between NEAR and FAR CALLs (4points)
Q.2 Attempt any FOUR of the following: 16 Marks
a. Draw the flag register format of 8085 microprocessor and explain all the flags.
b. Draw the neat labeled architecture of 8086.
c. Explain how queuing speeds up the processing of 8086 operations.
d. List any 8 features of 8085 microprocessor.
e. What will be the contents of register BL after the last instruction execution?
MOV BL, 14H
MOV CL, 03H
SHL BL,CL
f. List the steps in physical address generation in 8086 microprocessor. Calculate the
physical address for the given CS = 2340H , IP = 76A9H
Q3. Attempt any FOUR of the following: 16 Marks
a. Explain the following instructions with one example each.
1) ADD 2) AND 3) LEA 4) INC
b. State the functions for the following pins of 8086
1. NMI
2. BHE
3. TEST
4. DEN
c. Draw the interfacing diagram of octal latch and explain it.
d. List and explain any 4 flag manipulation instruction of 8086 microprocessor.
e. Write assembly language program for reversing the string.
f. Differentiate between 8085 and 8086. (Any 4 points)
5
Q4. Attempt any FOUR of the following: 16 Marks
a. Identify the addressing modes for the following instructions:
1) MOV CL, 34H
2) MOV BX, [4172H]
3) MOV DS, AX
4) MOV AX, [SI + BX +04]
b. Explain the following instructions of 8086
1) DAA 2) XLAT
c. Write an Assembly Language program to count the number of 1’s in BL register.
d. Write assembly language program to multiply two 8 bit numbers.
e. Write assembly language program to add two BCD numbers.
f. Define Procedure and explain the directives used in Procedure.
Q5. Attempt any FOUR of the following: 16 Marks
a. Write assembly language program to find the sum of 5 bytes of data.
b. How many times LOOP1 will be executed in the following program? What will be
the contents of BL after the execution?
MOV BL, 00H
MOV CL, 05H
LOOP1: ADD BL, 02H
DEC CL
JNZ LOOP1
c. Write an Assembly Language program for BCD to Hex Conversion.
d. Write the appropriate 8086 instructions to perform the following operations:
1) Multiply AL register contents by 4 using shift instruction
2) Move 1234H into DS register.
e. Explain CALL and RET instructions.
f. Describe reentrant procedure with the help of schematic diagram.
Q6. Attempt any TWO of the following: 16 Marks
a. Draw the timing diagram of minimum mode memory write cycle. Also explain the
6
same.
b. Write an Assembly Language program to transfer 10 bytes of data from one memory
location to another. Also draw the flowchart for the same.
c. i) Define Macro. Give an example.
ii) Write a procedure to find the factoria

More Related Content

What's hot

8085 data transfer instruction set
8085 data transfer instruction set8085 data transfer instruction set
8085 data transfer instruction setprashant1271
 
Stack in 8085 microprocessor
Stack in 8085 microprocessorStack in 8085 microprocessor
Stack in 8085 microprocessorhepzijustin
 
Complier design one mark Q & A 50 by S. Yamini
Complier design one mark Q & A 50 by S. YaminiComplier design one mark Q & A 50 by S. Yamini
Complier design one mark Q & A 50 by S. Yaminieeducations ever
 
17428 computer hardware & maintenance
17428   computer hardware & maintenance17428   computer hardware & maintenance
17428 computer hardware & maintenancesoni_nits
 
Instruction set-of-8085
Instruction set-of-8085Instruction set-of-8085
Instruction set-of-8085saleForce
 
Lecture 3 RE NFA DFA
Lecture 3   RE NFA DFA Lecture 3   RE NFA DFA
Lecture 3 RE NFA DFA Rebaz Najeeb
 
N_Asm Assembly arithmetic instructions (sol)
N_Asm Assembly arithmetic instructions (sol)N_Asm Assembly arithmetic instructions (sol)
N_Asm Assembly arithmetic instructions (sol)Selomon birhane
 
Lecture 02 Data Group of Instructions
Lecture 02 Data Group of InstructionsLecture 02 Data Group of Instructions
Lecture 02 Data Group of InstructionsZeeshan Ahmed
 
9. 8085 instruction set v
9. 8085 instruction set v9. 8085 instruction set v
9. 8085 instruction set vsandip das
 
Microprocessor Week 7: Branch Instruction
Microprocessor Week 7: Branch InstructionMicroprocessor Week 7: Branch Instruction
Microprocessor Week 7: Branch InstructionArkhom Jodtang
 
Lecture1 The 8085 Microprocessor
Lecture1 The 8085 MicroprocessorLecture1 The 8085 Microprocessor
Lecture1 The 8085 MicroprocessorZeeshan Ahmed
 
8085 arithmetic instructions
8085 arithmetic instructions8085 arithmetic instructions
8085 arithmetic instructionsprashant1271
 
MICROPROCESSOR INSTRUCTION SET OF 8085
MICROPROCESSOR INSTRUCTION SET OF 8085MICROPROCESSOR INSTRUCTION SET OF 8085
MICROPROCESSOR INSTRUCTION SET OF 8085Sumadeep Juvvalapalem
 
Assembly Language Programming By Ytha Yu, Charles Marut Chap 6 (Flow Control ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 6 (Flow Control ...Assembly Language Programming By Ytha Yu, Charles Marut Chap 6 (Flow Control ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 6 (Flow Control ...Bilal Amjad
 

What's hot (19)

8085 data transfer instruction set
8085 data transfer instruction set8085 data transfer instruction set
8085 data transfer instruction set
 
B instruction set
B instruction setB instruction set
B instruction set
 
Stack in 8085 microprocessor
Stack in 8085 microprocessorStack in 8085 microprocessor
Stack in 8085 microprocessor
 
Complier design one mark Q & A 50 by S. Yamini
Complier design one mark Q & A 50 by S. YaminiComplier design one mark Q & A 50 by S. Yamini
Complier design one mark Q & A 50 by S. Yamini
 
17428 computer hardware & maintenance
17428   computer hardware & maintenance17428   computer hardware & maintenance
17428 computer hardware & maintenance
 
Instruction set-of-8085
Instruction set-of-8085Instruction set-of-8085
Instruction set-of-8085
 
Lecture 3 RE NFA DFA
Lecture 3   RE NFA DFA Lecture 3   RE NFA DFA
Lecture 3 RE NFA DFA
 
N_Asm Assembly arithmetic instructions (sol)
N_Asm Assembly arithmetic instructions (sol)N_Asm Assembly arithmetic instructions (sol)
N_Asm Assembly arithmetic instructions (sol)
 
Lecture 02 Data Group of Instructions
Lecture 02 Data Group of InstructionsLecture 02 Data Group of Instructions
Lecture 02 Data Group of Instructions
 
9. 8085 instruction set v
9. 8085 instruction set v9. 8085 instruction set v
9. 8085 instruction set v
 
Microprocessor Week 7: Branch Instruction
Microprocessor Week 7: Branch InstructionMicroprocessor Week 7: Branch Instruction
Microprocessor Week 7: Branch Instruction
 
Lecture1 The 8085 Microprocessor
Lecture1 The 8085 MicroprocessorLecture1 The 8085 Microprocessor
Lecture1 The 8085 Microprocessor
 
Rcpp
RcppRcpp
Rcpp
 
Alp 05
Alp 05Alp 05
Alp 05
 
A HIGH THROUGHPUT AES DESIGN
A HIGH THROUGHPUT AES DESIGNA HIGH THROUGHPUT AES DESIGN
A HIGH THROUGHPUT AES DESIGN
 
8085 arithmetic instructions
8085 arithmetic instructions8085 arithmetic instructions
8085 arithmetic instructions
 
MICROPROCESSOR INSTRUCTION SET OF 8085
MICROPROCESSOR INSTRUCTION SET OF 8085MICROPROCESSOR INSTRUCTION SET OF 8085
MICROPROCESSOR INSTRUCTION SET OF 8085
 
Instruction set
Instruction setInstruction set
Instruction set
 
Assembly Language Programming By Ytha Yu, Charles Marut Chap 6 (Flow Control ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 6 (Flow Control ...Assembly Language Programming By Ytha Yu, Charles Marut Chap 6 (Flow Control ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 6 (Flow Control ...
 

Viewers also liked

Cambioconsulting 130316010858-phpapp01
Cambioconsulting 130316010858-phpapp01Cambioconsulting 130316010858-phpapp01
Cambioconsulting 130316010858-phpapp01Swapna N
 
Security Meetup 22 октября. «Реверс-инжиниринг в Enterprise». Александр Секре...
Security Meetup 22 октября. «Реверс-инжиниринг в Enterprise». Александр Секре...Security Meetup 22 октября. «Реверс-инжиниринг в Enterprise». Александр Секре...
Security Meetup 22 октября. «Реверс-инжиниринг в Enterprise». Александр Секре...Mail.ru Group
 
Tejido muscular y tejido nervioso
Tejido muscular y tejido nerviosoTejido muscular y tejido nervioso
Tejido muscular y tejido nerviosoBrendA Sánchez
 
Evaluation marking
Evaluation markingEvaluation marking
Evaluation markingEdnexa
 
1 el-enfoque-formativo-de-la-evaluacion
1 el-enfoque-formativo-de-la-evaluacion1 el-enfoque-formativo-de-la-evaluacion
1 el-enfoque-formativo-de-la-evaluacionLtisha Lozano
 
Особенности дизайна VR-игр, Дмитрий Трубицин, старший дизайнер игр, департаме...
Особенности дизайна VR-игр, Дмитрий Трубицин, старший дизайнер игр, департаме...Особенности дизайна VR-игр, Дмитрий Трубицин, старший дизайнер игр, департаме...
Особенности дизайна VR-игр, Дмитрий Трубицин, старший дизайнер игр, департаме...Mail.ru Group
 
Death of the salesperson as we know him
Death of the salesperson as we know himDeath of the salesperson as we know him
Death of the salesperson as we know himRien van den Bosch
 
Self Management by KISHAN PANCHAL
Self Management by KISHAN PANCHALSelf Management by KISHAN PANCHAL
Self Management by KISHAN PANCHALKishan Panchal
 
Мотивированный игрок: вовлечение через средние и дальние цели, Александр Пань...
Мотивированный игрок: вовлечение через средние и дальние цели, Александр Пань...Мотивированный игрок: вовлечение через средние и дальние цели, Александр Пань...
Мотивированный игрок: вовлечение через средние и дальние цели, Александр Пань...Mail.ru Group
 
Современные базовые принципы UX-проектирования в играх, Ольга Шуберт, ведущий...
Современные базовые принципы UX-проектирования в играх, Ольга Шуберт, ведущий...Современные базовые принципы UX-проектирования в играх, Ольга Шуберт, ведущий...
Современные базовые принципы UX-проектирования в играх, Ольга Шуберт, ведущий...Mail.ru Group
 

Viewers also liked (13)

Tejido muscular y tejido nervioso
Tejido muscular y tejido nerviosoTejido muscular y tejido nervioso
Tejido muscular y tejido nervioso
 
TEJIDO MUSCULAR Y NERVIOSO
TEJIDO MUSCULAR Y NERVIOSOTEJIDO MUSCULAR Y NERVIOSO
TEJIDO MUSCULAR Y NERVIOSO
 
Cambioconsulting 130316010858-phpapp01
Cambioconsulting 130316010858-phpapp01Cambioconsulting 130316010858-phpapp01
Cambioconsulting 130316010858-phpapp01
 
Security Meetup 22 октября. «Реверс-инжиниринг в Enterprise». Александр Секре...
Security Meetup 22 октября. «Реверс-инжиниринг в Enterprise». Александр Секре...Security Meetup 22 октября. «Реверс-инжиниринг в Enterprise». Александр Секре...
Security Meetup 22 октября. «Реверс-инжиниринг в Enterprise». Александр Секре...
 
Tejido muscular y tejido nervioso
Tejido muscular y tejido nerviosoTejido muscular y tejido nervioso
Tejido muscular y tejido nervioso
 
Modelagens Verão 2018 - 2ª entrada
Modelagens Verão 2018 - 2ª entradaModelagens Verão 2018 - 2ª entrada
Modelagens Verão 2018 - 2ª entrada
 
Evaluation marking
Evaluation markingEvaluation marking
Evaluation marking
 
1 el-enfoque-formativo-de-la-evaluacion
1 el-enfoque-formativo-de-la-evaluacion1 el-enfoque-formativo-de-la-evaluacion
1 el-enfoque-formativo-de-la-evaluacion
 
Особенности дизайна VR-игр, Дмитрий Трубицин, старший дизайнер игр, департаме...
Особенности дизайна VR-игр, Дмитрий Трубицин, старший дизайнер игр, департаме...Особенности дизайна VR-игр, Дмитрий Трубицин, старший дизайнер игр, департаме...
Особенности дизайна VR-игр, Дмитрий Трубицин, старший дизайнер игр, департаме...
 
Death of the salesperson as we know him
Death of the salesperson as we know himDeath of the salesperson as we know him
Death of the salesperson as we know him
 
Self Management by KISHAN PANCHAL
Self Management by KISHAN PANCHALSelf Management by KISHAN PANCHAL
Self Management by KISHAN PANCHAL
 
Мотивированный игрок: вовлечение через средние и дальние цели, Александр Пань...
Мотивированный игрок: вовлечение через средние и дальние цели, Александр Пань...Мотивированный игрок: вовлечение через средние и дальние цели, Александр Пань...
Мотивированный игрок: вовлечение через средние и дальние цели, Александр Пань...
 
Современные базовые принципы UX-проектирования в играх, Ольга Шуберт, ведущий...
Современные базовые принципы UX-проектирования в играх, Ольга Шуберт, ведущий...Современные базовые принципы UX-проектирования в играх, Ольга Шуберт, ведущий...
Современные базовые принципы UX-проектирования в играх, Ольга Шуберт, ведущий...
 

Similar to 17431 microprocessor & programming

17443 microprocessor
17443   microprocessor17443   microprocessor
17443 microprocessorsoni_nits
 
Qoestion Bank Big Questions
Qoestion  Bank Big QuestionsQoestion  Bank Big Questions
Qoestion Bank Big Questionsccet
 
Question bank malp 3340302
Question bank malp 3340302Question bank malp 3340302
Question bank malp 3340302SHAH JAINAM
 
Microcontrollers 80 Marks Sample Question Paper
Microcontrollers   80 Marks Sample Question PaperMicrocontrollers   80 Marks Sample Question Paper
Microcontrollers 80 Marks Sample Question Paperprathik
 
Microcontrollers 80 Marks Sample Question Paper
Microcontrollers   80 Marks Sample Question PaperMicrocontrollers   80 Marks Sample Question Paper
Microcontrollers 80 Marks Sample Question Paperprathik
 
17432 object oriented programming
17432   object oriented programming17432   object oriented programming
17432 object oriented programmingsoni_nits
 
2009 Punjab Technical University B.C.A Microprocessor Question paper
2009 Punjab Technical University B.C.A Microprocessor Question paper2009 Punjab Technical University B.C.A Microprocessor Question paper
2009 Punjab Technical University B.C.A Microprocessor Question paperMonica Sabharwal
 
A109210503 digitallogicdesign1
A109210503 digitallogicdesign1A109210503 digitallogicdesign1
A109210503 digitallogicdesign1jntuworld
 
Assembly Language Programming By Ytha Yu, Charles Marut Chap 4 (Introduction ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 4 (Introduction ...Assembly Language Programming By Ytha Yu, Charles Marut Chap 4 (Introduction ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 4 (Introduction ...Bilal Amjad
 
COMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docx
COMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docxCOMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docx
COMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docxdonnajames55
 
A12 microprocessors & microcontrollers (common to eee & ecm)
A12 microprocessors & microcontrollers (common to eee & ecm)A12 microprocessors & microcontrollers (common to eee & ecm)
A12 microprocessors & microcontrollers (common to eee & ecm)Abhinay Potlabathini
 
Vtu cs 7th_sem_question_papers
Vtu cs 7th_sem_question_papersVtu cs 7th_sem_question_papers
Vtu cs 7th_sem_question_papersmegharajk
 

Similar to 17431 microprocessor & programming (20)

17443 microprocessor
17443   microprocessor17443   microprocessor
17443 microprocessor
 
Qoestion Bank Big Questions
Qoestion  Bank Big QuestionsQoestion  Bank Big Questions
Qoestion Bank Big Questions
 
Question bank malp 3340302
Question bank malp 3340302Question bank malp 3340302
Question bank malp 3340302
 
7th Semester (June; July-2015) Computer Science and Information Science Engin...
7th Semester (June; July-2015) Computer Science and Information Science Engin...7th Semester (June; July-2015) Computer Science and Information Science Engin...
7th Semester (June; July-2015) Computer Science and Information Science Engin...
 
Microcontrollers 80 Marks Sample Question Paper
Microcontrollers   80 Marks Sample Question PaperMicrocontrollers   80 Marks Sample Question Paper
Microcontrollers 80 Marks Sample Question Paper
 
Microcontrollers 80 Marks Sample Question Paper
Microcontrollers   80 Marks Sample Question PaperMicrocontrollers   80 Marks Sample Question Paper
Microcontrollers 80 Marks Sample Question Paper
 
5th semester Computer Science and Information Science Engg (2013 December) Qu...
5th semester Computer Science and Information Science Engg (2013 December) Qu...5th semester Computer Science and Information Science Engg (2013 December) Qu...
5th semester Computer Science and Information Science Engg (2013 December) Qu...
 
17432 object oriented programming
17432   object oriented programming17432   object oriented programming
17432 object oriented programming
 
2009 Punjab Technical University B.C.A Microprocessor Question paper
2009 Punjab Technical University B.C.A Microprocessor Question paper2009 Punjab Technical University B.C.A Microprocessor Question paper
2009 Punjab Technical University B.C.A Microprocessor Question paper
 
8th Semester Computer Science (2013-June) Question Papers
8th Semester Computer Science (2013-June) Question Papers8th Semester Computer Science (2013-June) Question Papers
8th Semester Computer Science (2013-June) Question Papers
 
A109210503 digitallogicdesign1
A109210503 digitallogicdesign1A109210503 digitallogicdesign1
A109210503 digitallogicdesign1
 
Assembly Language Programming By Ytha Yu, Charles Marut Chap 4 (Introduction ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 4 (Introduction ...Assembly Language Programming By Ytha Yu, Charles Marut Chap 4 (Introduction ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 4 (Introduction ...
 
COMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docx
COMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docxCOMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docx
COMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docx
 
7th Semester Computer Science (2013-June) Question Papers
7th Semester Computer Science (2013-June) Question Papers7th Semester Computer Science (2013-June) Question Papers
7th Semester Computer Science (2013-June) Question Papers
 
7th cs june 2013
7th cs   june 20137th cs   june 2013
7th cs june 2013
 
2013-June: 7th Semester CSE Question Papers
2013-June: 7th  Semester CSE Question Papers2013-June: 7th  Semester CSE Question Papers
2013-June: 7th Semester CSE Question Papers
 
2013-June: 5th Semester CSE / ISE Question Papers
2013-June: 5th  Semester CSE / ISE Question Papers2013-June: 5th  Semester CSE / ISE Question Papers
2013-June: 5th Semester CSE / ISE Question Papers
 
5th Semester CS / IS (2013-June) Question Papers
5th Semester CS / IS (2013-June) Question Papers5th Semester CS / IS (2013-June) Question Papers
5th Semester CS / IS (2013-June) Question Papers
 
A12 microprocessors & microcontrollers (common to eee & ecm)
A12 microprocessors & microcontrollers (common to eee & ecm)A12 microprocessors & microcontrollers (common to eee & ecm)
A12 microprocessors & microcontrollers (common to eee & ecm)
 
Vtu cs 7th_sem_question_papers
Vtu cs 7th_sem_question_papersVtu cs 7th_sem_question_papers
Vtu cs 7th_sem_question_papers
 

More from soni_nits

Scheme g second semester (ae,me,pg,pt,fe,mh,mi,ps)
Scheme   g second semester (ae,me,pg,pt,fe,mh,mi,ps)Scheme   g second semester (ae,me,pg,pt,fe,mh,mi,ps)
Scheme g second semester (ae,me,pg,pt,fe,mh,mi,ps)soni_nits
 
Scheme g second semester (au)
Scheme   g second semester (au)Scheme   g second semester (au)
Scheme g second semester (au)soni_nits
 
First semester curriculum (fg)
First semester curriculum (fg)First semester curriculum (fg)
First semester curriculum (fg)soni_nits
 
First semester curriculum (eu)
First semester curriculum (eu)First semester curriculum (eu)
First semester curriculum (eu)soni_nits
 
First semester curriculum (dc,tc,tx)
First semester curriculum (dc,tc,tx)First semester curriculum (dc,tc,tx)
First semester curriculum (dc,tc,tx)soni_nits
 
First semester curriculum (au)
First semester curriculum (au)First semester curriculum (au)
First semester curriculum (au)soni_nits
 
First semester curriculum (all branches)
First semester curriculum (all branches)First semester curriculum (all branches)
First semester curriculum (all branches)soni_nits
 
Tg 17401 enviornmental-studies-16012014
Tg 17401 enviornmental-studies-16012014Tg 17401 enviornmental-studies-16012014
Tg 17401 enviornmental-studies-16012014soni_nits
 
17472 principal of comm system
17472  principal of comm system17472  principal of comm system
17472 principal of comm systemsoni_nits
 
17445 linear integrated circuits
17445   linear integrated circuits17445   linear integrated circuits
17445 linear integrated circuitssoni_nits
 
17444 power electronics
17444   power electronics17444   power electronics
17444 power electronicssoni_nits
 
17442 biosensors
17442  biosensors17442  biosensors
17442 biosensorssoni_nits
 
17441 t.v.signal transmission system
17441  t.v.signal transmission system17441  t.v.signal transmission system
17441 t.v.signal transmission systemsoni_nits
 
17440 analog communication
17440  analog communication17440  analog communication
17440 analog communicationsoni_nits
 
17439 principal of analog communication
17439  principal of analog communication17439  principal of analog communication
17439 principal of analog communicationsoni_nits
 
17438 communication techniques
17438  communication techniques17438  communication techniques
17438 communication techniquessoni_nits
 
17434 industrial measurments
17434   industrial measurments17434   industrial measurments
17434 industrial measurmentssoni_nits
 
17437 radio reception
17437 radio reception17437 radio reception
17437 radio receptionsoni_nits
 
17435 electronics instrumentation
17435  electronics instrumentation17435  electronics instrumentation
17435 electronics instrumentationsoni_nits
 
17430 data communication & net
17430  data communication & net17430  data communication & net
17430 data communication & netsoni_nits
 

More from soni_nits (20)

Scheme g second semester (ae,me,pg,pt,fe,mh,mi,ps)
Scheme   g second semester (ae,me,pg,pt,fe,mh,mi,ps)Scheme   g second semester (ae,me,pg,pt,fe,mh,mi,ps)
Scheme g second semester (ae,me,pg,pt,fe,mh,mi,ps)
 
Scheme g second semester (au)
Scheme   g second semester (au)Scheme   g second semester (au)
Scheme g second semester (au)
 
First semester curriculum (fg)
First semester curriculum (fg)First semester curriculum (fg)
First semester curriculum (fg)
 
First semester curriculum (eu)
First semester curriculum (eu)First semester curriculum (eu)
First semester curriculum (eu)
 
First semester curriculum (dc,tc,tx)
First semester curriculum (dc,tc,tx)First semester curriculum (dc,tc,tx)
First semester curriculum (dc,tc,tx)
 
First semester curriculum (au)
First semester curriculum (au)First semester curriculum (au)
First semester curriculum (au)
 
First semester curriculum (all branches)
First semester curriculum (all branches)First semester curriculum (all branches)
First semester curriculum (all branches)
 
Tg 17401 enviornmental-studies-16012014
Tg 17401 enviornmental-studies-16012014Tg 17401 enviornmental-studies-16012014
Tg 17401 enviornmental-studies-16012014
 
17472 principal of comm system
17472  principal of comm system17472  principal of comm system
17472 principal of comm system
 
17445 linear integrated circuits
17445   linear integrated circuits17445   linear integrated circuits
17445 linear integrated circuits
 
17444 power electronics
17444   power electronics17444   power electronics
17444 power electronics
 
17442 biosensors
17442  biosensors17442  biosensors
17442 biosensors
 
17441 t.v.signal transmission system
17441  t.v.signal transmission system17441  t.v.signal transmission system
17441 t.v.signal transmission system
 
17440 analog communication
17440  analog communication17440  analog communication
17440 analog communication
 
17439 principal of analog communication
17439  principal of analog communication17439  principal of analog communication
17439 principal of analog communication
 
17438 communication techniques
17438  communication techniques17438  communication techniques
17438 communication techniques
 
17434 industrial measurments
17434   industrial measurments17434   industrial measurments
17434 industrial measurments
 
17437 radio reception
17437 radio reception17437 radio reception
17437 radio reception
 
17435 electronics instrumentation
17435  electronics instrumentation17435  electronics instrumentation
17435 electronics instrumentation
 
17430 data communication & net
17430  data communication & net17430  data communication & net
17430 data communication & net
 

Recently uploaded

Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 

Recently uploaded (20)

Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 

17431 microprocessor & programming

  • 1. 1 Scheme G Sample Test Paper-I Course Name : Diploma in Computer Engineering Group Course Code : CO/CD/CM/CW/IF Semester : Fourth Subject Title : Microprocessor and programming Marks : 25 Time: 1 hour Instructions: 1. All questions are compulsory 2. Illustrate your answers with neat sketches wherever necessary 3. Figures to the right indicate full marks 4. Assume suitable data if necessary 5. Preferably, write the answers in sequential order Q1. Attempt any THREE of the following: 9 Marks a) Explain the function of following pins of 8085 processor i.ALE ii.HOLD iii.HLDA b) List any 6 features of 8086 microprocessor. c) Given SS: 3450H; SP: 2A56H, calculate the physical address. d) List any 2 addressing modes with example. Identify the addressing mode of the instruction MOV AL, [SI]. Q2. Attempt any TWO of the following 8 Marks a) Draw the internal architecture of 8086. b) Explain memory segmentation in 8086. c) Differentiate between minimum mode and maximum mode. Q3. Attempt any TWO of the following 8 Marks a) Draw the flag register of 8086. Explain any 2 control flags. b) Draw the timing diagram for maximum mode memory read cycle. c) Explain the instructions of 8086 i. XLAT ii. TEST 17431
  • 2. 2 Scheme G Sample Test Paper-II Course Name : Diploma in Computer Engineering Group Course Code : CO/CD/CM/CW/IF Semester : Fourth Subject Title : Microprocessor and programming Marks : 25 Time: 1 hour Instructions: 1. All questions are compulsory 2. Illustrate your answers with neat sketches wherever necessary 3. Figures to the right indicate full marks 4. Assume suitable data if necessary 5. Preferably, write the answers in sequential order Q.1 Attempt any THREE of the following: 9 Marks a. Explain the following instructions i. ROL ii. MOVS iii. STD b. Explain the assembler directives ASSUME, DW, EVEN. c. Write the code segment for adding two 16 bit numbers. d. Differentiate between FAR and NEAR calls (Any 3 points) Q.2 Attempt any TWO of the following 8 Marks a. Explain Assembler and Linker. b. Explain Recursive procedure with example. c. Write an assembly language program to find the largest of 10 bytes. Q.3 Attempt any TWO of the following 8 Marks a. Define Macro. Give an example and explain. b. Write an assembly language program to transfer block of data from one location to another. c. Write an assembly language program to convert HEX number to BCD. 17431
  • 3. 3 Scheme G Sample Question Paper Course Name : Diploma in Computer Engineering Group Course Code : CO/CD/CM/CW/IF Semester : Fourth Subject Title : Microprocessor and programming Marks : 100 Time: 3 hour Instructions: 1. All questions are compulsory 2. Illustrate your answers with neat sketches wherever necessary 3. Figures to the right indicate full marks 4. Assume suitable data if necessary 5. Preferably, write the answers in sequential order Q1. a) Attempt any SIX of the following: 12 Marks a. State the functions of the following pins of 8085 microprocessor 1) ALE 2) IO/M b. List all the 16 bit general purpose registers of 8086 microprocessor c. List any two addressing modes of 8086 with one example each. d. Draw the symbols used in a flowchart while developing ALP. Mention the use of each symbol (Any 4) e. State two uses of Accumulator in 8085. f. State the use of OF and AC flags in 8086. g. Give the syntax for defining the Macro. h. Differentiate between SHR and ROR instructions of 8086. (2points) Q1. b) Attempt any TWO of the following: 8 Marks a. State the function of following assembly language programming tools. a. Editor b. Assembler c. Linker d. Debugger 17431
  • 4. 4 b. Explain follwing assembler dirtecive a. ASSUME b. DB c. DUP d. ENDS c. Differentiate between NEAR and FAR CALLs (4points) Q.2 Attempt any FOUR of the following: 16 Marks a. Draw the flag register format of 8085 microprocessor and explain all the flags. b. Draw the neat labeled architecture of 8086. c. Explain how queuing speeds up the processing of 8086 operations. d. List any 8 features of 8085 microprocessor. e. What will be the contents of register BL after the last instruction execution? MOV BL, 14H MOV CL, 03H SHL BL,CL f. List the steps in physical address generation in 8086 microprocessor. Calculate the physical address for the given CS = 2340H , IP = 76A9H Q3. Attempt any FOUR of the following: 16 Marks a. Explain the following instructions with one example each. 1) ADD 2) AND 3) LEA 4) INC b. State the functions for the following pins of 8086 1. NMI 2. BHE 3. TEST 4. DEN c. Draw the interfacing diagram of octal latch and explain it. d. List and explain any 4 flag manipulation instruction of 8086 microprocessor. e. Write assembly language program for reversing the string. f. Differentiate between 8085 and 8086. (Any 4 points)
  • 5. 5 Q4. Attempt any FOUR of the following: 16 Marks a. Identify the addressing modes for the following instructions: 1) MOV CL, 34H 2) MOV BX, [4172H] 3) MOV DS, AX 4) MOV AX, [SI + BX +04] b. Explain the following instructions of 8086 1) DAA 2) XLAT c. Write an Assembly Language program to count the number of 1’s in BL register. d. Write assembly language program to multiply two 8 bit numbers. e. Write assembly language program to add two BCD numbers. f. Define Procedure and explain the directives used in Procedure. Q5. Attempt any FOUR of the following: 16 Marks a. Write assembly language program to find the sum of 5 bytes of data. b. How many times LOOP1 will be executed in the following program? What will be the contents of BL after the execution? MOV BL, 00H MOV CL, 05H LOOP1: ADD BL, 02H DEC CL JNZ LOOP1 c. Write an Assembly Language program for BCD to Hex Conversion. d. Write the appropriate 8086 instructions to perform the following operations: 1) Multiply AL register contents by 4 using shift instruction 2) Move 1234H into DS register. e. Explain CALL and RET instructions. f. Describe reentrant procedure with the help of schematic diagram. Q6. Attempt any TWO of the following: 16 Marks a. Draw the timing diagram of minimum mode memory write cycle. Also explain the
  • 6. 6 same. b. Write an Assembly Language program to transfer 10 bytes of data from one memory location to another. Also draw the flowchart for the same. c. i) Define Macro. Give an example. ii) Write a procedure to find the factoria