3 Hours / 70 Marks: Seat No
3 Hours / 70 Marks: Seat No
3 Hours / 70 Marks: Seat No
22317
3 Hours / 70 Marks Seat No.
Marks
1. Attempt any FIVE of the following : 10
(a) Define the term algorithm.
(b) List any 4 applications of queue.
(c) Describe following terms w.r.to tree :
(i) leaf node
(ii) level of node
(d) Differentiate between stack and queue. (any two points)
(e) Describe undirected graph with suitable example.
(f) Define the terms : linear data structure and non-linear data structure.
(g) Convert infix expression into prefix expression : (A + B)*(C / G) + F
[1 of 4] P.T.O.
22317 [2 of 4]
3. Attempt any THREE of the following : 12
(b) Convert following expression into postfix form. Give stepwise procedure.
A + B ↑ C * (D / E) – F / G
(c) Find the position of element 29 using binary search method in an array ‘A’
given below. Show each step.
(d) Give adjacency list and adjacency matrix for given graph :
30, 100, 90, 15, 2, 25, 36, 72, 78, 10 show each step of construction of BST.
(e) Describe circular linked list with suitable diagram. Also state advantage of
circular linked list over linear linked list.
22317 [3 of 4]
5. Attempt any TWO of following : 12
(a) Write algorithm for performing push and pop operations on stack.
(b) For given binary tree write in-order, pre-order and post-order traversal.
(c) Write an algorithm to insert an element at the beginning and at end of linked
list.
(a) Describe working of selection sort method. Also sort given input list in
ascending order using selection sort input list – 55, 25, 5, 15, 35.
(c) Describe procedure to delete an element from singly linked list using diagram.
_______________
P.T.O.
22317 [4 of 4]
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
WINTER– 18 EXAMINATION
Subject Name: Data Structure using C Model Answer Subject Code:
22317
Important Instructions to examiners:
1) The answers should be examined by key words and not as word-to-word as given in the model answer
scheme.
2) The model answer and the answer written by candidate may vary but the examiner may try to assess the
understanding level of the candidate.
3) The language errors such as grammatical, spelling errors should not be given more Importance (Not
applicable for subject English and Communication Skills.
4) While assessing figures, examiner may give credit for principal components indicated in the figure. The
figures drawn by candidate and model answer may vary. The examiner may give credit for any equivalent
figure drawn.
5) Credits may be given step wise for numerical problems. In some cases, the assumed constant values may
vary and there may be some difference in the candidate’s answers and model answer.
6) In case of some questions credit may be given by judgement on part of examiner of relevant answer based
on candidate’s understanding.
7) For programming language papers, credit may be given to any other program based on equivalent concept.
Ans Algorithm is a stepwise set of instructions written to perform a specific task. Correct
definition
2M
Ans In computer system to maintain waiting list for single shared resources such as printer, Any four
disk, etc. apllications-
It is used as buffers on MP3 players, iPod playlist, etc. 1/2 M each
Used for CPU scheduling in multiprogramming and time sharing systems.
In real life, Call Center phone systems will use Queues, to hold people calling them in
an order, until a service representative is free.
Handling of interrupts in real-time systems.
Simulation
c Describe following terms w.r.to tree: 2M
A Level 0
B C
Level 1
(i) Leaf node: A node without any child node is called as leaf node.
(ii) Level of node: Position of a node in the hierarchy of a tree is called as level of node.
3.In stack only one pointer is used 3.In Queue two pointers are used
called as stack top called as front and rear
5.Application: 5. Application:
Page 2 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
6. Representation: Using array 6. Representation: Using array
top 13
12
Ans Undirected graph: A graph in which the edges do not have any direction associated with Definition-
them is known as undirected graph. 1M,
example-
In undirected graph, if an edge exists between two nodes A and B then the nodes can 1M
traverse from A to B as well as from B to A. Each edge is bidirectional.
Example:-
A B
D C
f Define the terms: Linear data structure and non-linear data structure. 2M
Ans Linear Data Structure: A data structure in which all data elements are stored in a particular Each term
sequence is known as linear data structure. definition
Example: stack, queue 1M
Non-Linear data structure: A data structure in which all data elements are not stored in any
particular sequence is known as nonlinear data structure.
Example: graph and tree.
(A+B)*(C/G)+F
Page 3 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
(A+B)*(C/G) ) +) F
(A+B)*(C/G G +) GF
(A+B)*(C/ / +)/ GF
(A+B)*( ( + /CGF
(A+B)* * +* /CGF
(A A +*)+ AB/CGF
( ( +* +AB/CGF
*+AB/CGF
+*+AB/CGF
Ans In linear search, search element is compared with each element from the list in a sequence. Relevant
Comparison starts with first element from the list and continues till number is found or description
comparison reaches to the last element of the list. 2M, Any
correct
As each element is checked with search element, the process of searching requires more example-
time. Time complexity of linear search is O (n) where n indicates number of elements in 2M
list.
Linear search on sorted array:-On sorted array search takes place till element is found or
comparison reaches to an element greater than search element.
Input list 10, 20, 30, 40, 50 and Search element 30, Index =0
Iteration 1
10 20 30 40 50
10 ! = 30
Page 4 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
Index = Index + 1
Iteration 2
10 20 30 40 50
20 ! = 30
Index = Index + 1
Iteration 3
10 20 30 40 50
30 = 30
Number found
b Describe the concept of linked list with the terminologies: node, next Pointer, null 4M
pointer and empty list.
Ans Node: Each data element in a linked list is represented as a node. Node contains two parts- Description
one is info (data) and other is next pointer (address). Info part stores data and next pointer of each
stores address of next node. terminology
-1M
Next pointer: It is a pointer that holds address of next node in the list i.e. next pointer
points to next node in the list
Null pointer: It is a pointer that does not hold any memory address i.e. it is pointing to
nothing. It is used to specify end of the list. The last element of list contains NULL pointer
to specify end of list.
Page 5 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
Empty list: Each linked list has a header node. When header node contains NULL value,
then that list is said to be empty list.
c Describe queue full and queue empty operation conditions on linear queue with 4M
suitable diagrams.
Ans Queue full:-A queue is full when its rear pointer points to max -1 position. Max is Description
maximum number of elements in a queue. If rear pointer is not equal to max-1 then a new of queue
element can be added to a queue. If queue is full then new element cannot be added to a full-1M,
queue. diagram-
Example:- 1M,
Description
Consider max=4. First element is stored at 0th position and last element is stored at 3rd of queue
position in queue. In the diagram given below rear pointer is pointing to max-1 (3) position empty-1M,
so queue is full. diagram-
1M
Queue empty: A queue is empty when its front pointer points to -1 position. When front
pointer is -1 then one cannot delete any data from a queue.
Example:-In the diagram given below front pointer points to -1 value i.e. it points no
location inside queue so queue is empty.
Page 6 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
d Differentiate between general tree and binary tree. (any four points) 4M
printf("Resultant array:\n");
A+B↑C*(D/E)-F/G.
( (
A ( A
+ (+ A
B (+ AB
↑ (+↑ AB
C (+↑ ABC
* (+* ABC↑
( (+*( ABC↑
D (+*( ABC↑D
/ (+*(/ ABC↑D
E (+*(/ ABC↑DE
) (+* ABC↑DE/
- (- ABC↑DE/*+
F (- ABC↑DE/*+F
Page 8 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
/ (-/ ABC↑DE/*+F
G (-/ ABC↑DE/*+FG
) EMPTY ABC↑DE/*+FG/-
c Find the position of element 29 using binary search method in an array ‘A’ given 4M
below. Show each step.
A={11,5,21,3,29,17,2,43}
Ans An array which is given A[ ]= {11,5,21,3,29,17,2,43} is not in sorted manner, first we need 1M for
to sort them in order; taking
sorted input
So an array will be A[ ]={2,3,5,11,17,21,29,43} and the value to be searched is VAL = 29. & 1M each
for every
The binary search algorithm will proceed in the following manner. iteration
2 3 5 11 17 21 29 43
Iteration 1:
A[3] is less than VAL, therefore, we now search for the value in the second half of the
array.
Iteration 2:
Now, BEG = MID + 1 = 4, END = 7, MID = (4 + 7)/2 =11/2 = 5; VAL = 29 and A [MID] =
A [5] = 21
A[5] is less than VAL, therefore, we now search for the value in the second half of the
segment.
Iteration 3:
Now, BEG = MID + 1 = 6, END = 7, MID = (6 + 7)/2 = 6 Now, VAL = 29 and A [MID] =
A [6]=29
Page 9 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
So, Element 29 is found at 6th location in given array A[]={2,3,5,11,17,21,29,43}.
OR
Adjacency List
A B
B D,E
C A,E
D B
E D
Page 10 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
A 0 1 0 0 0
B 0 0 0 1 1
C 1 0 0 0 1
D 0 1 0 0 0
E 0 0 0 1 0
Ans Bubble sort is a simple sorting algorithm. This sorting algorithm is comparison-based 2M for
algorithm in which each pair of adjacent elements is compared and the elements are description
swapped if they are not in order. This algorithm is not suitable for large data sets as its & 2M for
example
average and worst case complexity is of Ο (n2) where n is the number of items.
We take an unsorted array for our example as A[]={19, 2, 27, 3, 7, 5, 31}. Bubble sort takes
Ο(n2) time so we're keeping it short and precise.
Pass 1: 2,19,27,3,7,5,31
2,19,27,3,7,5,31
2,19,3,27,7,5,31
2,19,3,7,27,5,31
2,19,3,7,5,27,31
Pass 1 Completed
Pass 2: 2,19,3,7,5,27,31
2,3,19,7,5,27,31
2,3,7,19,5,27,31
Page 11 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
2,3,7,5,19,27,31
2,3,7,5,19,27,31
Pass 2 Completed
Pass 3: 2,3,7,5,19,27,31
2,3,7,5,19,27,31
2,3,5,7,19,27,31
Pass 3 Completed
Pass 4: 2,3,5,7,19,27,31
Pass 4 Completed
Pass 5: 2,3,5,7,19,27,31
Pass 5 Completed
Pass 6: 2,3,5,7,19,27,31
Pass 6 Completed
Ans Stepwise construction of Binary search tree for following elements: 4M for all
30,100,90,15,2,25,36,72,78,10 is as follows: correct
steps
Page 12 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
Ans Function to count number of nodes in a given singly linked list. 4M for
correct
algorithm
Page 13 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
For example, the function should return 5 for linked list 1->3->1->2->1.
Algorithm: Using Iterative Solution
1) Initialize count as 0
b) count++;
4) Return count
Page 14 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
else
{
for(i=front; i<rear; i++)
{
printf("%d",queue[i]);
printf("\n");
}
break;
case 3:
exit(0);
default:
printf("Wrong Choice: please see the options");
}
}
}
getch();
}
e Describe circular linked list with suitable diagram. Also state advantage of circular 4M
linked list over linear linked list.
for singly linked list, next pointer of last item points to the first item
In doubly linked list, prev pointer of first item points to last item as well.
We declare the structure for the circular linked list in the same way as follows:
Struct node
{
Int data;
Struct node *next;
};
Typedef struct node *Node;
Node *start = null;
Node *last = null;
For example:
Page 15 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
3) Circular lists are useful in applications to repeatedly go around the list. For example,
when multiple applications are running on a PC, it is common for the operating system to
put the running applications on a list and then to cycle through them, giving each of them a
slice of time to execute, and then making them wait while the CPU is given to another
application. It is convenient for the operating system to use a circular list so that when it
reaches the end of the list it can cycle around to the front of the list.
4) Circular Doubly Linked Lists are used for implementation of advanced data structures
like Fibonacci Heap.
Otherwise
Go to step 2
Step 2: [Increment stack_top] Increment stack top pointer by one.
stack_top=stack_top +1;
Step 3: [Insert element] stack [stack_top] = item;
Step 4: return to calling function
Pop algorithm: - Max is maximum size of stack.
Step 1: [Check for stack empty/underflow]
Page 16 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
If stack_top is equal to -1 then
Display output as “Stack Underflow” and return to calling function
Otherwise
Go to step 2
Step 2: [delete element] stack [stack_top] = item;
Step 3: [Decrement stack_top] Decrement stack top pointer by one.
stack_top=stack_top -1;
Step 4: return to calling function.
b For given binary tree write in-order, pre-order and post-order traversal. 6M
c Write an algorithm to insert an element at the beginning and end of linked list. 6M
Ans Algorithm to insert an element at the beginning of linked list: 3marks for
each
1. Start algorithm
2. Create the node pointer *temp
Struct node * temp
3. Allocate address to temp using malloc
temp = malloc(sizeof(struct node));
4. Check whether temp is null, if null then
Display “Overflow”
else
Page 17 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
temp-> info=data
temp-> next=start
5. Start=temp
6. stop
a Describe working of selection sort method. Also sort given input list in ascending 6M
order using selection sort input list:- 55, 25, 5, 15, 35.
Ans Working of Selection sort: Selection Sort algorithm is used to arrange a list of elements in 3marks for
a particular order (Ascending or Descending). In selection sort, the first element in the list is description,
selected and it is compared repeatedly with remaining all the elements in the list. If any 3marks for
element is smaller than the selected element (for ascending order), then both are swapped. correct
Then we select the element at second position in the list and it is compared with remaining solution
all elements in the list. If any element is smaller than the selected element, then both are
swapped. This procedure is repeated till the entire list is sorted.
Page 18 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
OR
Page 19 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
Ans Definition: Recursion is the process of calling function by itself. A recursive function body 2marks for
contains function call statement that calls itself repeatedly. definition,
4marks for
Program: correct
program
#include<stdio.h>
#include<conio.h>
int fact(int n);
void main()
Page 20 of 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
{
int n;
clrscr();
printf("\nThe factorial of % is = %d",n,fact(n));
getch();
}
int fact(int n)
{
if(n==1)
return 1;
else
return(n*fact(n-1));
}
c Describe procedure to delete an element from singly linked list using diagram. 6M
Ans In a linear linked list, a node can be deleted from the beginning of list, from in between **Note:
positions and from end of the list. Correct
algorithm
Delete a node from the beginning:- or program
shall be
considered.
Any two
deletions
shall be
considered
3marks
each
Node to be deleted is node1.Create a temporary node as ‘temp’. Set ‘temp’ node with the
address of first node. Store address of node 2 in header pointer ‘start’ and then delete ‘temp’
pointer with free function. Deleting temp pointer deletes the first node from the list.
OR
Step 1: Create temporary node ‘temp’.
Step 2: Assign address of first node to ‘temp’ pointer.
Step 3: Store address of second node (temp->next) in header pointer ‘start’.
Step 4: Free temp.
Node to be deleted is node3.Create a temporary node as ‘temp’ and ‘q’. Set ‘temp’ node
with the address of first node. Traverse the list up to the previous node of node 3 and mark
the next node (node3) as ‘q’. Store address from node ‘q’ into address field of ‘temp’ node.
Then delete ‘q’ pointer with free function. Deleting ‘q’ pointer deletes the node 3 from the
list.
OR
Step 1: Create temporary node ‘temp’, ’q’.
Step 2: Assign address of first node to ‘temp’ pointer.
Step 3: Traverse list up to previous node of node to be deleted.
Step 4: Mark the node to be deleted ‘q’.
Step 5: Store address from node ‘q’ in address field of ‘temp’ node (temp- >next=q->next).
Step 6: Free q.
Node to be deleted is node 3.Create a temporary node as ‘temp’ and ‘q’. Set ‘temp’ node
with the address of first node. Traverse the list up to the second last node and mark the last
node as ‘q’. Store NULL value in address field of ‘temp’ node and then delete ‘q’ pointer
with free function. Deleting q pointer deletes the last node from the list.
OR
Step 1: Create temporary node ‘temp’,’q’.
Step 2: Assign address of first node to ‘temp’ pointer.
Step 3: Traverse list upto second last node.
Step 4: Mark last node’s address in node ‘q’.
Step 5: store NULL value in address field of second last node (temp->next).
Step 6: Free q
Page 22 of 22
21819
22317
3 Hours / 70 Marks Seat No.
Marks
(c) Define :
(d) Show the memory representation of stack using array with the help of a
diagram.
(f) Differentiate between linear and non-linear data structures on any two
parameters.
(g) Convert the following infix expression to its prefix form using stack
A+B–CD/E+F
[1 of 4] P.T.O.
22317 [2 of 4]
2. Attempt any THREE of the following : 12
(c) Sort the following numbers in ascending order using quick sort. Given
numbers 50, 2, 6, 22, 3, 39, 49, 25, 18, 5.
(iii) Path of 31
P.T.O.
22317 [4 of 4]
6. Attempt any TWO of the following : 12
(a) Sort the following numbers in ascending order using Bubble sort. Given
numbers : 29, 35, 3, 8, 11, 15, 56, 12, 1, 4, 85, 5 & write the output after each
interaction.
57 + 62 –
(c) Create a singly linked list using data fields 90, 25, 46, 39, 56. Search a node
40 from the SLL and show procedure step-by-step with the help of diagram
from start to end.
_______________
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
Page 1 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
(c) Define: 2M
(i) Binary tree (ii) Binary search tree
Ans. (i) Binary tree: It is a nonlinear data structure in which each non-leaf Each
node can have maximum two child nodes as left child ad right child. correct
definitio
(ii)Binary search tree: It is a nonlinear data structure in which left n 1M
child of root node is less than root and right child of root node is
greater than root.
(d) Show the memory representation of stack using array with the 2M
help of a diagram.
Ans. Consider stack contains five integer elements represented with an
array A in which each element occupy 2 bytes memory. Array starts
with base address of 2000.
Correct
represen
tation
2M
Page 2 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
(ii) Undirected graph: A graph in which the edges do not have any
direction associated with them is known as undirected graph.
Example:-
(g) Convert the following infix expression to its prefix form using 2M
stack A + B – C * D/E + F
Ans.
Page 3 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
Correct
prefix
expressi
on2M
Page 4 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
Example:
Consider Input list 0, 1, 2, 9, 10, 11, 15, 20, 46, 72
Search element:11
→ Iteration 1
Lower = 0 Upper = 9mid = (lower + upper) / 2= (0 + 9/2)= 4.5
Example
2M
Page 5 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
{
int info;
struct node *next;
}*start=NULL;
void main()
{
int m;
clrscr();
printf("enter data value\n");
scanf("%d",&m);
create_list(m);
printf("enter data value\n");
scanf("%d",&m);
addatbeg(m);
display();
getch();
}
void display()
{
Page 6 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
Draw
1M
Page 7 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
Example:-
Each
example
1M
Page 8 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
Page 9 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
(c) Sort the following numbers in ascending order using quick sort. 4M
Given numbers 50, 2, 6, 22, 3, 39, 49, 25, 18, 5.
Ans. Given array
Array
50 2 6 22 3 39 49 25 18 5
elements Correct
indexes 0 1 2 3 4 5 6 7 8 9 solve
example
Set l=0 , h=9 ,pivot= a[h]=5 4M
Initialize index of smaller element, i= l-1 =-1
Traverse elements from j=l to j=h-1
1. j=0 i=-1 since a[j] > pivot do nothing array will remain same
Array
50 2 6 22 3 39 49 25 18 5
elements
indexes 0 1 2 3 4 5 6 7 8 9
Array
2 50 6 22 3 39 49 25 18 5
elements
indexes 0 1 2 3 4 5 6 7 8 9
Page 10 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
3. j=2 ,i=0 since a[j] > pivot do nothing array will remain same
Array
2 50 6 22 3 39 49 25 18 5
elements
indexes 0 1 2 3 4 5 6 7 8 9
4. j=3 ,i=0 since a[j] > pivot do nothing array will remain same
Array
2 50 6 22 3 39 49 25 18 5
elements
indexes 0 1 2 3 4 5 6 7 8 9
6. j=5 , i=1 since a[j] > pivot do nothing array will remain same
Array
2 3 6 22 50 39 49 25 18 5
elements
indexes 0 1 2 3 4 5 6 7 8 9
7. j=6, i=1 since a[j] > pivot do nothing array will remain same
Array
2 3 6 22 50 39 49 25 18 5
elements
indexes 0 1 2 3 4 5 6 7 8 9
8. j=7 ,i-1 since a[j] > pivot do nothing array will remain same
Array
2 3 6 22 50 39 49 25 18 5
elements
indexes 0 1 2 3 4 5 6 7 8 9
Page 11 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
9. j=8 ,i-1 since a[j] > pivot do nothing array will remain same
Array
2 3 6 22 50 39 49 25 18 5
elements
indexes 0 1 2 3 4 5 6 7 8 9
Pass2
A[]={2,3} pivot=3
Array
2 3 5
elements
indexes 0 1 2
a[]={22,50,39,49,25,18,6}pivot=6
Array
6 50 39 49 25 18 22
elements
indexes 3 4 5 6 7 8 9
a[]={50,39,49,25,18,22}pivot=22
Array
18 22 49 25 50 39
elements
indexes 4 5 6 7 8 9
Page 12 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
a[]={18}pivot=18
Array
18 22
elements
indexes 4 5
a[]={49,25,50,39},pivot=39
Array
25 39 50 49
elements
indexes 6 7 8 9
a[]={25}, pivot=25
Array
25 39
elements
indexes 6 7
a[]={50,49},pivot=49
Array
49 50
elements
indexes 8 9
Page 13 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
(iii) Path of 31
(iv) Successor of node 67
Ans.
(i) Indegree of node 21:
node 1, 7, 19
Page 14 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
Each
correct
tree
structur
e 2M
(c) Create a singly linked list using data fields 15, 20, 22, 58, 60. 4M
Search a node 22 from the SLL and show procedure step-by-step
with the help of diagram from start to end.
Ans.
Page 15 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
Create
linked
list 1M
Searchi
ng node
procedu
re with
diagram
3M
Page 16 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
Page 17 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
said operations.
Ans.
Each
correct
push/po
p
operatio
n
diagram
maticall
y 1M
(b) Traverse the following tree by the in-order, pre-order and post- 6M
order methods:
Page 18 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
Step 7: stop
Unsorted Data: 29 35 3 8 11 15 56 12 1 4 85 5
Page 19 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
After pass 1 : 29 35 3 8 11 15 56 12 1 4 85 5
After pass 1 : 29 3 35 8 11 15 56 12 1 4 85 5
After pass 1 : 29 3 8 35 11 15 56 12 1 4 85 5
After pass 1 : 29 3 8 11 35 15 56 12 1 4 85 5
Correct
After pass 1 : 29 3 8 11 15 35 56 12 1 4 85 5
After pass 1 : 29 3 8 11 15 35 56 12 1 4 85 5
passes
After pass 1 : 29 3 8 11 15 35 12 56 1 4 85 5 6M
After pass 1 : 29 3 8 11 15 35 12 1 56 4 85 5 (For 4
After pass 1 : 29 3 8 11 15 35 12 1 4 56 85 5 passes
After pass 1 : 29 3 8 11 15 35 12 1 4 56 85 5 3M shall
After pass 1 : 29 3 8 11 15 35 12 1 4 56 5 85 be
awarded
Pass 2 )
After pass 2 : 3 29 8 11 15 35 12 1 4 56 5 85
After pass 2 : 3 8 29 11 15 35 12 1 4 56 5 85
After pass 2 : 3 8 11 29 15 35 12 1 4 56 5 85
After pass 2 : 3 8 11 15 29 35 12 1 4 56 5 85
After pass 2 : 3 8 11 15 29 35 12 1 4 56 5 85
After pass 2 : 3 8 11 15 29 12 35 1 4 56 5 85
After pass 2 : 3 8 11 15 29 12 1 35 4 56 5 85
After pass 2 : 3 8 11 15 29 12 1 4 35 56 5 85
After pass 2 : 3 8 11 15 29 12 1 4 35 56 5 85
After pass 2 : 3 8 11 15 29 12 1 4 35 5 56 85
Pass 3
After pass 3 : 3 8 11 15 29 12 1 4 35 5 56 85
After pass 3 : 3 8 11 15 29 12 1 4 35 5 56 85
After pass 3 : 3 8 11 15 29 12 1 4 35 5 56 85
After pass 3 : 3 8 11 15 29 12 1 4 35 5 56 85
After pass 3 : 3 8 11 15 12 29 1 4 35 5 56 85
After pass 3 : 3 8 11 15 12 1 29 4 35 5 56 85
After pass 3 : 3 8 11 15 12 1 4 29 35 5 56 85
After pass 3 : 3 8 11 15 12 1 4 29 35 5 56 85
After pass 3 : 3 8 11 15 12 1 4 29 5 35 56 85
Pass 4
After pass 4 : 3 8 11 15 12 1 4 29 5 35 56 85
After pass 4 : 3 8 11 15 12 1 4 29 5 35 56 85
After pass 4 : 3 8 11 15 12 1 4 29 5 35 56 85
After pass 4 : 3 8 11 12 15 1 4 29 5 35 56 85
Page 20 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
After pass 4 : 3 8 11 12 1 15 4 29 5 35 56 85
After pass 4 : 3 8 11 12 1 4 15 29 5 35 56 85
After pass 4 : 3 8 11 12 1 4 15 29 5 35 56 85
After pass 4 : 3 8 11 12 1 4 15 5 29 35 56 85
Pass 5
After pass 5 : 3 8 11 12 1 4 15 5 29 35 56 85
After pass 5 : 3 8 11 12 1 4 15 5 29 35 56 85
After pass 5 : 3 8 11 12 1 4 15 5 29 35 56 85
After pass 5 : 3 8 11 1 12 4 15 5 29 35 56 85
After pass 5 : 3 8 11 1 4 12 15 5 29 35 56 85
After pass 5 : 3 8 11 1 4 12 15 5 29 35 56 85
After pass 5 : 3 8 11 1 4 12 5 15 29 35 56 85
Pass 6
After pass 6 : 3 8 11 1 4 12 5 15 29 35 56 85
After pass 6 : 3 8 11 1 4 12 5 15 29 35 56 85
After pass 6 : 3 8 1 11 4 12 5 15 29 35 56 85
After pass 6 : 3 8 1 4 11 12 5 15 29 35 56 85
After pass 6 : 3 8 1 4 11 12 5 15 29 35 56 85
After pass 6 : 3 8 1 4 11 5 12 15 29 35 56 85
Pass 7
After pass 7 : 3 8 1 4 11 5 12 15 29 35 56 85
After pass 7 : 3 1 8 4 11 5 12 15 29 35 56 85
After pass 7 : 3 1 4 8 11 5 12 15 29 35 56 85
After pass 7 : 3 1 4 8 11 5 12 15 29 35 56 85
After pass 7 : 3 1 4 8 5 11 12 15 29 35 56 85
Pass 8
After pass 12 : 1 3 4 8 5 11 12 15 29 35 56 85
Page 21 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
(c) Create a singly linked list using data fields 90, 25, 46, 39, 56. 6M
Search a node 40 from the SLL and show procedure step-by-step
with the help of diagram from start to end.
Ans. To Search a data field in singly linked list, need to start searching the
data field from first node of singly linked list.
ORIGINAL LIST:
List
creation
1M
SEARCHING A NODE
STEP 1:
Compare 40 with 90
40!=90,
Page 22 / 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2005 Certified)
Compari
son with
each
node
diagram
maticall
y 1M
Page 23 / 23
11920
22317
3 Hours / 70 Marks Seat No.
Marks
(a) Write any four operations that can be performed on data structure.
(b) Define the terms ‘overflow’ and ‘underflow’ with respect to stack.
(c) Define the following terms w.r.t. tree : (i) In-degree, (2) Out-degree
P : 4, 2, ^, 3, *, 3, -, 8, 4, /, +
(g) Define queue. State any two applications where queue is used.
(a) Sort the given numbers in ascending order using Radix sort :
[1 of 4] P.T.O.
22317 [2 of 4]
(b) Write an algorithm to insert a new node at the beginning and end of the singly
linked list.
(c) Explain the concept of circular Queue along with its need.
(d) Draw a binary search tree for the given numbers :
50, 33, 44, 22, 77, 35, 60, 40.
P.T.O.
22317 [4 of 4]
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
Winter – 19 EXAMINATION
Subject Name: Data Structure Using ‘C’ Model Answer Subject Code: 22317
Important Instructions to examiners:
1) The answers should be examined by key words and not as word-to-word as given
in the model answer scheme.
2) The model answer and the answer written by candidate may vary but the examiner
may try to assess the understanding level of the candidate.
3) The language errors such as grammatical, spelling errors should not be given more
Importance (Not applicable for subject English and Communication Skills.
4) While assessing figures, examiner may give credit for principal components
indicated in the figure. The figures drawn by candidate and model answer may
vary. The examiner may give credit for any equivalent figure drawn.
5) Credits may be given step wise for numerical problems. In some cases, the
assumed constant values may vary and there may be some difference in the
candidate’s answers and model answer.
6) In case of some questions credit may be given by judgement on part of examiner
of relevant answer based on candidate’s understanding.
7) For programming language papers, credit may be given to any other program
based on equivalent concept.
1|28
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
c Define the following term w.r.t. tree: (i) In-degree (ii) out-degree. 2M
Ans In -degree: Number of edges coming towards node is in-degree of node. 1 M for each
correct
For e.g. : In degree of node B is 1 definition
Out -degree: Number of edges going out from node is out -degree of node.
For e.g. Out Degree of is node D is 2
2|28
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
2 2 4, 2
3 ^ 16
4 3 16, 3
5 * 48
6 3 48,3
7 - 45
8 8 45,8
9 4 45,8,4
10 / 45,2
11 + 47
3|28
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
Undirected Graph :
An undirected graph G is a graph in which each edge e is not assigned a
direction.
A B
D C
Ans 2 M for
diagram
4|28
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
APPLICATIONS OF QUEUES
1. Round Robin Technique for processor scheduling is implemented using
queues.
2. All types of customer service (like railway ticket reservation) center
software’s are designed using queues to store customer's information.
3. Printer server routines are designed using queues. A number of users
share a printer using printer server (a dedicated computer to which a printer
is connected), the printer server then spools all the jobs from all the users,
to the server’s hard disk in a queue. From here jobs are printed one-by-one
according to their number in the queue.
0641,3851,0014,0074,0348
Pass 2:
0 1 2 3 4 5 6 7 8 9
0641 0641
3851
3851
0014 0014
0074 0074
0348 0348
5|28
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
0014,0641,0348,3851,0074
Pass 3:
0 1 2 3 4 5 6 7 8 9
0014 0014
0641 0641
0348 0348
3851 3851
0074 0074
0014,0074,0348,0641,3851
Pass 4:
0 1 2 3 4 5 6 7 8 9
0014 0014
0074 0074
0348 0348
0641 0641
3851 3851
6|28
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
End if
2. set Ptr->num = item
3. set Ptr->next=start
4. set start=Ptr
7|28
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
elements are deleted from the queue, new elements cannot be added
in their place in the queue, i.e. the position cannot be reused. After
rear reaches the last position, i.e. MAX-1 in order to reuse the vacant
positions, we can bring rear back to the 0th position, if it is empty,
and continue incrementing rear in same manner as earlier.
Thus rear will have to be incremented circularly. For deletion, front
will also have to be incremented circularly.
Rear can be incremented circularly by the following code. If ((rear
== MAX-1) and (front !=0) Rear =0; Else Rear= rear +1; Example:
Assuming that the queue contains three elements.
8|28
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
9|28
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
10 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
Algorithm A: - a=a+1
Algorithm B: - for x = 1 to n step 1
a=a+1
Loop
Algorithm C:- for x=1 to n step 1
for y=1 to n step 1
a=a+1
Loop
Frequency count for algorithm A is 1 as a=a+1 statement will execute only
once. Frequency count for algorithm B is n as a=a+1 is key statement
executes n time as the loop runs n times.
Frequency count for algorithm C is n as a=a+1 is key statement executes n2
time as the inner loop runs n times, each time the outer loop runs and the
outer loop also runs for n times.
Space complexity:- Space complexity of a program/algorithm is the amount
of memory that it needs to run to completion. The space needed by the
program is the sum of the following components:-
Fixed space requirements: - It includes space for instructions, for simple
variables, fixed size structured variables and constants.
Variable time requirements: - It consists of space needed by structured
variables whose size depends on particular instance of variables. Example: -
additional space required when function uses recursion.
b Convert the following infix expression to postfix expression using stack 4M
and show the details of stack in each step.((A+B)*D)^(E-F)
Ans Correct
answer-4M
infix expression:
(((A+B)*D)^(E-F))
11 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
( (( Empty
( ((( Empty
A ((( A
+ (((+ A
B (((+ AB
) (( AB+
* ((* AB+
D ((* AB+D
) ( AB+D*
^ (^ AB+D*
( (^( AB+D*
E (^( AB+D*E
- (^(- AB+D*E
F (^(- AB+D*EF
) (^ AB+D*EF-
) EMPTY AB+D*EF-^
STACK
12 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
for(i=0;i<n-1;i++)
{
if (key == a[i])
{
c=1;
printf (“%d is found at location %d\n”, key, i+1);
break;
}
}
if (c==0)
printf (“%d not present in the list\n”,key);
getch();
}
d Draw an expression tree for the following expression: 4M
(a-2b+5e) 2 * (4d=6e) 5.
Ans Correct
Expression
tree-4M
13 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
11 5 21 3 29 17 2 45
Sorted Array for input:
2 3 5 11 17 21 29 45
Key element to be searched=21
Step1
0 1 2 3 4 5 6 7
2 3 5 11 17 21 29 45
mid=(l+u)/2 = 7/2 = 3
14 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
l=4 and u =7
mid= 11/2 = 5
15 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
Start
21 NULL
Start traversing linked list from start till last node of linked list and then add a new node
Start
21 25 NULL
Start
21 25 96 NULL
Start
21 25 96 58 NULL
Start
21 25 96 58 74 NULL
d Show the effect of PUSH and POP operation on the stack of size 10. 4M
PUSH(10)
PUSH(20)
16 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
POP
PUSH(30)
Ans Initial Stack empty Each correct
step-1M
stack[9]
stack[8]
stack[7]
stack[6]
stack[5]
stack[4]
stack[3]
stack[2]
stack[1]
stack[0] top= -1
Step 1:
PUSH(0)
top=top+1 stack[0]=10
stack[9]
stack[8]
stack[7]
stack[6]
stack[5]
stack[4]
stack[3]
stack[2]
stack[1]
10 stack[0] top=0
Step 2:
PUSH(0)
top=top+1 stack[1]=20
stack[9]
stack[8]
stack[7]
stack[6]
stack[5]
stack[4]
stack[3]
stack[2]
20 stack[1] top=1
10 stack[0]
Step 3:
POP
17 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
top=top-1 20 is deleted
stack[9]
stack[8]
stack[7]
stack[6]
stack[5]
stack[4]
stack[3]
stack[2]
stack[1]
10 stack[0] top=0
Step 4:
PUSH(0)
top=top+1 stack[1]=30
stack[9]
stack[8]
stack[7]
stack[6]
stack[5]
stack[4]
stack[3]
stack[2]
30 stack[1] top=1
10 stack[0]
18 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
19 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
20 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
break;
}
rear=rear+1;
a[rear]=no;
if(front==-1)
front=0;
break;
case 2:
if(front==-1)
{
printf ("\n QUEUE IS EMPTY.");
break;
}
no=a[front];
printf("\n DELETED ELEMENT IS:- %d",no);
if(front==rear)
front=rear=-1;
else
front=front+1;
break;
case 3:
exit(0);
}
printf("\n\n DO YOU WANT TO CONTINUE:(1 FOR YES/2 FOR NO):-");
scanf("%d",&ch);
}while(ch==1);
getch();
}
b Consider the graph given in following figure and answer given 6M
questions.
21 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
Node Adjacent
nodes
1 2,3
2 5
3 2,4
4 NIL
5 3
22 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
Representation:
23 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
24 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
Pass 3
Pass 4
Pass 5
Pass 6
25 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
In the above diagram, first column shows result of push operation after each
26 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
recursive call execution. Next columns shows result of pop operation for
calculating factorial.
c Show with suitable diagrams how to delete a node from singly linked list 6M
at the beginning, in between and at the end of the list.
Ans In a linear linked list, a node can be deleted from the beginning of list, from Diagram for
in between positions and from end of the list. beginning-
2M, end-2M,
Delete a node from the beginning:- inbetween-2M
27 | 2 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
Node to be deleted is node 3.Create a temporary node as ‘temp’ and ‘q’. Set
‘temp’ node with the address of first node. Traverse the list up to the second
last node and mark the last node as ‘q’. Store NULL value in address field of
‘temp’ node and then delete ‘q’ pointer with free function. Deleting q pointer
deletes the last node from the list.
28 | 2 8
21222
22317
3 Hours / 70 Marks Seat No.
15 minutes extra for each hour
Marks
1. Attempt any FIVE of the following : 10
(a) Define linear data structure and non-linear data structure.
(b) Enlist operations on stack.
(c) Define : (i) General tree (ii) Binary tree
(d) Draw the diagram of circular queue with front and rear pointers.
(e) Describe given two types of graphs : Directed and Undirected graph.
(f) Define Abstract Data Type.
(g) State any four applications of queue.
[1 of 4] P.T.O.
22317 [2 of 4]
3. Attempt any THREE of the following : 12
(c) Find the position of element 30 using Binary search method in array
(c) Write an algorithm to insert a new node at the beginning of a Singly linked
list. Give example.
(d) Write a ‘C’ program to calculate the factorial of number using recursion.
(e) Describe circular linked list with suitable diagram. Also state advantage of
circular linked list over linear linked list.
22317 [3 of 4]
5. Attempt any TWO of the following : 12
(a) Write a program to implement a stack with push, pop and display operations.
(b) Draw tree for given expression and find pre-order and post-order traversal.
(a) Describe the working of Selection Sort Method. Also sort given input list in
ascending order using selection sort.
(b) Convert the following Infix expression to its prefix form using stack. Show
the details of stack at each step of conversion.
Expression : P * Q R – S / T + (U/V)
(c) Create a Singly linked list using data fields 70, 50, 30, 40, 90. Search a node
40 from the singly linked list & show procedure step-by-step with the help of
diagram from start to end.
_______________
P.T.O.
22317 [4 of 4]