Question: 1.What best describes the steps in the resize function for a class that is holding a dynamic array? A. declare a temporary pointer, allocate a
1.What best describes the steps in the resize function for a class that is holding a dynamic array? A. declare a temporary pointer, allocate a larger array, copy data from the original array to the newer array, delete the original array, make the member pointer point to the copy, increase the capacity variable B. call the array's built-in resizing function C. allocate a larger array, delete the original array and copy the pointer D. declare a temporary pointer, allocate a larger array, make the old pointer point to the new array, copy the data, delete the temporary pointer
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
