Question Bank: ७०८ सदाशिव पेठ, कुमठेकर मार्ग, पुणे ४११०३० संपकग क्रमांक (020) 2447 6938 E-mail
Question Bank: ७०८ सदाशिव पेठ, कुमठेकर मार्ग, पुणे ४११०३० संपकग क्रमांक (020) 2447 6938 E-mail
Question Bank
Standard:- 12th
March 2021
सूचना
1. फक्त शवद्यार्थ्यांना प्रश्नप्रकारांचा सराव करून
देण्यासाठीच
2. सदर प्रश्नसंचातील प्रश्न बोर्डाच्या प्रश्नपशिकेत
येतीलच असे नाही याची नोंद घ्यावी.
QUESTION BANK
10. If the status of S0 and S1 pin is low, the microprocessor performs the Correct
………………. Answer
i. Reset operation 1 mark
ii. Halt operation
iii. Hold operation
iv. Interrupt acknowledge
13. The 8085 microprocessor can address …….. bytes of memory Correct
i. 1k Answer
ii. 4k 1 mark
iii. 128 k
iv. 64K
20 What are flags in 8085? Enlist the different flags provided by 8085 Define Flags –
microprocessor.Also draw flag register diagram 1mark
List – 1mark
Diagram –
-1 mark
21 Explain the function of following units in microprocessor 8085. Fun of each pin
a) ALU b) Program Counter c) Instruction decoder - 1 mark each
1X3=3
22 Write a short note on flag register of 8085 microprocessor Flag register
diagram –
1 mark
Explanation
-2mark
23 Explain the zero and parity flags of 8085 with suitable diagram Zero flag -1½
Parity flag 1 ½
24 What is Microprocessor? List its functions. Microprocessor
-1Mark
, list any 4
functions
-2Mark
25 What is multiplexed address and data bus in 8085? give its advantages. Explanation of
AD0-AD7 -
2Mark
Advantages-
1mark
26 What is stack in 8085? List the instructions required for stack operations. Stack concept-
2Mark
Instructions-
-1 Mark
27 Explain the following flags of 8085 microprocessor Each flag- 1
a) Carry b) Sign c) Zero Mark
28 In case of Microprocessor architecture, explain the following terms in brief. Expla of each
a) Address Bus bus – 1 mark
b) Data Bus 1X3=3
c) Control Bus
1+3=4
13 Differentiate between maskable and Non-maskable interrupts Any four
points – 4
marks
1 What are vectored interrupt? What are maskable and Non maskable Vectored
interrupts? State all hardware interrupts of 8085 microprocessor with their interrupt-1
priorities and vector addresses mark
Maskable and
non maskable
- 1mark
Priority and
vector address-
2mark
15 What are I/O mapped I/O and Memory mapped I/O schemes? I/o mapped I/o
Which one 8085 uses. and Memory
mapped I/O-
3 mark
Used in 8085-
1 mark
16. The flag register of 8085 microprocessor contains data 3CH. interpret its Flag register.
meaning diag- 1 mark
Interpretation-
3 marks
CHAPTER 2 – INSTRUCTION SET AND PROGRAMMING OF 8085
1. The _______ flag bit is reset, when flag register content is 1Mark
95 H.
i. P
ii. Z
iii. Ac
iv. CY
3. The instruction __________ will affect the zero flag without 1Mark
changing the contents of the accumulator.
i. MVI A,00
ii. SUB A
iii. XRA A
iv. CMP A
3. The accumulator of 8085 microprocessor contains data 3CH. 1 Mark for each subpoint
What will be the effect on its content if following a) 04H
instructions are executed independently? b) 1EH
a) ANI 05H b) RRC c) MOV B, A c) 3CH
4. Explain the register and direct addressing modes of 8085 1 mark explanation and ½
microprocessor with example of each. mark example for each
mode
5. Explain the following instructions with suitable example Correct explanation with
a)DAA b) LDAX rp c) SHLD address example 1 mark for each
instruction
6. Explain the following instructions with suitable example. Correct explanation with
a)RAR b) ADC r c) CPI data example 1 mark for each
instruction
7. Explain the following instructions of 8085 microprocessor Correct explanation with
with suitable example example 1 mark for each
a)SPHL b) CMA c) PUSH PSW instruction
8. Write appropriate instructions for each of the following 1 Mark for each subpoint
tasks:
a) Store the contents of accumulator to memory location a) STAX B
pointed by BC pair.-
b ) Decrement contents of HL pair by 1. – b) DCX H
c) Set carry flag to 1. - c) STC
4 Mark Questions
4. What do you understand by register indirect and implicit Correct explanation with
addressing modes? Explain with suitable example. List down example.
instructions which make accumulator content clear. 1 ½ mark for each mode
1 mark for any two correct
instructions.
5. What are branching instructions? Explain the jumping Correct explanation with
instructions with jump conditions. example. Any 4 instructions
1 mark for each instruction
6. The accumulator of 8085 microprocessor contains data AAH 1 Mark for each subpoint
and register C contents 55H. What will be the contents of a) AAH
accumulator if following instructions are executed b) 00H
independently? c) FFH
a) CMP C b) ANA C c) ORA C d) SUB C d) 55H
5 Mark Questions
1. Write an assembly language program to divide two 8-bit hex Correct Program 4 marks
numbers where dividend is stored in memory location and Comments 1 mark
D000H and divisor is stored in memory location D001. Store
the quotient and the reminder in consecutive memory
locations.
3. Write an assembly language program to count the number of Correct Program 4 marks
times the data AD H is found in a block starting from C000 and Comments 1 mark
to C00FH. Store the result at memory location D000H.
4. Write an assembly language program to find out 2’s Correct Program 4 marks
compliment of five numbers stored from memory location and Comments 1 mark
F000H onwards. Store the result from memory address
D000H.
5. Write an assembly language program to transfer the block of Correct Program 4 marks
data stored from memory location D100H to D1FFH in and Comments 1 mark
reverse order in new memory location starting at D200H.
6. Write an assembly language program to divide all the Correct Program 4 marks
numbers of a block by 2. Block is stored from 4000 to and Comments 1 mark
4009H. Store result at the same place.
7. Write an assembly language program to find largest number Correct Program 4 marks
from a block of data having starting address D001 H. and Comments 1 mark
Length of block is stored in location D000H. Store the result
at D060H.
8. Block of data is stored from memory location C050 H to Correct Program 4 marks
C05FH. Write an assembly language program to copy entire and Comments 1 mark
block of data to a new location starting from C070H.
10. Write a sub routine to fill the memory locations 2000H to Correct Program 4 marks
2009H with data BBH and 44H alternatively. and Comments 1 mark
11. Write an assembly language program to separate the nibbles Correct Program 4 marks
of a number stored at memory location 2000H. Multiply the and Comments 1 mark
separated nibbles and store the result at memory location
3000H.
12. Write assembly language program to store data BCH in 20 Correct Program 4 marks
contiguous memory locations starting from 8081H. and Comments 1 mark
13. Write assembly language program to get decimal sum of Correct Program 4 marks
series of numbers starts from C001H onwards. Block length and Comments 1 mark
is stored in C000H. Store result in C050 and carry in C051H.
14. Write assembly language program to subtract the number Correct Program 4 marks
stored in memory location 3601H from the number stored in and Comments 1 mark
3600H. Store the positive result at location 3602H.
15. Write assembly language program to add two 8 bit BCD Correct Program 4 marks
numbers stored at memory locations 5000H and 5001H. and Comments 1 mark
Store the result at memory location 5002H onwards starting
with LSB.
CHAPTER 3 - Introduction to INTEL X-86 Family – 4 mark
MCQ
1 Pentium processor has ….. bit data bus and ……bit address bus Correct answer -
i. 64, 32 1mark
ii. 32, 64
iii. 32, 32
iv. 16, 32
10 Draw programming models of X-86 16 bit and X-86 32 bit 16 bit Diagram
Microprocessor -2mark
32 bit model
diagram –
2 mark
11 Compare any four attributes of 80286 and 80486 Each attribute
- 1 mark
- 1X4=4
12 Compare any four attributes of 80386 and Pentium processor Each attribute
- 1 mark
- 1X4=4
13 Compare any four attributes of 80486 and Pentium processor Each attribute
- 1 mark
- 1X4=4
14 Compare any four attributes of 8086 microprocessor with Pentium Each attribute
processor - 1 mark
- 1 X4 =4
15 Write important features of any two microprocessors in X-86 family in Any two
brief processor
features- 2 mark
each
2+2=4
Chapter 4: Introduction to Microcontroller
MCQ 1 MARK
Q. Question Marking
No. scheme
-
1 8051 microcontroller IC have ______ number of 8 bit I/O ports. Correct
i) 1 answer
ii) 2 1 mark
iii) 4
iv) 8
2 The 8051 microcontroller has instruction set of _______instructions. correct
i) 101 answer
ii) 110 1 mark
iii) 99
iv) 111
3 _____ is a microcontroller chip. Correct
i) Intel 8085 answer
ii) Intel 8086 1 mark
iii) Intel 8052
iv) Intel 8008
4 8051 is a ____ bit Microcontroller. Correct
i) 8 answer
ii) 4 1 mark
iii) 16
iv) 32
5 _________ is a Microcontroller. Correct
i) 8086 answer
ii) 8051 1 mark
iii) 8088
iv) 80286
6 Internal data memory of a Microcontroller is _____. Correct
i) 128 bytes answer
ii) 128 k bytes 1 mark
iii) 256 bytes
iv) 4 k bytes
7 _______ is a characteristic feature of 8051 Microcontroller. Correct
i) Four 8 bit I/O ports answer
ii) Two 8 bit I/O ports 1 mark
iii) 4 KB RAM
iv) Four external Interrupts.
8 Which of the following is not a part of an 8051 single Correct
chip microcontroller? answer
i) A 4 kbyte ROM 1 mark
ii) Dual serial port
iii) 128 byte RAM
iv) Four 8 bit parallel I/O ports
9 8051 Microcontroller has clock up to _________. Correct
i) 12 MHz answer
ii) 4 MHz 1 mark
iii) 9 MHz
iv) 6 MHz
10 The 8051 is a _____ generation microcontroller. Correct
i) First answer
ii) Second 1 mark
iii) Third
iv) Fourth
11 The 8051 has ALU of _____ capacity. Correct
i) 64 bit i answer
ii) 32 bit 1 mark
iii) 16 bit
iv) 8 bit
12 Internal program memory of 8052 microcontroller is _____. Correct
i) 4 byte answer
ii) 16 k byte 1 mark
iii) 8 k byte i
iv) 64 k byte
13 __________ is not a microcontroller. Correct
i) 8052 answer
ii) Pentium 1 mark
iii) 8031
iv) 8048
14 8051 microcontroller have _______ external interrupts. Correct
i) 1 answer
ii) 2 1 mark
iii) 3
iv) 4
3 Marks Question
Q. Question Marking
No. scheme
4 If length of the cable is very long then ______ is used in between to bring Correct answer
the weak signal to its original level. 1 mark
i) MODEM
ii) HUB
iii) REPEATER
iv) ROUTER
7 ______cable type is ideal for connecting between two buildings. Correct answer
i) UTP 1 mark
ii) STP
iii) Co axial
iv) Flat
8 If the network is to be executed beyond predefined cable limit _______ is Correct answer
used. 1 mark
i) Modem
ii) Repeater
iii) Hub
iv) router
9 The process of modulation and demodulation is done by a device namely Correct answer
_______. 1 mark
i) Hub
ii) Repeater
iii) Router
iv) Modem
10 All the systems on a network must follow a set of common rules called as Correct answer
_______. 1 mark
i) Interface
ii) Protocol
iii) Conventions
iv) None of the above
11 _______cable has highest sensitivity to EMI. Correct answer
i) STP 1 mark
ii) Fiber optic
iii) UTP
iv) Co axial
12 BUS topologies are suitable for networks that uses _____ access methods. Correct answer
i) Contention based 1 mark
ii) token passing
iii) polling
iv) None of these
13 _______ does not regenerate the computer signal in networks. Correct answer
i) Passive hub 1 mark
ii) Active hub
iii) Repeater
iv) All the three
14 ______cable type supports the greatest cable length for computer Correct answer
networking. 1 mark
i) UTP
ii) STP
iii) Thick net co axial
iv) Thin net co axial
15 _______cable has highest bandwidth. Correct answer
i) Fiber Optic 1 mark
ii) UTP
iii) STP i
iv) co axial
16 EMI is minimum in case of _______ cable. Correct answer
i) Fiber Optic 1 mark
ii) UTP
iii) STP
iv) co axial
3 Mark questions
1 Explain HUB and Repeater in detail. 1 ½ mark each
4 Define Bus, Ring, Star topologies. Draw simple diagrams for each. 1 Mark each :
Def. ½ Mark
Diagram ½ Mark
5 Explain Ring topology with diagram. State its two advantages. Explanation 1 & ½
Diagram ½ Mark
Advantages ½ x
2Mark
6 Write a short note on STP cable with suitable diagram and give its any Diagram 1Mark
two characteristics. Explanation 1 Mark
Charac. ½ x 2 Mark
7 What is modem? 1 Mark
Explain working of MODEM and specify types of MODEMS. 2 Mark
8 Explain UTP cable with its any four characteristics. UTP cable 1Mark
Charac. ½ x 4 Mark
9 Explain co axial cable with suitable diagram and give its any two Diagram 1Mark
advantages. Explanation 1 Mark
Advant. ½ x 2 Mark
10 Give at least two advantages and one disadvantage of wireless media over Advantages 2 Mark
cable media. Disadv. 1Mark
11 List various network access methods and explain any one of them. Methods ½ x 3
Explanation 1 1/2
12 Explain the following attributes of transmission medium : 1 Marks each
i) Installation requirement ii) EMI iii) Attenuation.
16 Distinguish between STP and UTP cables. ( Any three points ) 1 mark x 3
17 Differentiate between LAN and WAN. ( Any three points )
1 mark x3
18 Enlist six characteristics of transmission media. ½ x 6 = 3 mark
19 Explain STAR topology with diagram. Also give two advantages and Diagram 1 mark
disadvantages. Advantages ½ x 2
Mark
Disadvantages ½ x 2
Mark
20 Compare any three characteristics of Twisted pair cable with coaxial 1Mark x 3
cable.
4 Marks question
1 Explain any four characteristics of transmission media. 1Mark x 4
2 Explain STAR and RING Topologies with suitable diagram. For each topology: 2
Mark
Diagram 1 Mark
Explanation 1 Mark
3 Explain following network devices with diagram For each device
i) Router ii) Repeater 2Mark
Diagram 1 Mark
Explanation 1 Mark
4 Explain in brief the following access method:
i) Contention 2 Mark
ii) Token passing 2 Mark
5 Explain Token passing and Polling access method. 2 Mark for each
method
6 Differentiate between co-axial cable and fiber optic cable. 1Mark x 4
11 Compare any four attributes of UTP and optical fiber cable. 1 Mark x 4
12 Write any two advantages and two disadvantages of optical fiber cable. Advantages 2 Mark
Disadvantages 2
Mark
13 What is network topology? 1 Mark
Explain in brief two basic categories of topology. 1 ½ Mark each