in c++
Convert Pens This assignment is due on Feb 17th, Monday. Insert Replay 1. Write a program that prompts the user to enter 10 integers and displays all combinations of picking two numbers from the 10. ANSWER: 2. Two arrays list and list2 are identical if they have the same contents. Write a function that returns true if listl and list2 are identical using the following header: bool isEqual(const int listi[], const int list2[], int size) Write a test program that prompts the user to enter two arrays of integers and displays whether the two are identical. Here are the sample runs. Note that the first number in the input indicates the number of the elements in the list. This number is not part of the list. Assume the array size is maximum 20. Enter listl: 5 2 5 6 61 Enter list2: 5 5 2 61 6 Two arrays are identical Enter listl: 5 5 5 6 61 Enter list2: 5 2 5 6 1 6 Two arrays are not identical ANSWER: Convert Pens This assignment is due on Feb 17th, Monday. Insert Replay 1. Write a program that prompts the user to enter 10 integers and displays all combinations of picking two numbers from the 10. ANSWER: 2. Two arrays list and list2 are identical if they have the same contents. Write a function that returns true if listl and list2 are identical using the following header: bool isEqual(const int listi[], const int list2[], int size) Write a test program that prompts the user to enter two arrays of integers and displays whether the two are identical. Here are the sample runs. Note that the first number in the input indicates the number of the elements in the list. This number is not part of the list. Assume the array size is maximum 20. Enter listl: 5 2 5 6 61 Enter list2: 5 5 2 61 6 Two arrays are identical Enter listl: 5 5 5 6 61 Enter list2: 5 2 5 6 1 6 Two arrays are not identical