Menu

Categories for OOMP Codes

Standard Template Library – Lists (C++)

April 24, 2016

Google standard template library to use list container and using C++ implement following member functions of list class: empty, insert,merge,reverse,sort

Bubble Sort – using Function Template (C++)

April 24, 2016

<span data-mce-type="bookmark" style="display: inline-block; width: 0px; overflow: hidden; line-height: 0;" class="mce_SELRES_start"></span>/* Implement C++/Java/Python program for bubble sort using function template... View Article

File Operations, Derived Class & Virtual Class illustration (C++)

April 24, 2016

Design a C++ base class consisting of the data members. The derived class consists of the data members. Construct a virtual base class. The program should have the facilities. i) Build a master table ii) List a table iii) Insert a new entry iv) Delete old entry v) Edit an entry vi) Search for a record

Matrix Operations using Function Template (C++)

April 24, 2016

Write a program in C++ using function template to read two matrices of different data types such as integers and floating point values and perform simple arithmetic operations on these matrices separately and display it.