Data Base Management System Lab
A database management system (DBMS) is computer application software that provides a way to manage data. The requirement of modern days is to have an automated system that manages, modifies and updates data accurately. This is achieved by a DBMS in robust, correct and non redundant way.
Subject : AIML (Part-1)
List of Programs
1) Write a python program to create and import different datasets and display them.
2) Write a python program to compute mean, median, mode, standard deviation, and variance.
3) Write a python program to reshape the data, filter the data merge the data, and handle the missing values in datasets
4) Write a python program to find the correlation coefficient .
5) Write a python program to split the Training and Testing dataset using pandas.
6) Write a python program to implement simple linear regression and plot the graph.
7)Write a python program to implement logistic regression for the iris dataset using sklearn .
Subject: AIML (Part-2)
List of Programs
1)Write a python program to implement K-Nearest Neighbour (KNN) algorithm.
2)Write a python program to implement the K-Means clustering algorithm.
3)Write a python program to implement the Decision Tree algorithm.
4)Write a python program to implement the naïve-bayes classifier algorithm.
5)Write a python program to implement Support Vector Machine (SVM).
6)Write a python program to implement the various weight update methods of Artificial Neural Networks using CIFAR10/MNIST Dataset.
Subject : DBMS
OBJECTIVES: The course should enable the students to:
I. Implement the basic knowledge of SQL queries and relational algebra.
II. Construct database models for different database applications.
III. Apply normalization techniques for refining databases.
IV. Practice various triggers, procedures, and cursors using PL/SQL.
Course Outcomes:
Students get practical knowledge on designing and creating relational database systems. Understand various advanced query execution such as relational constraints, joins, set operations, aggregate functions, triggers views and embedded SQL.
Subject: Algorithm
List of Programs
1)Write a program in C to implement Individual Array Elements to a function in 1-D Array and 2-D Array.
2)Write a C Program to traverse an array using pointer.
3)Write a C Program to perform Linear Search and Binary Search with their time complexities.
4)Write a C Program to implement Stack Operations using Array.
5)Write a C Program to reverse a string using Stack operations.
6)Write a C Program to implement Queue using Array.
7)Write a menu driven C Program to implement Circular Queue.
8)Write a C Program to create a Single Linked List and display the contents of the linked list.
9)Write a C Program to insert a node in a Single Linked List having three cases:
1.Insert at the beginning
2.Insert in an empty List
3.Insert at the end
10)Write a C Program to insert a node
1.after a given node
2.before a given node
3.at a given position
11)Write a C Program to perform delete operation in a Single Linked List
1.Deletion of first node
2.Deletion of the only node
3.Deletion in between the list
4.Deletion at the end
12)Write a C Program to implement a Doubly Linked List with Insert Operation at the beginning of the list, in an empty list, at the end of the list and in between the nodes.
13)Write a C program to perform delete operations in doubly linked list and write their time complexities.
14)Write a C Program to perform insert operation in a circular linked list with their time complexities.
15)Write a C Program to perform delete operation in a circular linked list.
16)Write a C program to traverse a binary tree in Pre order , In order and Post order in Recursive and iterative way.
17)Write an algorithm and C Program to implement search operation in B-Tree.
18)Write a C Program with algorithm to delete a key from a B-Tree.
19)Write a C Program to implement Insertion Sort and write its time complexity.
20)Write a C Program to implement Bubble Sort and write its time complexity.
21)Write a C Program and the algorithm of Quick Sort with its time complexities.
22)Write a C Program to implement Merge Sort and write its time complexities.
23)Write a C Program to implement Heap Sort with its algorithm and time complexities.
24)Write a C program to implement Selection Sort.
25)Write a C Program to traverse a directed graph and finding shortest distance and shortest path of any vertex from the starting vertex.
Subject: PPL
Reference Books :
1. The C++ Programming Language, 3rd Edition, B. Stroutstrup, Pearson Education.
List of Programs
Write a C++ Program to display Names, Roll No., and grades of 3 students who have appeared in the examination. Declare the class of name, Roll No. and grade. Create an array of class objects. Read and display the contents of the array.
Write a C++ program to declare Struct. Initialize and display contents of member variables.
Write a C++ program to declare a class. Declare pointer to class. Initialize and display the contents of the class member.
Given that an EMPLOYEE class contains following members: data members: Employee number, Employee name, Basic, DA, IT, Net Salary and print data members.
Write a C++ program to read the data of N employee and compute Net salary of each employee (DA=52% of Basic and Income Tax (IT) =30% of the gross salary).
Write a C++ to illustrate the concepts of console I/O operations.
Write a C++ program to use scope resolution operator. Display the various values of the same variables declared at different scope levels.
Write a C++ program to allocate memory using new operator.
Write a C++ program to create multilevel inheritance. (Hint: Classes A1, A2, A3)
Write a C++ program to create an array of pointers. Invoke functions using array objects.
Write a C++ program to use pointer for both base and derived classes and call the member function. Use Virtual keyword.
Write a C++ Program to display Names, Roll No., and grades of 3 students who have appeared in the examination. Declare the class of name, Roll No. and grade. Create an array of class objects. Read and display the contents of the array.
Write a C++ program to declare Struct. Initialize and display contents of member variables.
Write a C++ program to declare a class. Declare pointer to class. Initialize and display the contents of the class member.
Given that an EMPLOYEE class contains following members: data members: Employee number, Employee name, Basic, DA, IT, Net Salary and print data members.
Write a C++ program to read the data of N employee and compute Net salary of each employee (DA=52% of Basic and Income Tax (IT) =30% of the gross salary).
Write a C++ to illustrate the concepts of console I/O operations.
Write a C++ program to use scope resolution operator. Display the various values of the same.
Write a C++ program to allocate memory using new operator.
Write a C++ program to create multilevel inheritance. (Hint: Classes A1, A2, A3)
Write a C++ program to create an array of pointers. Invoke functions using array objects.
Write a C++ program to use pointer for both base and derived classes and call the member 25 function. Use Virtual keyword.
Subject : Programming & Data Structure (CSE11404)
List of Programs
Part 1
Write a C program to perform all mathematical operations on two integer numbers
Write a program to calculate the area of a triangle using Heron’s Formula
a)Write a program to print ASCII value of a character
b)Write a program to read a character in upper case and then print it in lower case
Write a program to enter any character. If the entered character is in lower case then convert it into upper case and vice versa.
Write a program to find whether a given year is a leap year or not.
Write a program to calculate the roots of a quadratic equation.
Write a program to determine whether an entered character is a vowel or not.
Write a program to display the largest of five numbers using ternary operator.
Write a program to find whether the given number is an Armstrong number or not.
Write a program to find whether the given number is Palindrome or not.
Write a program to print the following pattern:-
a) 1 b) 1
12 22
123 333
1234 4444
Write a program to calculate area of a circle using function.
Write a program to swap the values of two variables using call by value and call by reference
Write a program to find factorial of a number using recursion.
Write a program to find Fibonacci series using recursion.
Write A C- Program To Determine If The Given String Is A Palindrome Or Not
Write a c- program that uses functions to perform addition and multiplication on two matrices.
Write a program to read and display information of a student using structure.
Write a C program which copies one file to another.
Part 2
Write a C program to Implement the following searching method. i) linear search ii) Binary search
Write C programs that implement the following sorting methods to sort a given list of integers in ascending order by using Bubble sort.
To implement stack using array.
To implement queue using Array
To C program to create a linked list and display the elements in the list
C Program to Implement Binary Tree using Linked List
DFS Implementation by C
C Program to find a minimum spanning tree using Prim’s algorithm
C Program to find a minimum spanning tree using Kruskal’s algorithm
Subject : Programming Lab (CSE11001)
List of Programs
Write a C Program to display any text on the screen
Write a C Program to evaluate area of a circle
Write a C Program to convert any temperature in Celsius to its equivalent Fahrenheit temperature and vice versa
Write a C Program to find the average of 3 floating point numbers
Write a C Program to swap two numbers using third variable
Write a C Program to swap two numbers without using third variable
Write a C Program to convert a given no Of days into years, months, days.
Write a C Program to compute simple interest.
Write a C Program to find the largest among three nos.
Write a C Program to check whether a no. is even or odd.
Write a C Program to check whether a year is leap year or not
Write a C Program to compute Z=X+ Y++; Print X, Y, Z.
Write a C Program to compute x=++y; Print x, y
Write a C Program to evaluate k=i>>2,l=j<<2. Print k, l.
Write a C Program to evaluate bitwise AND (&) and bitwise OR (|)
Using ternary operator write a C Program to find out largest of three nos.
Write a C Program to calculate quadratic equation.
Write a C Program to find GCD(09) and LCM of two nos.
Write a C Program to find the sum of all integers greater than 100 and less than 200 that are divisible by 7. (Using FOR & IF)
Write a C Program to find the sum of the series: 1! +2! +3! +…+N! (Using WHILE)
Write a C Program to print the series of prime nos. (Using WHILE)
Write a C Program to print:
*
***
*****
Write a C Program to print:
*
**
***
****
Write a C Program to print:
1
232
34543
4567654
Write a C Program to print:
*
***
*****
***
*
Write a C Program to print:
1
22
333
4444
55555
Write a C Program to evaluate Fibonacci Series
Write a C Program to evaluate series of Armstrong number.
Write a C Program to find out the sum of the series:
a) 12 + 32 + 52 + 72 + …… + n2
b) 1 – x +x2/2! – x3/3! +…
Write a recursive function to find the summation of 1st n natural nos. and test the function by calling from a main (). (03)
WCP to find the biggest and smallest of n numbers.(03)
WCP to find the frequency of digits in a set of n numbers. (03)
WCP to give the macro definition to find the max of two nos. (03)
WCP to arrange a set of n numbers in ascending (03) or descending order (04)
Using ternary operator write a macro to find out the absolute value of a no. (03)(05)
Write a function to find the cube of a number and use this to main to evaluate x3+y3+z3 (04)
WCP to print the diagonal of a matrix.(04)
Write a recursive C function to return the GCD of two nos. (05)
Sum of two matrices. (05)
Recursive C function to find the factorial of a no. (05)
Write a function to calculate the value of power (a, b).
Quadratic equation using function.
To count the no of 1s in a character byte and if it is even then set MSB 0 else set MSB to 1
To copy a string to another string
To insert data in link list in a sorted manner.
To count letter ‘E’ in a 10-letter word.
To find the length of a string without using strlen ().
To find the number of vowels & consonants in a line of text.
To convert lower case alphabet to upper case alphabet.
To accept a string as a command line argument hence find its length.
To check whether a input string is palindrome or not.
Copy a disk file into another using command line argument
To count the number of lines, words, characters in a given file.
To display the frequency of character in a given disk file
To create a file.
To copy file f1.dat as f2.dat assuming f1 is available in current working directory.
To create an array of 30 structure variables and read all the members of each variable.
Will receive a file name and a line of text as command line arguments and write the text to that file.
Subject : Game Development – I Lab (CSE12433)
List of Programs
Implementation of Unity Basic Concepts
Setting Up The Scene Camera
Import External Objects
Implements Game Objects
Implement Scene graph
Adding Components to Game Objects
Adding Shading and Materials
Scripting in Unity
Implementation of different Fundamental Classes
Accessing Members of Other Scripts