1. Order of People Heights Problem Statement Consider 'N' individuals numbered from 0 to N-1 standing in a queue. You are provided with two arrays: Height and Infront, each consisting of 'N' non-negative integers. Height[i] indicates the height of the ith person, and Infront[i] indicates the number of individuals who are taller than the ith person and stand in front of them in the queue. Your task is to determine the actual order of people in the queue. The result should be an array of 'N' integers where the ith integer represents the height of the person positioned at the ith place from the front of the queue. Example: Input: N = 6Height = [5, 3, 2, 6, 1, 4]Infront = [0, 1, 2, 0, 3, 2] Output: [5, 3, 2, 1, 6, 4] Explanation: In the resulting order, the specified conditions for the number of taller individuals in front are satisfied for each person. Constraints: 1 <= T <= 50 1 <= N <= 10^4 1 <= Height[i] <= 10^9 0 <= Infront[i] < N Note: The elements in the 'Height' array are unique, ensuring a valid order always exists given the 'Height' and 'Infront' arrays. Implement the function without printing anything.
2. Which browser do you use daily?
3. Write a recursive function to solve a given problem.
4. Explain your thought process on leveraging NVIDIA technologies.
5. What is the difference between T3 and T5 violations?