Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Flipkart Team. If you also belong to the team, you can get access from here

Flipkart Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 10.4k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Flipkart Application Engineer 2 Interview Questions and Answers

Updated 22 Aug 2024

Flipkart Application Engineer 2 Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Instahyre and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. A tree problem involving node value transformation.
  • Ans. 

    Transform node values in a tree problem

    • Traverse the tree using depth-first search or breadth-first search

    • At each node, apply the transformation function to update the node value

    • Consider using recursion for tree traversal and transformation

    • Example: Increment each node value by 1 in a binary tree

  • Answered by AI
  • Q2. Implementing the given sorting algorithm using linked list.
  • Ans. 

    Implementing sorting algorithm using linked list

    • Create a linked list data structure to store elements

    • Implement the sorting algorithm (e.g. bubble sort, merge sort) using linked list operations

    • Update the pointers accordingly to rearrange the elements in sorted order

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Discussed my personal projects, daily tasks, and the tech stack I have worked with. This round was more about understanding my experience and how I handle real-world problems.
Round 3 - HR 

(1 Question)

  • Q1. This round assessed if I was "Flipkart ready," focusing on cultural fit and readiness to transition.

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1: Problem-Solving and Data Structures (1 hour)
Question 1: A tree problem involving node value transformation.
Question 2: Implementing the given sorting algorithm using linked list.
Need to find optimal solutions and dry run the code.

Round 2: Managerial Round (1 hour)
Discussed my personal projects, daily tasks, and the tech stack I have worked with.
This round was more about understanding my experience and how I handle real-world problems.

Round 3: HR Round (30 min)
This round assessed if I was "Flipkart ready," focusing on cultural fit and readiness to transition.

Overall, the interview experience was positive. Transitioning from a service-based to a product-based company was challenging, and the learning curve was steep but absolutely worth it.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 2 questions were asked in this round. 1. move all the zeros to last without changing the order of other numbers. 2. check if given string is palindrome or not
Round 2 - Technical 

(1 Question)

  • Q1. Interviewer asked 7-8 questions in shell commands ex: find files which are having more than 10 GB memory and some other command using sed, awk, tr.
Round 3 - Technical 

(1 Question)

  • Q1. 3rd Round : Its Manager round. Interviewer asked most of the questions from my past projects & some troubleshoot questions. 4th Round: this is the final & bar riser round. HR asked one coding question and ...
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SQL Query related question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Check if array is monotonous
  • Ans. 

    Check if array of strings is monotonous

    • Iterate through the array and compare each string with the next one to check for monotonicity

    • If all strings are in increasing or decreasing order, the array is monotonous

    • Examples: ['apple', 'banana', 'cherry'] is monotonous, ['orange', 'kiwi', 'apple'] is not

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Group Anagrams Leetcode question
Round 3 - HR 

(1 Question)

  • Q1. Explain your previous experience
  • Ans. 

    I have 5 years of experience as an Applications Engineer in the automotive industry.

    • Designed and implemented software solutions for vehicle diagnostics

    • Collaborated with cross-functional teams to troubleshoot and resolve technical issues

    • Provided technical support to customers and conducted product demonstrations

    • Developed training materials and conducted training sessions for internal teams

    • Contributed to product developm...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic SQL and SQL Joines for three or more tables.
  • Q2. What is your Current Job role and how do you see your self in Nykaa for offered job role?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Crystal clear about your current job role with Good knowledge of SQL and SQL Querries especially for Joines.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There will be 5 rounds

All the round were mainly focused on the leadership priciples and technical skills
Each round will be carried for 1hr
You should be proefficeint with AWS and devops concepts like CI/CD

Round 2 - Coding Test 

This round consist of 2 question mainly focused on DSA concepts like Array and Strings

Round 3 - Coding Test 

Here also you will be asked to solve 2 DSA questions form medium to hard level

Round 4 - One-on-one 

(2 Questions)

  • Q1. Your work-experience and projects
  • Q2. Questions based on your project , mainly to check the leaderships principles

Interview Preparation Tips

Interview preparation tips for other job seekers - you should be proficient with DSA in any language
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

Dynamic Programming, Greedy Algorithm

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Total 3 round was there First 2 questions from the data structure and algorithm and third round was design
  • Q2. Reverse the linked list
  • Ans. 

    Reverse a linked list

    • Create three pointers: current, prev, and next

    • Iterate through the linked list, updating pointers accordingly

    • Set the head of the linked list to the new tail

  • Answered by AI
  • Q3. Diameter of binary tree
  • Ans. 

    The diameter of a binary tree is the number of nodes on the longest path between two leaves in the tree.

    • The diameter of a binary tree can be calculated by finding the height of the left subtree, the height of the right subtree, and adding them together.

    • The diameter may or may not pass through the root of the tree.

    • Example: For the binary tree below, the diameter is 4 (nodes 1, 2, 4, 7).

    • 1

    • / \

    • 2 3

    • / \

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall it was good

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Topics:
data types
scripting

Round 2 - HR 

(3 Questions)

  • Q1. About prev experience
  • Q2. About pre experience
  • Q3. Why you are interested for this role
Round 3 - Coding Test 

Datatypes,
scripting

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Feb 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. General scripting, SQL and troubleshooting approaches
Round 3 - Coding Test 

DSA and stakeholder management

Flipkart Interview FAQs

How many rounds are there in Flipkart Application Engineer 2 interview?
Flipkart interview process usually has 3 rounds. The most common rounds in the Flipkart interview process are Technical, One-on-one Round and HR.
How to prepare for Flipkart Application Engineer 2 interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Flipkart. The most common topics and skills that interviewers at Flipkart expect are Java, Android, Angular, Angularjs and Bootstrap.
What are the top questions asked in Flipkart Application Engineer 2 interview?

Some of the top questions asked at the Flipkart Application Engineer 2 interview -

  1. A tree problem involving node value transformati...read more
  2. Implementing the given sorting algorithm using linked li...read more
  3. This round assessed if I was "Flipkart ready," focusing on cultural fit and rea...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Flipkart interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 4.9k Interviews
BigBasket Interview Questions
3.9
 • 345 Interviews
JustDial Interview Questions
3.5
 • 326 Interviews
Zomato Interview Questions
3.8
 • 314 Interviews
Info Edge Interview Questions
4.0
 • 313 Interviews
PolicyBazaar Interview Questions
3.6
 • 307 Interviews
Myntra Interview Questions
4.0
 • 208 Interviews
Naukri Interview Questions
4.0
 • 179 Interviews
Uber Interview Questions
4.2
 • 157 Interviews
View all
Flipkart Application Engineer 2 Salary
based on 5 salaries
₹10 L/yr - ₹14 L/yr
26% less than the average Application Engineer 2 Salary in India
View more details

Flipkart Application Engineer 2 Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.5

Skill development

5.0

Work-Life balance

4.5

Salary & Benefits

5.0

Job Security

5.0

Company culture

4.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 2 Reviews and Ratings
Senior Executive
2.8k salaries
unlock blur

₹2.2 L/yr - ₹9 L/yr

Operations Executive
1.8k salaries
unlock blur

₹1.2 L/yr - ₹6.5 L/yr

Team Lead
1.8k salaries
unlock blur

₹1.2 L/yr - ₹9.9 L/yr

Assistant Manager
1.6k salaries
unlock blur

₹6 L/yr - ₹21 L/yr

Executive
1.4k salaries
unlock blur

₹1.2 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Flipkart with

Amazon

4.1
Compare

Myntra

4.0
Compare

Snapdeal

3.9
Compare

Meesho

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview