PLEASE MATCH YOUR ASSIGNMENT QUESTIONS ACCORDING TO YOUR SESSION
IGNOU BCSL-33 (July 2024 – January 2025) Assignment Questions
Q1. Write a program to take input of a Matrix using array and display its transpose.
Q2. Write a program in `C’ Language to accept 10 strings as input and print them inlexicographic order
Q3. Write a program to implement singly linked list for user inputs and perform the following operations on it:
(i) Reverse the linked list and display it.
(ii) Sort the nodes in ascending order and display them.
Q4. Write a program using linked list that accepts two polynomials as input and displays the resultant polynomial after performing the multiplication of the input polynomials.
Q5. Write a program to implement doubly linked list of integers as user inputs and perform the following operations:
(i) Calculate and display the sum of all the even integers of the doubly linked list
(ii) Insert new elements at the beginning, in the middle and at the end of the linked list
Q6. Write a program in C to sort user input data using bubble sort method. Also, print the number of swaps and comparison operations performed for sorting the given data set.
Q7. Write a program to convert an infix expression to a prefix expression. Use appropriate data structure.
Q8. Write a program in ‘C’ language for the creation of a Red Black tree. Also,implement insertion and deletion operations.
IGNOU BCSL-33 (July 2023 – January 2024) Assignment Questions
Q1. Write a program to multiply two matrices using array.
Q2. Write a program to implement singly linked list for user inputs. Also, perform insertion and delete operation on it.
Q3. Write a program using linked list that accepts two polynomials as input and displays the resultant polynomial after performing the addition of the input polynomials.
Q4. Write a program to implement doubly linked list for user inputs. Also, perform insertion and deletion operations on it.
Q5. Write a program in C to sort user input data using quick sort method. Also, print the number of swaps and comparison operations performed for sorting the given data set.
Q6. Write a program in C to search an input data from a set of data, stored in an array using binary search algorithm. Also, print the number of comparison operations performed for searching the given data.
Q7. Write a program to implement two stacks with the help of single array.
Q8. Write a program to implement a DEQUE (Double Ended Queue) using a doubly linked list.
Q9. Write a program to convert an infix expression to a postfix expression. Use appropriate data structure.
Q10. Write a program to implement binary search tree (BST). Also, write functions to traverse the BST in In-order, Pre-order and Post-order forms.