I applied through university. The process took 1 week. I interviewed at Ace Analytics (Ahmedabad) in Aug 2024
Interview
It was an Oncampus Process so Company asked for minimun 8 CGPA and after it as of First Round they sortlisted students with cgpa higher than 8.5 cgpa,Now the Second Round was DSA round they gave all the people time of 45 minutes and mostly 2 to 3 questions were asked it was an online one so we have to solve the given problems in IDE whichever we want to use and the level was almost medium to easy and if you do all the questions optimal than you will go into third round of senior management round which was basically CEO round in which we have to go to the office for the interview they told us that it will be kind of normal meeting not interview but they took techincal and HR both the interview HR one was easy and very much co-operative and the CEO's technical round was a little tough we can say they gave me a medium level dsa question to solve using pen paper and all the other questions was around the technology which i selected and also some of the family background questions and all overall experience was great.
Interview questions [4]
Question 1
(Note: This Was asked in CEO round)
Given an m x n integer matrix matrix, if an element is 0, set its entire row and column to 0's.
You must do it in place.
You are given an integer array nums and an integer k. Find the maximum subarray sum of all the subarrays of nums that meet the following conditions:
The length of the subarray is k, and
All the elements of the subarray are distinct.
Return the maximum subarray sum of all the subarrays that meet the conditions. If no subarray meets the conditions, return 0.
A subarray is a contiguous non-empty sequence of elements within an array.