Tip 1 : Basic level Programming is required
Tip 2 : Aptitude must be good
Tip 1 : Be prepared with whatever you have mentioned on Resume
Tip 2 : Properly go through Projects before Interview
15 Aptitude, 15 Logical reasoning, 15 - Verbal Reasoning, 15 core subject questions, 2 Coding questions



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.
I was directly used Recursive solution to solve the problem



Paragraph = ‘It's a square SqUare. It's a FLAT flat.’
Banned =[FLAT, IT, S].
So we can see these words [IT, S, SQUARE, FLAT ] are most frequent.
Now we will look at to banned list and we can see 3 of the words are banned.
So we have a unique answer SQUARE which has a frequency of 2 and not on the banned list.
Used brute force Approach of 2 loops and calculate maximum repeating element and it's frequency
This round was majorly focused on Projects and core subjects. Interviewer asked lot of Questions from C++,C, data science and machine learning



Bubble Sort implementation for the given array: {6,2,8,4,10} is shown below :-
Told the solution and it's complexity
8 Students are in conference from different locations and all give their Introduction and then HR asked some behavioural questions to them, and after completion they left the conference call.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?