Day 2 - Arrays and StringsArraysPractice QuestionsSort an Array without using Sorting AlgorithmSort an array of 0s, 1s and 2s without using any sorting algorithm Description Given an array A of size N containing only 0s, 1s, and 2s; sort the array in ascending order. Constraints 1 <= N <= 10^6 0 <= A[i] <= 2 Code C++PythonFind Kth Max and Min ElementMove Negative Elements to one side of the Array