I applied online. I interviewed at Akridata (Bengaluru) in Sep 2025
Interview
Final Round is Peer code review
So after the assignment is submitted, the final round will be a code review of other people's code which is pretty ok for Internship
However it lasts only for 10 or 15 mins
Interview questions [1]
Question 1
Explain the code block written by someone else for the same assignment
There were 3 rounds; screening round, technical round and manager's round. All were virtual.
In screening round which was of half an hour, they asked me to explain about the projects mentioned in resume and show the projects . So I showed 2 projects (code or demo) from my laptop.
In technical round which was of one hour , they asked 2 coding questions and 2 logical reasoning/ problem solving questions. One of the coding questions was of checking balanced parenthesis.
Managers round was of 15 minutes in which I was asked about the company, and question like whether I had worked on data science or how much knowledge I had in data science. The interviewer explained more about the role.
Interview questions [1]
Question 1
One of the 2 coding questions was like : given an array, print a new array of the same size in which elements corresponds to the first greater element towards right in the given array for each of the elements in the given array. If there is no greater element , the element should be -1.
For example:
Given array:
[7,8,9,20,5]
Answer:
[8,9,20,-1,-1]
Later , I was asked to optimize it , but I couldn't not optimize it.