Tip 1 : Prepare any 4-5 ML algorithms properly, especially maths and intuition behind it because it will help to explain to the interviewer in a more efficient manner
Tip 2 : Past project in ML/DS will have added advantage in resume shortlisting
Tip 3 : Coding is also necessary for ML profile( you can't take it lightly)
Tip 1 : Try to add at least one project to the resume which involves some research
Tip 2 : Try to keep of one page
The written test consists of 3 sections:
Section 1: Aptitude(25 MCQs and numerical type questions) and Time allotted: 20 min
Section 2: Technical(20 Programming based MCQs) and Time allotted: 25 min
Section 3: Technical(20 Questions of ML concepts and algorithms + Some maths questions from Probability and Linear Algebra) and Time allotted: 30 min
The interviewer asked me to share my screen so that there won't be any chance for any cheating
There were 2 coding questions + 1 Puzzle



1. The array follows 0-based indexing, so you need to return the 0-based index of the element.
2. Note that the element at the equilibrium index won’t be considered for either left sum or right sum.
3. If there are multiple indices which satisfy the given condition, then return the left-most index i.e if there are indices i,j,k…. which are equilibrium indices, return the minimum among them
4. If no such index is present in the array, return -1.



If ‘ARR’ is {1,2,3,4} and ‘K’ = 4, then there exists 2 subsets with sum = 4. These are {1,3} and {4}. Hence, return true.
Find the defective ball in minimum possible comparison?
Given 8 balls all look identical all ball have same weight except for one ball which is heavier than the rest of the ball, you need to find the heavier ball in a minimum number of comparisons using a weight balance
This round is mainly to check the ML concepts + Discussion on past projects
PCA is ML algorithms which is mainly used for dimensionality reduction
My final year project was on Computer Vision using instance segmentation on 'Pothole Detection', so the interviewer asked me to explain it in detail

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?