Practical Slips DS, DBMS-May2025
Practical Slips DS, DBMS-May2025
1. Write a ‘C’ program to accept n student names from user and store it in an array. Write a
function to search given student name into the array using Linear search method. (15)
2. Write a menu driven program using ‘C’ for implementation of Singly linked list. Menu
includes – (25)
- Create
- Display
- Insert node
4. Viva (10)
5. Journal (10)
1
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program for implementing Linear Search method using function. (15)
2. Write a ‘C’ program to sort array elements in ascending order using Selection sort
method. (25)
4. Viva (10)
5. Journal (10)
2
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program to reverse a String using static implementation of Stack. (15)
2. Write a ‘C’ program to sort array elements in ascending order using Bubble sort method.
(25)
3. Consider the following Entities and Relationships (40)
4. Viva (10)
5. Journal (10)
3
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write menu driven program using ‘C’ for Static implementation of Stack. The menu
includes following operations: (15)
- push
- pop
- display
- exit
2. Write a C program that create a 1-D table of integers whose size will be specified at run time.
(Dynamic Memory Allocation) (25)
4. Viva (10)
5. Journal (10)
4
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program that create a 2-D table of integers whose size will be specified at
run time. (Dynamic Memory Allocation) (15)
2. Write a menu driven program using ‘C’ for Static implementation of Queue for
integers. The menu includes (25)
- Insert
- Delete
- Display
- Exit
4. Viva (10)
5. Journal (10)
5
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a menu driven program using ‘C’ for implementation of Singly linked list. Menu
includes – (15)
- Create
- Display
- Insert Node at particular position
2. Write a ‘C’ program to sort the element using Quick sort (recursive) method. (25)
4. Viva (10)
5. Journal (10)
6
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write menu driven program using ‘C’ for Singly linked list. The menu includes (15)
- Create
- Display
- Search particular node in list and display its position.
2. Write a ‘C’ program to sort the array elements in ascending order using Merge sort method.
(25)
4. Viva (10)
5. Journal (10)
7
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program to create a singly linked list and count total number of nodes in it
and display the result. (15)
2. Write menu driven program using ‘C’ for Dynamic implementation of Stack. The menu
includes following operations: (25)
- push
- pop
- display
- exit
4. Viva (10)
5. Journal (10)
8
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program to sort elements of a singly linked list in ascending order and
display the sorted List. (15)
2. Write a menu driven program using ‘C’ for singly linked list- (25)
- To create linked list.
- To display linked list
- To insert node at last position of linked list.
- To delete node from specific position of linked list.
4. Viva (10)
5. Journal (10)
9
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program to swap mth and nth element of singly linked list. (15)
2. Write a ‘C’ program to create two singly linked lists and perform the intersection
operations on two lists and display the resultant list. (25)
Constraints :
Primary Key,
4. Viva (10)
5. Journal (10)
10
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program to create two singly linked lists and concatenate one list at the end of
another list. (15)
2. Write a ‘C’ program to create doubly link list and display nodes having even value. (25)
4. Viva (10)
5. Journal (10)
11
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program to create a singly Link list and display its alternative nodes. (15)
2. Write a ‘C’ program to search given element into the list using Recursive Binary search
method. (25)
4. Viva (10)
5. Journal (10)
12
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program to sort array elements using Bubble sort method. (15)
2. Write a ‘C’ program to create Circular Singly Link list and display it. (25)
4. Viva (10)
5. Journal (10)
13
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program to create binary search tree and display its leaf nodes. (15)
2. Write a ‘C’ program to read the adjacency matrix of directed graph and convert it into
adjacency list. (25)
4. Viva (10)
5. Journal (10)
14
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program to read an adjacency matrix of a directed graph and traverse it using DFS
(15)
2. Write a ‘C’ program to accept two polynomials and add these two polynomials using function.
Display the result (Use array). (25)
4. Viva (10)
5. Journal (10)
15
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program to search given elements into the list using Non-Recursive Binary
Search Method. (15)
2. Write a ‘C’ program to create a Binary tree, traverse it using recursive operations like inorder,
preorder and postorder and display the result of each one separately. (25)
4. Viva (10)
5. Journal (10)
16
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a ‘C’ program to count all non-zero elements, odd numbers and even numbers in
the singly linked list. (15)
2. Write a ‘C’ program to count indegree and outdegree of each node in graph. (25)
4. Viva (10)
5. Journal (10)
17
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write a menu driven program using ‘C’ for Dynamic implementation of Queue for
integers. The menu includes (15)
- Insert
- Delete
- Display
- Exit
2. Write menu driven program using ‘C’ for Binary Search Tree. The menu includes
- Create a BST (25)
- Insert element in a BST
- Display
4. Viva (10)
5. Journal (10)
18
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write menu driven program using ‘C’ for Binary Search Tree. The menu includes - (15)
- Create a BST
- Traverse it by using Inorder traversing technique
- Search a given value in BST
2. Write a ‘C’ program to evaluate a given polynomial using function. (Use array). (25)
4. Viva (10)
5. Journal (10)
19
Deccan Education Society’s
Brihan Maharashtra College of Commerce (AUTONOMOUS)
FYBBA(CA) ( Sem-II) Practical Examination Apr 2025
Lab Course (Data Structures in C, DBMS)
[Time : 3 Hrs] [Marks : 100]
__________________________________________________________________________________
1. Write menu driven program using ‘C’ for Binary Search Tree. The menu includes (15)
- Create a BST
- Traverse it by using Preorder traversing technique
- Search a given value in BST
2. Write a ‘C’ program to read an adjacency matrix of a directed graph and traverse using BFS.
(25)
Constraints :
Primary Key,
4. Viva (10)
5. Journal (10)
20