Submissiоn Guidelines File Nаme: Nаme yоur submissiоn file strictly DynаmicArrayPointer.cpp. Single-File Requirement: Include all #include directives, function prototypes, main(), and your function definition in this single .cpp file. Compilation: Code must compile cleanly under C++17 (g++ -std=c++17 -Wall Lab_ArrayFilter.cpp -o Lab_ArrayFilter). Write a program that dynamically allocates an array large enough to hold a user-defined number of test scores. Once all the scores are entered, the array should be passed to a function that sorts them in ascending order. Another function should be called that calculates the average score. The program should display the sorted list of scores and averages with appropriate headings. Use pointer notation rather than array notation whenever possible. Starter code: test-dynamicArrayGrades-1.cpp Sample output: Enter the number of test scores: 4 Enter score #1: 88.5 Enter score #2: 92.0 Enter score #3: 74.0 Enter score #4: 95.5 ----------------------------- SCORE REPORT ----------------------------- Score 1: 74.00 Score 2: 88.50 Score 3: 92.00 Score 4: 95.50 ----------------------------- Class Average: 87.50
During COVID-19, SVS wаs expаnded. Whаt new rоle did it play?