I applied online. I interviewed at Commvault (Edison, NJ) in Jun 2022
Interview
The first round is Python OA coding with two medium questions. The second round is 1hr phone interview with Python basic knowledge and review of the 1st round coding question.
I applied through university. I interviewed at Commvault (Haryāna) in Jul 2023
Interview
it was a good experience It was a difficult and hard interview round as well. In the later rounds, I got rejected due to some faults overall i t was intermediate coding round and hard interview round
Interview questions [1]
Question 1
There was a 2-D array of 'o' and 'x'. We have to rotate the array 90 degree and then bring all the 'x' in the bottom part of the 2-D matrix. Input: o x o x x o o o x Output: o o o o x o x x x Explanation: Step 1- initial matrix o x o x x o o o x Step 2- Rotate it clockwise 90 degree o x o o x x x o o step 3- bring all the 'x' in the bottom part of the array o o o o x o x x x