You have an ordered linked list with 5 object of type person in it.
Explain with an example of how to add and delete a person in an ordered list. Your list should remain ordered after the insertion and after the deletion of the item.
Note: a Person in this case should be an object that has name, surname, age and gender
An arrayList is one of the most important data structures used in many applications.
Define and show the implementation of the functions of an arrayList.
Write a C++ program that takes an integer input and returns the following number.
a c++ program that reads 5 scores and how much each scores differ from the the highest score
Write a program to perform the following statement obj2=obj1+x (int type) and obj2=x+obj1 using operator member function and friend function.
Write a program to subtract two time objects and stored the result in 3rd object using operator member function and friend function
Write a program to add two distance objects and stored the result in first object using Operator member function and friend function
Write a program to add two distance object using operator member function.
Write a program to subtract two time object using operator member function.