Open In App

Flipkart Interview (For SDE II)

Last Updated : 18 Apr, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Round 1: Machine coding round 

Design a food order system. The code should be modular and extensible. Some conditions are there 
1) Each restaurant has a processing power(say P). It can process the number of items(N<=P) at a single point of time. Once it takes the order, processing power will be reduced by N. 
2) An order can be placed at one restaurant. (All items should be ordered from a restaurant which has the sufficient processing power and all items should available in restaurant) 
3) Place the order in a restaurant that has the lowest price of the order. 
4) Processing power will be restored on the completion of an order. 

Round 2: Design Round: Design the messaging app like WhatsApp. 

Round 3: DS and Algo Round:  
 

  1. Given a stream of characters, find the first non-repeating character from a stream. You need to tell the first non-repeating character in O(1) time at any moment.
  2. Given a square chessboard of N x N size, the position of Knight and position of a target is given. We need to find out the minimum steps a Knight will take to reach the target position.
  3. Given an array, print the Next Greater Element (NGE) for every element. Time complexity O(n) required. 

Round 4: Hiring Manager Round 

  • Challenging project in last one year. 
  • Strength and Weakness 
     
  • Project-related discussion 

     
     


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads