c1 Merged
c1 Merged
* C20-CM-WD-CAI–304
7237
BOARD DIPLOMA EXAMINATION, (C-20)
JUNE/JULY— 2022
PART—A 3×10=30
3. Explain the terms non-linear data structures and linear data structures
with examples.
10. Consider a binary tree with at least 5 nodes and give it’s post-order
traversal.
/7237 1 [ Contd...
www.manaresults.co.in
* PART—B 8×5=40
11. (a) Apply the quicksort technique on (34, 15, 67, 89 and 24)
elements and show the output of each iteration.
(OR)
12. (a) Construct a single linked list with 7 nodes and perform delete
and display operations.
(OR)
(OR)
14. (a) Apply the concept of an array to perform all the queue operations.
* (OR)
15. (a) Construct a binary search tree for the given nodes :
(10, 20, 34, 56, 68, 98, 33, 45) and give the in order, pre-order
and post-order traversals.
/7237 2 [ Contd...
www.manaresults.co.in
* (OR)
(b) Construct a binary tree if the in-order and post-order travels are
given as
IN-ORDER : 425136
POST-ORDER : 452631
PART—C 10×1=10
★★★
/7237 3 AA22-PDF
www.manaresults.co.in
7 2 3 7
* C20-CM-WD-CAI–304
7237
BOARD DIPLOMA EXAMINATION, (C-20)
JUNE/JULY— 2022
PART—A 3×10=30
3. Explain the terms non-linear data structures and linear data structures
with examples.
10. Consider a binary tree with at least 5 nodes and give it’s post-order
traversal.
/7237 1 [ Contd...
www.manaresults.co.in
* PART—B 8×5=40
11. (a) Apply the quicksort technique on (34, 15, 67, 89 and 24)
elements and show the output of each iteration.
(OR)
12. (a) Construct a single linked list with 7 nodes and perform delete
and display operations.
(OR)
(OR)
14. (a) Apply the concept of an array to perform all the queue operations.
* (OR)
15. (a) Construct a binary search tree for the given nodes :
(10, 20, 34, 56, 68, 98, 33, 45) and give the in order, pre-order
and post-order traversals.
/7237 2 [ Contd...
www.manaresults.co.in
* (OR)
(b) Construct a binary tree if the in-order and post-order travels are
given as
IN-ORDER : 425136
POST-ORDER : 452631
PART—C 10×1=10
★★★
/7237 3 AA22-PDF
www.manaresults.co.in
7237
* C20-CM-WD-CAI-304
7237
BOARD DIPLOMA EXAMINATION, (C-20)
NOVEMBER/DECEMBER—2022
DCME – THIRD SEMESTER EXAMINATION
DATA STRUCTURES THROUGH C
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
7. Define the terms PUSH and POP with respect to LIFO data structure.
10. Define the terms tree, degree of node and height of the tree.
*
/7237 1 [ Contd...
www.manaresults.co.in
PART—B 8×5=40
*
Instructions : (1) Answer all questions.
(2) Each question carries eight marks.
(3) Answers should be comprehensive and criterion for
valuation is the content but not the length of the answer.
11. (a) Use the concept of an array to write a program for binary search
for non-sorted sequence.
(OR)
12. (a) Use the concept of an array to write a program for circular queues.
(OR)
(b) Build an ordinary queue with linked list and perform all the
operations.
(OR)
(b) Use stack to evaluate the given postfix expression “53 + 62/*35* +”.
(OR)
*
(b) Use recursion concept and write the pseudocode for reversing an
ordinary queue.
15. (a) Construct a binary search tree for the values 10, 20, 34, 56, 68, 98,
33, 45 and find out the (i) root node, (ii) leaf nodes, (iii) height of the
tree and (iv) internal nodes.
(OR)
(b) Construct a binary tree for the values 24, 22, 54, 11, 33, 68, 89, 91,
12, 3 and 67, and give the inorder, preorder and postorder traversals.
*
/7237 2 [ Contd...
www.manaresults.co.in
PART—C 10×1=10
Instructions :
*
(1) Answer the following question.
(2) The question carries ten marks.
(3) Answer should be comprehensive and the criterion for
valuation is the content but not the length of the answer.
16. Design a binary search tree with the values 10, 30, 20, 40, 50, 60, 80,
90, 78, 99 nodes. Show the modified tree after inserting 1, 2 and 3
nodes and after deleting 20, 40, 50. Finally display the resultant tree
nodes from root to leaves and display the post order traversal of the final
tree.
*
/7237 3 AA22–PDF
www.manaresults.co.in
7237
* C20-CM-WD-CAI–304
7237
BOARD DIPLOMA EXAMINATION, (C-20)
MAY—2023
DCME - THIRD SEMESTER EXAMINATION
PART—A 3×10=30
9. Define the terms (a) subtree, (b) degree of tree and (c) internal node.
/7237 www.manaresults.co.in
1 [ Contd...
* PART—B 8×5=40
11. Write the algorithm and explain the method of insertion sort with an
example.
(OR)
Explain binary search method with an example and write the program
for it.
(OR)
13. Write a C program to implement stack and its operations using linked
list.
*
(OR)
14. Write a C program to implement queue and its operations using arrays.
(OR)
/7237 www.manaresults.co.in
2 [ Contd...
15. Explain various
* binary tree traversal algorithms with examples.
(OR)
Explain the construction of binary tree from the given inorder and
preorder traversals.
INORDER : S Q T P R X
PREORDER : P Q S T R X
PART—C 10×1=10
16. Consider two single linked lists L1 and L2 with following nodes :
L1 : 10, 50, 30, 20, 40
L2 : 20, 35, 40, 45, 50
/7237 www.manaresults.co.in
3 AA23–PDF
7237
C20-CM-WD-CAI– 304
7237
BOARD DIPLOMA EXAMINATION, (C-20)
OCTOBER/NOVEMBER—2023
PART—A 3×10=30
1. What is abstract data type? List any two abstract data types.
2. Define the terms linear data structure and non-linear data structure.
3. Define sorting. List any two sorting techniques along with their time
complexity.
5. Draw the node structure of a doubly linked list. Write the equivalent C
structure to represent the node of a doubly linked list.
/7237 1 [ Contd...
www.manaresults.co.in
PART—B 8×5=40
(OR)
12. (a) Write a C function to insert an element into a singly linked list.
(OR)
13. (a) Write a C program to implement stack data structure using array.
(OR)
( A B * C ) (D E ) * F /H
(OR)
15. (a) Explain how to convert a general tree to binary tree with an example.
(OR)
/7237 2 [ Contd...
www.manaresults.co.in
PART—C 10×1=10
16. Write a C program to implement two stacks from two ends of an array.
/7237 3 AA23(048)–PDF
www.manaresults.co.in
7237
C20-CM-WD-CAI– 304
*
7237
BOARD DIPLOMA EXAMINATION, (C-20)
OCTOBER/NOVEMBER—2023
PART—A 3×10=30
1. What is abstract data type? List any two abstract data types.
2. Define the terms linear data structure and non-linear data structure.
3. Define sorting. List any two sorting techniques along with their time
complexity.
5. Draw the node structure of a doubly linked list. Write the equivalent C
structure to represent the node of a doubly linked list.
*
6. Define queue. List the applications of queues.
www.manaresults.co.in
PART—B 8×5=40
*
Instructions : (1) Answer all questions.
(2) Each question carries eight marks.
(3) Answers should be comprehensive and criterion for
valuation is the content but not the length of the answer.
(OR)
12. (a) Write a C function to insert an element into a singly linked list.
(OR)
13. (a) Write a C program to implement stack data structure using array.
(OR)
( A B * C ) (D E ) * F /H
(OR)
15. (a) Explain how to convert a general tree to binary tree with an example.
(OR)
www.manaresults.co.in
PART—C 10×1=10
Instructions :
*
(1) Answer the following question.
(2) The question carries ten marks.
(3) Answer should be comprehensive and the criterion for
valuation is the content but not the length of the answer.
16. Write a C program to implement two stacks from two ends of an array.
*
/7237 3 AA23(048)–PDF
www.manaresults.co.in
7 2 3 8
* C20-CM-WD–305
7238
BOARD DIPLOMA EXAMINATION, (C-20)
JUNE/JULY— 2022
PART—A 3×10=30
3. Give the query to display the names of all the employees whose
salary >10000 from emp table.
7. Define an exception.
9. What is MongoDB?
/7238 1 [ Contd...
www.manaresults.co.in
* PART—B 8×5=40
11. (a) Explain the structure of database system with legible sketch.
(OR)
(OR)
(b) Explain any five data types available in SQL with proper examples
in each case.
13. (a) Explain all the looping statements of PL/SQL with syntax and
examples.
(OR)
14. (a) Explain the user defined exceptions with syntax in PL/SQL.
(OR)
* (b) Describe implicit and explicit cursors with examples.
(OR)
/7238 2 [ Contd...
www.manaresults.co.in
* PART—C 10×1=10
16. How do you create an employee table with id, name, age, address
and salary by choosing appropriate data types for the columns and
with a minimum of 5 records and can you create a view to store and
display minimum, maximum and average salaries of all the employees
without modifying the table contents? Justify your answer.
★★★
/7238 3 AA22-PDF
www.manaresults.co.in
7 2 3 8
* C20-CM-WD–305
7238
BOARD DIPLOMA EXAMINATION, (C-20)
JUNE/JULY— 2022
PART—A 3×10=30
3. Give the query to display the names of all the employees whose
salary >10000 from emp table.
7. Define an exception.
9. What is MongoDB?
/7238 1 [ Contd...
www.manaresults.co.in
* PART—B 8×5=40
11. (a) Explain the structure of database system with legible sketch.
(OR)
(OR)
(b) Explain any five data types available in SQL with proper examples
in each case.
13. (a) Explain all the looping statements of PL/SQL with syntax and
examples.
(OR)
14. (a) Explain the user defined exceptions with syntax in PL/SQL.
(OR)
* (b) Describe implicit and explicit cursors with examples.
(OR)
/7238 2 [ Contd...
www.manaresults.co.in
* PART—C 10×1=10
16. How do you create an employee table with id, name, age, address
and salary by choosing appropriate data types for the columns and
with a minimum of 5 records and can you create a view to store and
display minimum, maximum and average salaries of all the employees
without modifying the table contents? Justify your answer.
★★★
/7238 3 AA22-PDF
www.manaresults.co.in
7238
* C20-CM-WD-AIM-CCB-CCN-305
7238
BOARD DIPLOMA EXAMINATION, (C-20)
NOVEMBER/DECEMBER—2022
DCME – THIRD SEMESTER EXAMINATION
DATA BASE MANAGEMENT SYSTEM
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
*
/7238 1 [ Contd...
www.manaresults.co.in
PART—B 8×5=40
*
Instructions : (1) Answer all questions.
(2) Each question carries eight marks.
(3) Answers should be comprehensive and criterion for
valuation is the content but not the length of the answer.
(OR)
12. (a) Explain GRANT and REVOKE commands in SQL with syntax.
(OR)
13. (a) Explain any eight PL/SQL numeric datatypes with their subtypes.
(OR)
(OR)
*
(b) Explain user defined exceptions with syntax and example.
(OR)
*
/7238 2 [ Contd...
www.manaresults.co.in
PART—C 10×1=10
Instructions :
*
(1) Answer the following question.
(2) The question carries ten marks.
(3) Answer should be comprehensive and the criterion for
valuation is the content but not the length of the answer.
*
/7238 3 AA22–PDF
www.manaresults.co.in
7238
* C20-CM-WD-AIM-CCB-CCN–305
7238
BOARD DIPLOMA EXAMINATION, (C-20)
MAY—2023
DCME - THIRD SEMESTER EXAMINATION
DBMS
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
6. Define subprogram.
/7238 www.manaresults.co.in
1 [ Contd...
* PART—B 8×5=40
(OR)
(OR)
(OR)
(OR)
/7238 www.manaresults.co.in
2 [ Contd...
* PART—C 10×1=10
/7238 www.manaresults.co.in
3 AA23–PDF
7238
C20-CM-WD-AIM-CCB-CCN–305
7238
BOARD DIPLOMA EXAMINATION, (C-20)
OCTOBER/NOVEMBER—2023
DBMS
Time : 3 Hours ] [ Total Marks : 80
PART—A 3×10=30
7. Define cursor.
/7238 1 [ Contd...
www.manaresults.co.in
PART—B 8×5=40
(OR)
(OR)
13. (a) Explain PL/SQL tables and user defined records in PL/SQL.
(OR)
(OR)
(OR)
/7238 2 [ Contd...
www.manaresults.co.in
PART—C 10×1=10
16. Write a PL/SQL function is Even(N) to find the given number ‘N’ is Even
or not. If ‘N’ is even number is Even(N) should return 1, otherwise is
Even(N) should return 0.
/7238 3 AA23(048)–PDF
www.manaresults.co.in
7238
C20-CM-WD-AIM-CCB-CCN–305
*
7238
BOARD DIPLOMA EXAMINATION, (C-20)
OCTOBER/NOVEMBER—2023
DBMS
Time : 3 Hours ] [ Total Marks : 80
PART—A 3×10=30
7. Define cursor.
www.manaresults.co.in
PART—B 8×5=40
*
Instructions : (1) Answer all questions.
(2) Each question carries eight marks.
(3) Answers should be comprehensive and criterion for
valuation is the content but not the length of the answer.
(OR)
(OR)
13. (a) Explain PL/SQL tables and user defined records in PL/SQL.
(OR)
* (OR)
(OR)
www.manaresults.co.in
PART—C 10×1=10
Instructions :
*
(1) Answer the following question.
(2) The question carries ten marks.
(3) Answer should be comprehensive and the criterion for
valuation is the content but not the length of the answer.
16. Write a PL/SQL function is Even(N) to find the given number ‘N’ is Even
or not. If ‘N’ is even number is Even(N) should return 1, otherwise is
Even(N) should return 0.
*
/7238 3 AA23(048)–PDF
www.manaresults.co.in
7 2 3 5
* C20-CM–302
7235
BOARD DIPLOMA EXAMINATION, (C-20)
JUNE/JULY— 2022
DIGITAL ELECTRONICS
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
/7235 1 [ Contd...
www.manaresults.co.in
* PART—B 8×5=40
11. (a) What are the value of (i) AEF7(16) in to octal and (ii) 8F9A(16) in
to binary?
(OR)
12. (a) Give the steps of how the Sum of Products (SOP) method gives
the Boolean expression of the below truth table.
A B C Y
0 0 0 0
0 0 1 1
0 1 0 1
0 1 1 0
1 0 0 0
1 0 1 1
1 1 0 1
1 1 1 0
(OR)
* (b) Give the steps of how the K-map reduces the given expression
Y = m(1,3,4,5,7,9,11,13,15).
13. (a) Suggest the flip-flop and give the steps of how it eliminates
forbidden state of SR flip-flop with truth table.
(OR)
(b) Recommend the inputs using truth table make the RS flip-flop
outputs into SET and RESET without triggered edge of clock
pulse.
/7235 2 [ Contd...
www.manaresults.co.in
14. (a) Give the*steps to modify the UP counter to measure both UP
and DOWN with truth table.
(OR)
(b) Suggest a Register that is taking data in parallel and taking out
data in parallel with circuit diagram by stating the working
process clearly.
15. (a) Suggest a device and explain how it transmits the single line
data into three outputs.
(OR)
PART—C 10×1=10
16. Assume that you have an adder that adds two numbers at a time,
deconstruct it such that they are not added in serial. Comment on
time taken to add the two numbers after deconstructing. Justify
your answer by giving steps to deconstruct it.
* ★★★
/7235 3 AA22-PDF
www.manaresults.co.in
7 2 3 5
* C20-CM–302
7235
BOARD DIPLOMA EXAMINATION, (C-20)
JUNE/JULY— 2022
DIGITAL ELECTRONICS
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
/7235 1 [ Contd...
www.manaresults.co.in
* PART—B 8×5=40
11. (a) What are the value of (i) AEF7(16) in to octal and (ii) 8F9A(16) in
to binary?
(OR)
12. (a) Give the steps of how the Sum of Products (SOP) method gives
the Boolean expression of the below truth table.
A B C Y
0 0 0 0
0 0 1 1
0 1 0 1
0 1 1 0
1 0 0 0
1 0 1 1
1 1 0 1
1 1 1 0
(OR)
* (b) Give the steps of how the K-map reduces the given expression
Y = m(1,3,4,5,7,9,11,13,15).
13. (a) Suggest the flip-flop and give the steps of how it eliminates
forbidden state of SR flip-flop with truth table.
(OR)
(b) Recommend the inputs using truth table make the RS flip-flop
outputs into SET and RESET without triggered edge of clock
pulse.
/7235 2 [ Contd...
www.manaresults.co.in
14. (a) Give the*steps to modify the UP counter to measure both UP
and DOWN with truth table.
(OR)
(b) Suggest a Register that is taking data in parallel and taking out
data in parallel with circuit diagram by stating the working
process clearly.
15. (a) Suggest a device and explain how it transmits the single line
data into three outputs.
(OR)
PART—C 10×1=10
16. Assume that you have an adder that adds two numbers at a time,
deconstruct it such that they are not added in serial. Comment on
time taken to add the two numbers after deconstructing. Justify
your answer by giving steps to deconstruct it.
* ★★★
/7235 3 AA22-PDF
www.manaresults.co.in
7235
* C20-CM-302
7235
BOARD DIPLOMA EXAMINATION, (C-20)
NOVEMBER/DECEMBER—2022
DCME – THIRD SEMESTER EXAMINATION
DIGITAL ELECTRONICS
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
www.manaresults.co.in
PART—B 8×5=40
*
Instructions : (1) Answer all questions.
(2) Each question carries eight marks.
(3) Answers should be comprehensive and criterion for
valuation is the content but not the length of the answer.
11. (a) What are the values of (i) AEF7(16) in octal and (ii) 8F9A(16) in binary?
(OR)
(b) Explain how excess-3 code is constructed from 421 code. Justify
your answer in identifying self-complementing code among these
two.
12. (a) Give the necessary postulates in Boolean algebra and using them
prove the De Morgan’s theorems.
(OR)
(b) Give the steps of how the 4-variable K-map reduces the given
expression Y = m (2,4,5,7,8,10,12,15).
13. (a) State the reasons for calling NAND and NOR gates as universal
gates, explain the working of them with truth tables and diagrams.
(OR)
(b) Construct an adder that adds three bits at a time using half
adders only with proper truth tables.
14. (a) Give the steps to construct decade counter with truth table.
*
(OR)
(b) Give the steps to construct universal shift register with diagram.
15. (a) Give the steps to construct multiplexer with diagram and truth
table.
(OR)
www.manaresults.co.in
PART—C 10×1=10
Instructions :
*
(1) Answer the following question.
(2) The question carries ten marks.
(3) Answer should be comprehensive and the criterion for
valuation is the content but not the length of the answer.
*
/7235 3 AA22–PDF
www.manaresults.co.in
7235
* C20-CM–302
7235
BOARD DIPLOMA EXAMINATION, (C-20)
MAY—2023
DCME - THIRD SEMESTER EXAMINATION
DIGITAL ELECTRONICS
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
/7235 www.manaresults.co.in
1 [ Contd...
* PART—B 8×5=40
11. (a) Convert the given numbers into decimal (i) 2B8(16) and (ii) 746(8).
(OR)
(b) Explain the use of alphanumeric codes (i) ASCII and (ii) EBCDIC.
12. (a) Give the steps of how the K-map reduces the given expression
Y = m (1, 2, 3, 5, 6, 7, 8, 13).
(OR)
(b) Draw and explain 4-bit parallel adder using full adders.
13. (a) Draw the logic diagram, truth table and timing diagram for an edge
triggered JK flip-flop. Explain its operation.
(OR)
(b) Draw the logic diagram, truth table and timing diagram for a
SR flip-flop. Explain its operation.
14. (a) Write the steps to modify the UP counter to measure both UP and
* DOWN with truth table.
(OR)
(b) Draw and explain the working of 4-bit shift left register with timing
diagram.
15. (a) Recommend an encoder for transmitting 3 outputs with the 8 line
controller with proper explanation.
(OR)
/7235 www.manaresults.co.in
2 [ Contd...
* PART—C 10×1=10
16. Design a circuit that has a 3-bit binary input and a single output z
specified as follows :
z = 0 when the input is less than 510
z = 1 otherwise
/7235 www.manaresults.co.in
3 AA23–PDF
7235
C20-CM–302
7235
BOARD DIPLOMA EXAMINATION, (C-20)
OCTOBER/NOVEMBER—2023
DIGITAL ELECTRONICS
Time : 3 Hours ] [ Total Marks : 80
PART—A 3×10=30
8. Define counter.
/7235 1 [ Contd...
www.manaresults.co.in
PART—B 8×5=40
(OR)
12. (a) Draw and explain half adder using an exclusive OR and an AND
gate.
(OR)
13. (a) Explain the working of D flip-flop with a block diagram and
waveforms.
(OR)
14. (a) Draw and explain the operation of a 4-bit ring counter.
(OR)
15. (a) Draw and explain the operation of 4 to 10 line decoder circuit with
a truth table.
(OR)
www.manaresults.co.in
PART—C 10×1=10
/7235 3 AA23(048)–PDF
www.manaresults.co.in
7235
C20-CM–302
*
7235
BOARD DIPLOMA EXAMINATION, (C-20)
OCTOBER/NOVEMBER—2023
DIGITAL ELECTRONICS
Time : 3 Hours ] [ Total Marks : 80
1
PART—A 3×10=30
35
Instructions : (1) Answer all questions.
(2) Each question carries three marks.
(3) Answers should be brief and straight to the point and shall
1
not exceed five simple sentences.
35
1. Convert (6E)16 to decimal and binary forms.
8. Define counter.
*
/7235 1 [ Contd...
www.manaresults.co.in
PART—B 8×5=40
*
Instructions : (1) Answer all questions.
(2) Each question carries eight marks.
(3) Answers should be comprehensive and criterion for
valuation is the content but not the length of the answer.
1
(iii) (41F)16
(iv) (25.25)10
35
(OR)
12. (a)
1
Draw and explain half adder using an exclusive OR and an AND
gate.
35
(OR)
13. (a) Explain the working of D flip-flop with a block diagram and
35
waveforms.
(OR)
* 14. (a) Draw and explain the operation of a 4-bit ring counter.
35
(OR)
15. (a) Draw and explain the operation of 4 to 10 line decoder circuit with
a truth table.
(OR)
www.manaresults.co.in
PART—C 10×1=10
Instructions :
*
(1) Answer the following question.
(2) The question carries ten marks.
(3) Answer should be comprehensive and the criterion for
valuation is the content but not the length of the answer.
1
35
1
35
1
35
1
*
35
*
/7235 3 AA23(048)–PDF
www.manaresults.co.in
*
7 2 3 6 C20-CM/WD–303
7236
BOARD DIPLOMA EXAMINATION, (C-20)
JUNE/JULY— 2022
OPERATING SYSTEMS
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
4. Write the differences between I/O bound process and CPU bound
process.
* 5. List necessary conditions for arising deadlocks.
/7236 * 1 [ Contd...
www.manaresults.co.in
*
PART—B 8×5=40
(OR)
P1 6 0 2
P2 4 4 3
P3 8 2 1
P4 2 3 4
*
(OR)
(b) Compare single level thread with multi-level threading for web
based application.
13. (a) Compare two kernel data structures in which race conditions
are possible. Be sure to include a description of how a race
condition can occur.
/7236 * 2 [ Contd...
www.manaresults.co.in
*
(OR)
14. (a) Given six memory partitions of 300 KB, 600 KB, 350 KB,
200 KB, 750 KB and 125 KB (in order), how would the
first-fit, best-fit, and worst-fit algorithms place processes of size
115 KB, 500 KB, 358 KB, 200 KB and 375 KB (in order). Rank
the algorithms in terms of how efficiently they use memory.
(OR)
* 15. (a) Compare absolute path and relative path with respect to UNIX
operating systems.
(OR)
/7236 * 3 [ Contd...
www.manaresults.co.in
*
PART—C 10×1=10
★★★
/7236 * 4 AA22-PDF
www.manaresults.co.in
*
7 2 3 6 C20-CM/WD–303
7236
BOARD DIPLOMA EXAMINATION, (C-20)
JUNE/JULY— 2022
OPERATING SYSTEMS
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
4. Write the differences between I/O bound process and CPU bound
process.
/7236 * 1 [ Contd...
www.manaresults.co.in
*
PART—B 8×5=40
(OR)
P1 6 0 2
P2 4 4 3
P3 8 2 1
P4 2 3 4
*
(OR)
(b) Compare single level thread with multi-level threading for web
based application.
13. (a) Compare two kernel data structures in which race conditions
are possible. Be sure to include a description of how a race
condition can occur.
/7236 * 2 [ Contd...
www.manaresults.co.in
*
(OR)
14. (a) Given six memory partitions of 300 KB, 600 KB, 350 KB,
200 KB, 750 KB and 125 KB (in order), how would the
first-fit, best-fit, and worst-fit algorithms place processes of size
115 KB, 500 KB, 358 KB, 200 KB and 375 KB (in order). Rank
the algorithms in terms of how efficiently they use memory.
(OR)
* 15. (a) Compare absolute path and relative path with respect to UNIX
operating systems.
(OR)
/7236 * 3 [ Contd...
www.manaresults.co.in
*
PART—C 10×1=10
★★★
/7236 * 4 AA22-PDF
www.manaresults.co.in
7236
* C20-CM-WD-AIM-CCN-303
7236
BOARD DIPLOMA EXAMINATION, (C-20)
NOVEMBER/DECEMBER—2022
DCME – THIRD SEMESTER EXAMINATION
OPERATING SYSTEMS
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
*
/7236 1 [ Contd...
www.manaresults.co.in
PART—B 8×5=40
*
Instructions : (1) Answer all questions.
(2) Each question carries eight marks.
(3) Answers should be comprehensive and criterion for
valuation is the content but not the length of the answer.
(OR)
(OR)
(b) For the processes given in table, draw a Gantt chart illustrating
their execution using priority scheduling (both preemptive and
non-preemptive). A higher priority number has higher priority.
Find out average waiting time of each process.
P1 4 1 3
*
P2 3 2 4
P3 3 0 6
P4 5 3 5
13. (a) Illustrate how a binary semaphore can be used to implement mutual
exclusion among n processes.
*
/7236 2 [ Contd...
www.manaresults.co.in
(OR)
(b) Make use *of resource allocation graph to check the system is in
safe state or not. Draw the reduced resource allocation graph.
Given processes, resource usage and availability as described in
the following table :
Process Current Requests Resource
Allocation Available
A B C A B C A B C
P0 2 0 0 1 1 0
P1 3 1 0 0 0 0
P2 1 3 0 0 0 1 0 0 0
P3 0 1 1 0 1 0
14. (a) Make use of LRU page replacement policies. Find total number of
page faults for the page reference string given below. Assume that
the page frame size is three.
1, 3, 0, 1, 4, 2, 1, 0, 3, 2, 1, 4, 1, 0, 2
(OR)
(OR)
(b) A disk queue with requests for I/O to blocks on cylinders 98, 87,
160, 40, 140, 36, 72, 66, 15. The head is initially at cylinder number
60. The cylinders are numbered from 0 to 199. Starting from the
current head position, calculate the total distance (in number of
cylinders)that the disk arm moves to satisfy all the pending requests
by applying FIFO disk scheduling policy.
*
/7236 3 [ Contd...
www.manaresults.co.in
PART—C 10×1=10
Instructions :
*
(1) Answer the following question.
(2) The question carries ten marks.
(3) Answer should be comprehensive and the criterion for
valuation is the content but not the length of the answer.
*
/7236 4 AA22–PDF
www.manaresults.co.in
7236
* C20-CM-WD-AIM-CCN–303
7236
BOARD DIPLOMA EXAMINATION, (C-20)
MAY—2023
DCME - THIRD SEMESTER EXAMINATION
OPERATING SYSTEMS
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
1. What is spooling?
8. What is thrashing?
/7236 www.manaresults.co.in
1 [ Contd...
* PART—B 8×5=40
(OR)
(OR)
(OR)
(OR)
(OR)
/7236 www.manaresults.co.in
2 [ Contd...
* PART—C 10×1=10
/7236 www.manaresults.co.in
3 AA23–PDF
7236
C20-CM-WD-AIM-CCN–303
7236
BOARD DIPLOMA EXAMINATION, (C-20)
OCTOBER/NOVEMBER—2023
DCME – THIRD SEMESTER EXAMINATION
OPERATING SYSTEMS
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
2. What is Spooling?
8. What is Segmentation?
/7236 1 [ Contd...
www.manaresults.co.in
PART—B 8×5=40
(OR)
(OR)
(b) Consider a set of four processes P1, P2, P3 and P4 arriving all at
time instant 0 and CPU burst times are shown below :
P1 21
P2 3
P3 6
P4 2
Draw Gantt Chart and find average turn around time and average
waiting time using SJF Scheduling Algorithm (Non-Preemptive)
(OR)
(OR)
/7236 2 [ Contd...
www.manaresults.co.in
15. (a) Explain various file access methods.
(OR)
PART—C 10×1=10
16. Consider a system with five processes P0 through P4 and three resources
of type A, B and C. Resource type A has 10 instances, type B has 5
instances and type C has 7 instances. Suppose at time to following
snapshot of the system has been taken :
Find out the Need Martix and check the system is in safe state or not
using Banker’s Algorithm. If yes, then what is the safe sequence?
/7236 3 AA23(048)–PDF
www.manaresults.co.in
7236
C20-CM-WD-AIM-CCN–303
*
7236
BOARD DIPLOMA EXAMINATION, (C-20)
OCTOBER/NOVEMBER—2023
DCME – THIRD SEMESTER EXAMINATION
OPERATING SYSTEMS
Time : 3 hours ] [ Total Marks : 80
PART—A 3×10=30
2. What is Spooling?
8. What is Segmentation?
www.manaresults.co.in
PART—B 8×5=40
*
Instructions : (1) Answer all questions.
(2) Each question carries eight marks.
(3) Answers should be comprehensive and criterion for
valuation is the content but not the length of the answer.
(OR)
(OR)
(b) Consider a set of four processes P1, P2, P3 and P4 arriving all at
time instant 0 and CPU burst times are shown below :
P1 21
P2 3
P3 6
P4 2
Draw Gantt Chart and find average turn around time and average
waiting time using SJF Scheduling Algorithm (Non-Preemptive)
(OR)
www.manaresults.co.in
15. (a) Explain various file access methods.
* (OR)
PART—C 10×1=10
16. Consider a system with five processes P0 through P4 and three resources
of type A, B and C. Resource type A has 10 instances, type B has 5
instances and type C has 7 instances. Suppose at time to following
snapshot of the system has been taken :
Find out the Need Martix and check the system is in safe state or not
* using Banker’s Algorithm. If yes, then what is the safe sequence?
*
/7236 3 AA23(048)–PDF
www.manaresults.co.in
7224
C20-C-CM–301
7224
BOARD DIPLOMA EXAMINATION, (C-20)
OCTOBER/NOVEMBER—2023
DCE–THIRD SEMESTER (COMMON) EXAMINATION
ENGINEERING MATHEMATICS—II
Time : 3 Hours ] [ Total Marks : 80
PART—A 3×10=30
Instructions : (1) Answer all questions.
(2) Each question carries three marks.
7 3
1. Evaluate (x sin x )dx
x
cos(log x )
2. Evaluate x
dx
4. Evaluate x 3e 2x dx
1 1
5. Evaluate 0 dx
1 x2
7. Find the area bounded by the curve y = x2, X-axis between x = 1 and x = 2.
/7224 1 [ Contd...
www.manaresults.co.in
dy 1 y2
9. Solve 0
dx 1 x2
PART—B 8×5=40
1
11. (a) Evaluate 4 5 cos x dx
(OR)
1
(b) Evaluate x 2 4x 13 dx
(OR)
1
(b) Evaluate x tan x dx
13. (a) Evaluate 2 sin x
0 sin x cos x
dx
(OR)
1 3x
(b) Show that 1 log 3 x dx 0
/7224 2 [ Contd...
www.manaresults.co.in
14. (a) Find the R.M.S value of 27 4x 2 from x = 0 to x = 3.
(OR)
(b) Find the area enclosed between the curve y = x2 and the line
2x – y + 3 = 0.
1 1
15. (a) Evaluate 0 dx using trapezoidal rule by taking n = 4
1 x
(OR)
PART—C 10×1=10
/7224 3 AA23(048)–PDF
www.manaresults.co.in