Skip to content

SPPU Artificial Intelligence and Data Science (AIDS) Department Second year Object Oriented Programming Practical Assignments

Notifications You must be signed in to change notification settings

hp1004/SPPU-2019-Pattern-AIDS-Object-Oriented-Programming-Lab-Practicals

Repository files navigation

SPPU-2019-Pattern-AIDS-Object-Oriented-Programming-Lab-Practicals

Group A :

Experiment No. 1 : Implement a class Complex which represents the Complex Number data type. Implement the following 1. Constructor (including a default constructor which creates the complex number 0+0i). 2. Overload operator+ to add two complex numbers. 3. Overload operator* to multiply two complex numbers. 4. Overload operators << and >> to print and read Complex Numbers.

Experiment No. 2 : Develop a program in C++ to create a database of student’s information system containing the following information: Name, Roll number, Class, Division, Date of Birth, Blood group, Contactaddress, Telephone number, Driving license no. and other. Construct the database with suitable member functions. Make use of constructor, default constructor, copy constructor, destructor, static member functions, friend class, this pointer, inline code and dynamic memory allocation operators-new and delete as well as exception handling.

Experiment No. 3 : Imagine a publishing company which does marketing for book and audiocassette versions. Create a class publication that stores the title (a string) and price (type float) of a publication.From this class derive two classes: book, which adds a page count(type int), and tape, which adds a playing time in minutes(type float). Write a program that instantiates the book and tape classes, allows user to enter data and displays the data members.If an exception is caught, replace all the data member values with zero values.

Group B :

Experiment No. 4 : Write a C++ program that creates an output file, writes information to it, closes the file, open it again as an input file and read the information from the file.

Experiment No. 5 : Write a function template for selection sort that inputs, sorts and outputs an integer array and a float array.

Group C :

Experiment No. 6 : Write C++ program using STL for sorting and searching user defined records such as Item records (Item code, name, cost, quantity etc) using vector container.

Experiment No. 7 : Write a program in C++ to use map associative container. The keys will be the names of states and the values will be the populations of the states. When the program runs, the user is prompted to type the name of a state. The program then looks in the map, using the state name as an index and returns the population of the state.

About

SPPU Artificial Intelligence and Data Science (AIDS) Department Second year Object Oriented Programming Practical Assignments

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages