C++ OOP

What are constructors and destructors ? Write a Object Oriented Program to display Fibonacci series (Use constructor for initialization) ----PU-2014 21
Date: Sep 15, 2018
Write a OOP to create a class named "Time" with data members 'hour' and 'minute' a constructor to initialize............. ---PU-2011 22
Date: Sep 15, 2018
What is "this" pointer ? Illustrate with example. 23
Date: Sep 15, 2018
Write a program to create class “Counter” having integer data member, overload the post increment, post decrement, pre increment and pre decrement for the class “Counter”. 24
Date: Sep 15, 2018
Write a Program to overload the unary minus operator using friend function. 25
Date: Sep 15, 2018
Write a OOP to overload "==" operator to determine the equality of two fractional numbers (fractional numbers must be in terms of numerator and denominator) 26
Date: Sep 15, 2018
Write a program to create classes “Dollar” and “Rupee”. Write conversion routine to convert dollar to rupee (1 dollar = 108 rupees). 27
Date: Sep 15, 2018
Write a Program to convert angle in degree to angle in radian. where, angle in radian = angle in degree * PI/180. Use Conversion routine in source class. 28
Date: Sep 15, 2018
Write a program which asks file name from keyboard, opens a file with that name for output, reads the line from keyboard character by character and writes the line onto the file. 29
Date: Sep 22, 2018
WAP to to read the text from the file named "hello.txt" to the file name called "test.txt". 30
Date: Sep 22, 2018
Write a program to enter the name and salary for a number of employees, store them all in a file, and finally search and display the salary............... 31
Date: Sep 22, 2018
Write a program, using a class to read the contents of the text file and convert all upper case letters to lower case and vice-versa and write the result in to another file. 32
Date: Sep 22, 2018
Write a program to enter the id and price of a number of products, store them all in a user defined file, and search the product when particular id is entered. 33
Date: Sep 22, 2018
Write a program using class template to sort two lists of numbers, one integer list and another floating point list. 34
Date: Sep 23, 2018
Write a program using function template to sort two lists of numbers, one integer list and another floating point list. 35
Date: Sep 23, 2018
Write a program using function template to find the sum of first and last element of an array. 36
Date: Sep 23, 2018
Write a template function to find the maximum number from the template array of size N. 37
Date: Sep 23, 2018
Write a function template to swap the numbers. 38
Date: Sep 23, 2018
Write a program using class template to swap two set of numbers.(one integer set and another floating point set) 39
Date: Sep 23, 2018
Exception handling in C++ 40
Date: Aug 11, 2019