Tip 1 : Practice atleast 350 Questions.
Tip 2 : keep your DS & algo part very strong.
Tip 3 : work on your communication skills.
Tip 1 : Keep it short and concise.
Tip 2 : have some good projects on resume.
It was an online test on hackerrank. They asked us to turn on video and audio of laptop. It consisted of two programming questions. After Round 1 around 54 were shortlisted for the technical interview process.
Input: 'arr' = [2, 2, 2, 2, 0, 0, 1, 0]
Output: Final 'arr' = [0, 0, 0, 1, 2, 2, 2, 2]
Explanation: The array is sorted in increasing order.
1. Coordinates of the cells are given in 0-based indexing.
2. You can move in 4 directions (Up, Down, Left, Right) from a cell.
3. The length of the path is the number of 1s lying in the path.
4. The source cell is always filled with 1.
1 0 1
1 1 1
1 1 1
For the given binary matrix and source cell(0,0) and destination cell(0,2). Few valid paths consisting of only 1s are
X 0 X X 0 X
X X X X 1 X
1 1 1 X X X
The length of the shortest path is 5.
It was a technical interview. It was on a Zoom call, and we have to write code on hackerrank. Then he asked the languages I code, I told him C++. Then he asked me two coding questions:
1. Given an array, print all the pairs which have a sum equal to the given number.
2. Given string print, a word with a maximum number of occurrences, and I have to think of all the worst cases. Then he asked me to solve the same question using another approach.
There was a discussion on time and space complexity in both the question.
Then he asked me why do you want to join JPMC and then asked me if I have any questions from him.
Each pair should be sorted i.e the first value should be less than or equals to the second value.
Return the list of pairs sorted in non-decreasing order of their first value. In case if two pairs have the same first value, the pair with a smaller second value should come first.
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.
It was Technical round two. There was a discussion on the resume. He asked me to explain to him my 1st project. As my projects were of ML, so he asked me some basic questions on ML, like how do you handle small datasets, how does Gradient boosting work, and some other fundamental ML questions. Then asked me about my family background and also asked me that you are from Chemical Engineering, so how you gain interest in coding, machine learning.
After this round, we were not told how many students were selected for the HR round, but I was one of them.
This was the HR round. The interviewer was very helpful and supporting. He asked me to introduce myself. He asked me a couple of things of resume. He then asked me why you want to join JPMC and then asked what you are planning to learn in the next 7-8 months. I cleared this round.
TikTok uses _________ to recursively display trending videos ensuring your feed is filled with new content.