Open In App
Related Articles

Flipkart SDE Interview Experience | Set 43 (On-campus for Internship)

Improve Article
Improve
Save Article
Save
Like Article
Like

Recently Flipkart came to my college for SDE interns. GeeksForGeeks helped me a lot in preparing for the coding tests as well as for interviews.

1st Round. – Online – 60 mins
The first round was an online round which was hosted on hackerrank.com . There were 3 Coding questions each of more than average level.

13 students were shortlisted after this round for Technical Interviews

2nd Round – Technical Interview
The Interviewer asked me 3 Questions in this round and it lasted for 30-40 minutes.

  1. Find maximum of minimum for every window size k in a given array.
  2. Design a Data Structure that will support AddElement(),DeleteElement() and getRandomElement() functions in O(1) time complexity.
  3. Candies Distribution Problem

6 Students were shortlisted after this round for next round.

3rd Round – Technical Interview
The Interviewer asked me 3 Questions in this round and it lasted for 30-40 minutes.

  1. Suppose we are given n elements and m pairs (a,b) where each pair denotes that height of elephant a is less than height of elephant b. We need to determine one of the possible orders of the elephants height and output it in the form (for example) a < b < c.
    Here I wrote one of the possible orders because if the number of given pairs are less than the required number of pairs to determine the actual order then we need to print all possible orders of elephants heights.
  2. Find maximum possible stolen value from houses
  3. 0-1 Knapsack Problem
    They asked me this question by twisting the language by taking IPL example where each player has some rating and cost. We need to maximize rating given fixed budget.
    Then they asked me since for basic DP approach we need to make a 2-D matrix in which number of columns is equal to the budget that we have. So this basic DP approach takes lots on unnecessary space. Imagine the case where budget = 500 then we need to make 500 columns in our matrix. So they asked for some better approach.I gave them my approach at that time I don’t know whether it was correct or not because interviewer just listened to my approach and had not said anything and ended the interview.

After this round they selected 3 students from my college. I was one of them.

If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 25 Sep, 2017
Like Article
Save Article
Previous
Next
Similar Reads