Answer:
I don't think you can report someone but you always can report the question
Answer:
c. $_SERVER
Explanation:
$_SERVER is an array in PHP containing information about headers, paths, and script locations.
Example usage:
echo $_SERVER['HTTP_HOST'];
This will print information about HTTP_HOST header.
echo $_SERVER['DOCUMENT_ROOT'];
This provides information about document root path.
echo $_SERVER['SCRIPT_FILENAME'];
This provides information about the currently executing script.
I would say the answer is <u>Logistics Manager, Material Handlers, and Inventory Managers.</u>
<u></u>
<u><em>Logistics Manager:</em></u><em> person in charge of overseeing the purchasing </em>
<em> and distribution of products in a supply chain</em>
<em />
<em> </em><u><em>Material Handlers:</em></u><em> responsible for storing, moving, and handling </em>
<em> hazardous or non-hazardous materials</em>
<em />
<em> </em><u><em>Inventory Managers:</em></u><em> oversee the inventory levels of businesses</em>
<em> </em>
<u></u>
Hope that helps!
Answer:
Quick Sort.
Explanation:
Quick Sort will be best suited for an array having 100000 elements instead of the insertion sort algorithm because as we know the average time complexity of quick sort is O(NlogN) and for insertion sort is O(n^2).The sorting totally depends upon the pivot that is being selected in quick sort.
While insertion sort is best suited for arrays that are already sorted it takes O(n) time in those cases.
Since the array that we have is very large and so we need an algorithm that can sort the array faster than the other sorting algorithms.Quick Sort is also inplace and does not requires extra space to do the sorting.