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

Filter interviews by

Flipkart Interview Questions, Process, and Tips

Updated 4 Mar 2025

Top Flipkart Interview Questions and Answers

View all 570 questions

Flipkart Interview Experiences

Popular Designations

1.3k interviews found

Interview Questionnaire 

7 Questions

  • Q1. Write a code to check if a tree is BST or not
  • Ans. 

    Code to check if a tree is BST or not

    • Check if left subtree is BST

    • Check if right subtree is BST

    • Check if max value in left subtree is less than root

    • Check if min value in right subtree is greater than root

  • Answered by AI
  • Q2. Modify this code to find the maximum subtree in tree which is a BST. Maximum subtree means subtree goes upto its leaves from any node. Modify the code again to find the maximum tree which is a BST. BST can...
  • Ans. 

    Modify code to find maximum BST subtree and maximum BST tree in a given tree.

    • Create a function to check if a given tree is a BST

    • Traverse the tree and check if each subtree is a BST

    • Keep track of the maximum BST subtree found so far

    • To find maximum BST tree, check if each node can be the root of a BST

    • Keep track of the maximum BST tree found so far

  • Answered by AI
  • Q3. There is code like var i; { .. var j; .. } var k; .. var a; { .. var c; { var i; } .. var d; .. } For simplicity you may assume that there is only one variable declaration on 1 line. Now given a line number, you have to tell what all variables are valid on that line. Propose an algorithm for this
  • Ans. 

    Algorithm to determine valid variables on a given line of code.

    • Create a stack to keep track of variable declarations

    • Traverse the code line by line

    • When encountering a variable declaration, push it onto the stack

    • When encountering a closing brace, pop all variables declared within that scope

    • Return all variables still on the stack when reaching the given line number

  • Answered by AI
  • Q4. Implement LRU cache. Write a code for this. LRU cache supports 3 operations, put(key, value) get(key) remove(key)
  • Ans. 

    Implement LRU cache with put, get, and remove operations.

    • LRU stands for Least Recently Used.

    • The cache should have a maximum capacity.

    • When the cache is full, the least recently used item should be removed.

    • When an item is accessed, it should be moved to the front of the cache.

    • Use a doubly linked list and a hash map to implement the cache efficiently.

  • Answered by AI
  • Q5. Implement next_permutation function (similar to what is in algorithm.h)
  • Ans. 

    next_permutation function generates the next greater lexicographic permutation of a sequence

    • The function modifies the sequence to its next permutation if possible

    • If the sequence is already the largest permutation, it rearranges it to the smallest permutation

    • The function returns true if a next permutation exists, else false

    • The sequence must be sorted in non-descending order before calling the function

  • Answered by AI
  • Q6. Given n sequences, and starting and stopping point of every sequence with its score. For eg. no of sequences = 5 start stop score 0 4 4 3 10 11 6 8 8 7 15 10 11 15 4 All scores are positive. You have to fi...
  • Ans. 

    Given n sequences with start, stop and score, find maximum subset of non-overlapping sequences with maximum total score.

    • Sort the sequences by their end points.

    • Use dynamic programming to find the maximum sum of non-overlapping sequences.

    • Keep track of the previous non-overlapping sequence with maximum sum.

    • Return the maximum sum and the corresponding non-overlapping sequences.

  • Answered by AI
  • Q7. Normal discussion on work culture, teams etc

Interview Preparation Tips

Round: Technical Interview
Experience: Implement LRU cache. Write a code for this. LRU cache supports 3 operations,
put(key, value)
get(key)
remove(key)
P.S. This is very important and actually good question. Even if you know the answer, dont rush with it. Take your time to frame the algorithm. Always speak your thoughts. Interviewers like to know the way you are thinking in.
Q3. WAP to get the next higher palindrome of a given number.
123 -> 131 1232 -> 1331

Skills: data structure, Algorithm
College Name: NA

Skills evaluated in this interview

Top Flipkart Software Developer Interview Questions and Answers

Q1. Search In Rotated Sorted Array Problem Statement Given a sorted array of distinct integers that has been rotated clockwise by an unknown amount, you need to search for a specified integer in the array. For each search query, you have to ret... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Sopra Steria

Success to our employee's well-being? A work-life balance that's simply unbeatable.

Our employees have rated us 4 for Work-Life Balance on AmbitionBox

Executive Interview Questions & Answers

user image Anonymous

posted on 4 Feb 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. I have 4.6 years experience, 2 years supervisor, middle mail experience in flipkart, 1 year fast mile zepto shift incharge, 8 months FRN, Large flipkart, blue colour. Current time working zepto shift incha...
  • Q2. Do you need employees like us?
  • Ans. 

    Yes, we are always looking for talented and dedicated employees to join our team.

    • We are constantly seeking individuals with the right skills and experience to contribute to our organization.

    • Having employees like you who are motivated and passionate about their work is essential for our success.

    • We value diversity and are committed to creating a supportive and inclusive work environment.

    • Examples: We are currently hiring ...

  • Answered by AI
  • Q3. I have 4.6 years of experience, do you need it?
  • Ans. 

    Yes, your 4.6 years of experience is relevant to the position.

    • Your experience can bring valuable skills and knowledge to the role.

    • Highlight specific achievements or projects from your 4.6 years of experience.

    • Demonstrate how your experience aligns with the requirements of the position.

    • Emphasize how your experience can contribute to the success of the team or organization.

  • Answered by AI
  • Q4. I pass fast mail and middle mile and last mail rider tema handlein team worki experience do you need it

Top Flipkart Executive Interview Questions and Answers

Q1. How to maintain delivery boys.,& critical situations in hubs
View answer (9)

Executive Interview Questions asked at other Companies

Q1. How will you start RS method Development for known drug product?
View answer (16)
Flipkart Interview Questions and Answers for Freshers
illustration image
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 Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Data Structures & Algorithms: Make sure you understand common data structures (arrays, linked lists, stacks, queues, trees, graphs, hashmaps) and algorithms (sorting, searching, dynamic programming, etc.).

Problem Solving: Practice solving problems on platforms like LeetCode, HackerRank, or CodeSignal. Focus on optimizing your code, as well as understanding the time and space complexity (Big O notation).

Language Proficiency: Be comfortable with the programming language you're expected to use for the test. Most tests will expect you to code in languages like Python, Java, or C++.

System Design: For more senior roles, system design questions may be part of the interview. Practice designing scalable systems and explaining your design decisions.

Round 2 - Group Discussion 

In a group discussion for a job, the goal is often to assess your communication skills, teamwork, problem-solving abilities, and how well you can present your ideas while considering others’ viewpoints. Here are some tips to excel in a group discussion:

1. Understand the Topic
If the topic is provided in advance, research it thoroughly. Understand the key points and perspectives.
If the topic is given on the spot, take a moment to organize your thoughts before speaking. Think about the main ideas and structure your points clearly.
2. Listen Actively
Pay attention to what others are saying. This helps you respond meaningfully and prevents you from repeating points already made.
Nod and make eye contact to show you're engaged.
3. Speak Clearly and Confidently
Be concise. Don’t go on for too long, as group discussions typically have time limits.
Avoid speaking too fast. Clearly articulate your points so everyone can understand you.
4. Be Assertive, Not Aggressive
Express your opinions confidently but respect others’ viewpoints. Being polite and diplomatic goes a long way.
If you disagree with someone, do so respectfully and offer a constructive alternative.
5. Encourage Others
Don’t dominate the conversation. Allow others to speak and acknowledge their points.
If someone is struggling to speak, you can gently invite them to share their thoughts.
6. Stay on Topic
Stick to the subject and avoid going off on tangents. If the discussion strays, politely steer it back to the main topic.
7. Summarize Key Points
If possible, try to summarize the discussion toward the end, tying together the key ideas that have been raised.
A strong conclusion can leave a positive impression.
8. Be Professional
Dress appropriately and maintain a professional attitude throughout the discussion.
Show respect for time. Don’t interrupt others and avoid speaking over people.
9. Keep a Positive Attitude
Stay calm and composed, even if you disagree with something or if the discussion gets heated.
Would you like tips specific to a particular kind of group discussion (e.g., on current affairs, technical topics, or problem-solving scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - Here’s some advice for job seekers to enhance their chances of success:

1. Self-Assessment
Identify Strengths & Weaknesses: Understand your skills, values, and career goals.
Research Interests: Target industries or roles that align with your passions and expertise.
2. Create an Impressive Resume
Tailor It: Customize your resume for each job, emphasizing relevant skills and achievements.
Use Keywords: Incorporate terms from the job description to pass applicant tracking systems (ATS).
Show Results: Highlight accomplishments using measurable outcomes (e.g., "Increased sales by 20%").
3. Build a Strong Online Presence
Optimize LinkedIn: Ensure your profile is professional, complete, and aligned with your resume.
Showcase Work: Share articles, projects, or portfolios on platforms relevant to your field.
Network Actively: Engage with industry professionals and groups online.
4. Leverage Networking
Attend Events: Participate in industry meetups, conferences, and webinars.
Reach Out: Informational interviews and casual conversations can lead to referrals.
Utilize Contacts: Let friends, family, and colleagues know you’re job hunting.
5. Master the Job Search Process
Set Goals: Dedicate specific hours to job searching daily or weekly.
Diversify Applications: Use job boards, company websites, and recruitment agencies.
Follow Up: After applying or interviewing, send polite follow-up emails to express interest.
6. Prepare for Interviews
Research Companies: Learn about their values, products, and culture.
Practice Common Questions: Prepare answers for behavioral and technical questions.
Ask Questions: Demonstrate interest by inquiring about company goals, team dynamics, etc.
7. Stay Adaptable
Upskill: Take online courses or certifications to keep skills current.
Be Open to Opportunities: Consider roles that provide growth, even if they’re not your ideal job.
Stay Resilient: Rejections are normal; treat them as learning experiences.
8. Negotiate Offers
Understand Market Value: Research salaries for similar roles in your region.
Focus on Total Compensation: Consider benefits, growth opportunities, and work-life balance.
9. Maintain Professionalism
Be Punctual: Meet deadlines for applications and interviews.
Communicate Clearly: Use polite and professional language in all interactions.
10. Stay Positive
Take Breaks: Avoid burnout by balancing your job search with relaxation.
Celebrate Wins: Acknowledge small achievements to stay motivated.

Data Entry Executive Interview Questions asked at other Companies

Q1. Means involving the sorts of machines processes and materials used in industry transport and communications.
View answer (2)

Interview Questions & Answers

user image Anonymous

posted on 23 Feb 2025

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

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is your greatest achievement
  • Ans. 

    My greatest achievement was leading a team to successfully launch a new product ahead of schedule and under budget.

    • Led a team to launch a new product ahead of schedule

    • Managed to stay under budget for the project

    • Received recognition for the successful completion of the project

  • Answered by AI
  • Q2. What are you most proud of about yourself
  • Ans. 

    I am most proud of my ability to adapt to new challenges and learn quickly.

    • Quickly adapting to new technologies in previous roles

    • Successfully taking on new responsibilities and excelling in them

    • Receiving positive feedback from colleagues and supervisors for my ability to learn and grow

  • Answered by AI
  • Q3. What goals do you want to accomplish in the next few years
  • Ans. 

    In the next few years, I aim to advance my skills, take on more responsibilities, and potentially transition into a leadership role.

    • Advance my skills through continuous learning and training programs

    • Take on more responsibilities to demonstrate growth and capability

    • Transition into a leadership role by showcasing leadership qualities and taking on leadership opportunities

  • Answered by AI
  • Q4. Would you rather people perceive you as being kind smart or attractive
  • Ans. 

    I would rather people perceive me as kind, as kindness is a trait that can positively impact others.

    • Kindness is a valuable trait that can make a positive impact on others

    • Being perceived as kind can lead to stronger relationships and a better work environment

    • Kindness is often associated with empathy and compassion, important qualities in any setting

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Set goals consider your career goals and
The type of jobs you're interested in

Flipkart interview questions for popular designations

 Data Entry Operator

 (55)

 Operations Executive

 (43)

 Senior Executive

 (42)

 Software Developer

 (35)

 Team Lead

 (33)

 Graduate Trainee

 (28)

 Executive

 (24)

 Team Lead Operations

 (23)

Quality Lead Interview Questions & Answers

user image Anonymous

posted on 11 Nov 2024

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

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Panel interview 

(11 Questions)

  • Q1. WALK US THROUGH YOUR RESUME.
  • Q2. WHAT ARE YOUR QUALIFICATIONS, EXPERIENCE AND BIGGEST ACHIEVEMENTS?
  • Ans. 

    I have a Bachelor's degree in Quality Management, 5 years of experience in quality assurance, and successfully implemented a new quality control system.

    • Bachelor's degree in Quality Management

    • 5 years of experience in quality assurance

    • Implemented a new quality control system

  • Answered by AI
  • Q3. HOW MANY NUMBER OF PEOPLE DO YOU DIRECTLY MANAGE AND WHAT CHALLENGES DID YOU FACE AT LAST ORGANISATION?
  • Q4. WHAT ARE YOUR PROBLEM SOLVING TECHNIQUES?
  • Ans. 

    I use a combination of root cause analysis, brainstorming, and data analysis to solve problems efficiently.

    • Identify the root cause of the problem before jumping to solutions

    • Brainstorm potential solutions with a team or individually

    • Use data analysis to make informed decisions and track progress

    • Implement solutions and monitor results for effectiveness

    • Adjust strategies as needed based on feedback and outcomes

  • Answered by AI
  • Q5. WHAT METRICS DID YOU ACHIEVE IN OUR LAST ORGANISATION WITH EXAMPLE?
  • Q6. WHAT IMPROVEMENTS DID YOU BRING IN YOUR CURRENT ORGANISATION, AND DO YOU GIVE INDIVIDUAL CONTRIBUTION TO THE TEAM FOR THIS OR BY GROUP?
  • Ans. 

    I implemented a new quality control system that improved efficiency by 20% through individual contributions and team collaboration.

    • Implemented a new quality control system to streamline processes

    • Led training sessions for team members to ensure understanding and compliance

    • Collaborated with cross-functional teams to identify and address quality issues

    • Introduced regular quality audits to monitor and improve performance

  • Answered by AI
  • Q7. WHAT SKILLS DO YOU HAVE- KAIZEN, PROCESS EXCELLENCE, SIX SIGMA, ANY SPECIFIC CERTIFICATIONS AS- SQL OR TABLEAU, DATA STUDIO ETC?
  • Q8. WHAT ARE YOUR BIGGEST ACHIEVEMENTS IN YOUR LAST ORGANISATION, AND WHAT BRINGS YOUR INTEREST TO QUALITY?
  • Q9. HOW CLOSELY HAVE YOU WORKED WITH SUPPLY CHAIN OPERATIONS AND WHAT EXACTLY WOULD YOU DO TO REDUCE PICKING TIME IN THE WAREHOUSE?
  • Ans. 

    I have closely worked with supply chain operations and would implement process improvements to reduce picking time in the warehouse.

    • I have collaborated with supply chain teams to optimize inventory management and streamline processes.

    • Implemented barcode scanning technology to improve accuracy and efficiency in picking orders.

    • Analyzed data to identify bottlenecks in the picking process and implemented solutions such as ...

  • Answered by AI
  • Q10. WHAT TECHNIQUE WOULD YOU USE TO REDUCE THE SCM OPERATIONS IN A WAREHOUSE?
  • Ans. 

    Implementing lean principles such as 5S, Kanban, and Just-in-Time inventory management can help reduce SCM operations in a warehouse.

    • Implement 5S methodology to organize the warehouse and reduce waste

    • Utilize Kanban system to optimize inventory levels and streamline processes

    • Adopt Just-in-Time inventory management to minimize excess inventory and improve efficiency

  • Answered by AI
  • Q11. BASIC SITUATION, LOGICS AND GENERAL QUESTIONS.

Interview Preparation Tips

Interview preparation tips for other job seekers - BE WELL PREPARED AND BE HANDY WITH LOTS OF ANSWERS RELATED TO GENERAL PRACTICAL DAY TO DAY WORK SCENARIOS AND IT IS BETTER IF YOU KNOW TECHNICAL TOOLS WELL AS THAT WOULD HELP YOU LAND THE JOB EASILY AND GROW, REST COMMUNICATION AND ABILITY MATTERS, ALL THE BEST FOLKS!

Quality Lead Interview Questions asked at other Companies

Q1. What is Root cause analysis, FMEA, CTQ, 7QC tools, SIPOC, COPIS?
View answer (1)

Get interview-ready with Top Flipkart Interview Questions

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me the output of this sql query
  • Ans. 

    The output of the SQL query is a set of data retrieved from a database based on specified conditions.

    • The output will depend on the specific query being asked about.

    • It could be a list of names, numbers, dates, or any other data stored in the database.

    • The output may be sorted, filtered, or aggregated based on the query's criteria.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Perform Vlookup and Xlookup and pivot table and other formulas in a given data set
  • Ans. 

    Demonstrate proficiency in Vlookup, Xlookup, pivot tables, and other formulas in a given data set.

    • Use Vlookup to search for a value in the first column of a table and return a value in the same row from a specified column.

    • Xlookup is a more powerful and flexible version of Vlookup that can search for a value in a range and return a corresponding value.

    • Pivot tables are used to summarize and analyze data in a spreadsheet.

    • ...

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

(1 Question)

  • Q1. Sitution based question
Round 4 - HR 

(1 Question)

  • Q1. How will you rate yourself in terms of skills and all other Hr typical question
Round 5 - Salary Negotiation 

(1 Question)

  • Q1. Salary negotiations and hike and what expectation I have

Junior Data Analyst Interview Questions asked at other Companies

Q1. What is the main difference between data mining and data analysis?
View answer (4)

Jobs at Flipkart

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

I was interviewed in Feb 2025.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is your education
  • Ans. 

    Bachelor's degree in Business Administration

    • Bachelor's degree in Business Administration

    • Specialization in Operations Management

    • Relevant coursework in supply chain management

    • Graduated with honors

  • Answered by AI
  • Q2. How much experience in warehouse
  • Ans. 

    I have 5 years of experience working in warehouse operations.

    • 5 years of experience in warehouse operations

    • Managed inventory control and shipping/receiving processes

    • Implemented efficiency improvements in warehouse layout and workflow

    • Trained and supervised warehouse staff

  • Answered by AI
  • Q3. How many members in family
  • Ans. 

    I have 4 members in my family.

    • I have 2 parents, 1 sibling, and myself in my family.

    • We are a close-knit family and often spend time together.

    • Our family enjoys going on vacations together.

    • I have a pet dog who is also a part of our family.

  • Answered by AI

Team Lead Operations Interview Questions asked at other Companies

Q1. What was thr volume of shipment handled per day in previous designation ?
View answer (19)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - HR 

(10 Questions)

  • Q1. What are your current priorities in this session of your life
  • Ans. 

    My current priorities include personal growth, career advancement, and spending quality time with loved ones.

    • Focus on personal development through self-reflection and learning new skills

    • Work towards advancing in my career by taking on new challenges and seeking opportunities for growth

    • Make time for loved ones by prioritizing quality time together and creating lasting memories

  • Answered by AI
  • Q2. What's goals do you want to accomplish in the next few years
  • Ans. 

    In the next few years, I aim to expand my expertise in holiday planning, increase my client base, and launch a successful travel blog.

    • Expand expertise in holiday planning

    • Increase client base

    • Launch successful travel blog

  • Answered by AI
  • Q3. What are you most afraid of
  • Ans. 

    I am most afraid of heights, especially when looking down from a tall building or cliff.

    • Fear of falling from a great height

    • Feeling of vertigo or dizziness

    • Avoiding situations involving heights

    • Anxiety when near edges of tall structures

  • Answered by AI
  • Q4. How do you cope when things get hard
  • Ans. 

    I cope by taking a step back, seeking support from loved ones, and practicing self-care.

    • Take a step back and assess the situation objectively

    • Seek support from loved ones or a therapist

    • Practice self-care activities such as exercise, meditation, or hobbies

  • Answered by AI
  • Q5. Would you rather people perceive you as being kind smart or attractive
  • Ans. 

    I would rather people perceive me as kind, as kindness is a trait that truly reflects who I am as a person.

    • Kindness is a quality that fosters positive relationships and creates a supportive environment.

    • Being perceived as kind can lead to more meaningful connections with others.

    • Kindness is a trait that is universally valued and appreciated by people from all walks of life.

  • Answered by AI
  • Q6. What's your greatest achievement
  • Ans. 

    My greatest achievement was climbing Mount Everest.

    • Successfully reaching the summit of Mount Everest

    • Overcoming physical and mental challenges during the climb

    • Training and preparation required for such a feat

  • Answered by AI
  • Q7. What are you most proud of about yourself
  • Ans. 

    I am most proud of my ability to connect with people and make them feel comfortable.

    • Strong communication skills

    • Empathy towards others

    • Ability to build rapport quickly

  • Answered by AI
  • Q8. What are you most thankful for?
  • Ans. 

    I am most thankful for my family, health, and opportunities in life.

    • Family - for their love, support, and companionship

    • Health - for allowing me to live a fulfilling life

    • Opportunities - for the chance to grow, learn, and experience new things

  • Answered by AI
  • Q9. What would your perfect day be like
  • Ans. 

    My perfect day would involve waking up to a beautiful sunrise, spending time outdoors in nature, enjoying delicious food, and ending the day with relaxation and laughter.

    • Waking up early to watch the sunrise

    • Going for a hike in the mountains

    • Having a picnic with delicious food

    • Spending time with loved ones

    • Ending the day with a cozy bonfire

  • Answered by AI
  • Q10. How do you like to spend your free time
  • Ans. 

    I enjoy spending my free time outdoors, exploring new hiking trails, biking through scenic routes, and relaxing at the beach.

    • Exploring new hiking trails

    • Biking through scenic routes

    • Relaxing at the beach

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Set goals consider your career goals and the type of jobs you're interested in
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Good conversation
  • Q2. Customer satisfaction
  • Q3. Escalation metrics
  • Q4. Deliver Handed in last company
  • Ans. 

    Implemented new inventory management system to streamline operations and reduce costs.

    • Developed a detailed plan for implementing the new system

    • Collaborated with cross-functional teams to ensure smooth transition

    • Trained staff on how to use the new system effectively

  • Answered by AI
  • Q5. Salary discussion

Team Lead Operations Interview Questions asked at other Companies

Q1. What was thr volume of shipment handled per day in previous designation ?
View answer (19)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

MS EXCEL MCQ QUESTIONS

Round 2 - Group Discussion 

ONLINE OR OFFLINE SHOPPING, WHICH IS BETTER ??

Round 3 - HR 

(3 Questions)

  • Q1. WHAT IS YOUR NAME ?? WHERE DO YOU STAY ?? DO YOU BELONG FROM JOINT FAMILY OR NUCLEAR FAMILY ??? WHAT WAS YOUR SCHOOL NAME ??? WHERE DO YOU COMPLETED YOUR GRADUATION ???
  • Ans. 

    My name is John Doe. I live in New York City. I belong to a nuclear family. I attended XYZ School for my education and completed my graduation at ABC University.

    • Name: John Doe

    • Location: New York City

    • Family: Nuclear family

    • School: XYZ School

    • Graduation: ABC University

  • Answered by AI
  • Q2. DO YOU HAVE ANY PROBLEM IF YOU WILL BE GIVEN POSTING IN NOIDA ???
  • Ans. 

    No, I do not have any problem with being posted in Noida.

    • I am open to new opportunities and challenges in different locations.

    • I am willing to relocate if required for the job.

    • I have experience working in different cities and adapting to new environments.

    • Noida is a growing business hub with many opportunities for professional growth.

  • Answered by AI
  • Q3. DO YOU ABLE TO JOIN FLIPKART ON 15th MARCH 2024 ???
  • Ans. 

    Yes, I am able to join Flipkart on 15th March 2024.

    • I am available to start on the specified date.

    • I have no prior commitments that would prevent me from joining on 15th March 2024.

    • I am excited about the opportunity to work at Flipkart and am ready to start on the given date.

  • Answered by AI
Round 4 - Assignment 

MS EXCEL RELATED MCQ

Interview Preparation Tips

Interview preparation tips for other job seekers - I would like to suggest that please don't apply for job in Flipkart. Very Unprofessional Managers and Toxic Work Culture is there. I worked in Flipkart (NOIDA) for 3 Months (11th March - 23rd May 2024).

SHUVAM GUPTA (KOLKATA)

Top Flipkart Key Account Manager Interview Questions and Answers

Q1. Tell me how will an automobile company launch a car online?
View answer (1)

Key Account Manager Interview Questions asked at other Companies

Q1. What is the reason behind introduction of Loan secure products amongst lenders and Insurance companies.
View answer (5)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 21 Jan 2025

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

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(3 Questions)

  • Q1. How do you gain experience in data analysis?
  • Ans. 

    Gain experience in data analysis through education, internships, projects, and continuous learning.

    • Pursue a degree in a related field such as statistics, mathematics, or computer science.

    • Participate in internships or co-op programs to gain hands-on experience.

    • Work on data analysis projects independently or as part of a team.

    • Take online courses or attend workshops to learn new tools and techniques.

    • Join data analysis com...

  • Answered by AI
  • Q2. What are your thoughts on the matter?
  • Ans. 

    I believe that data analysis is crucial for making informed decisions and driving business growth.

    • Data analysis helps in identifying trends and patterns in data

    • It enables businesses to make data-driven decisions

    • Data analysis can uncover insights that lead to improved strategies and processes

  • Answered by AI
  • Q3. What is algorithm
  • Ans. 

    An algorithm is a set of instructions designed to perform a specific task or solve a particular problem.

    • An algorithm is a step-by-step procedure for solving a problem or accomplishing a task.

    • It can be represented using flowcharts, pseudocode, or programming languages.

    • Algorithms are used in various fields such as computer science, mathematics, and engineering.

    • Examples include sorting algorithms like bubble sort, searchi...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is a data structure?
  • Ans. 

    A data structure is a way of organizing and storing data in a computer so that it can be accessed and modified efficiently.

    • Data structures define the way data is organized and stored in memory.

    • Examples include arrays, linked lists, stacks, queues, trees, and graphs.

    • Different data structures are used for different purposes, such as optimizing search or insertion operations.

  • Answered by AI
  • Q2. What are the different types of data structures available?
  • Ans. 

    Different types of data structures include arrays, linked lists, stacks, queues, trees, and graphs.

    • Arrays: store elements of the same data type in contiguous memory locations

    • Linked lists: elements are stored in nodes with pointers to the next node

    • Stacks: last in, first out data structure

    • Queues: first in, first out data structure

    • Trees: hierarchical data structure with a root node and child nodes

    • Graphs: nodes connected b

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This job vacancy is open exclusively to individuals who have completed their 12th grade or are undergraduate students, with options for part-time or full-time work.

Top Flipkart Data Analyst Interview Questions and Answers

Q1. What are the different types of data structures available?
View answer (1)

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
Contribute & help others!
anonymous
You can choose to be anonymous

Flipkart Interview FAQs

How many rounds are there in Flipkart interview?
Flipkart interview process usually has 2-3 rounds. The most common rounds in the Flipkart interview process are One-on-one Round, HR and Resume Shortlist.
How to prepare for Flipkart 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 SQL, Supply Chain, Operations, Analytical and Stakeholder Management.
What are the top questions asked in Flipkart interview?

Some of the top questions asked at the Flipkart interview -

  1. if you have to make an E way Bill for a shipment, how will you make it and how ...read more
  2. Given an array, how do you get the count of pairs that sum to e...read more
  3. If you have 100 unbiased coins and one of them is defective. You have a weighin...read more
How long is the Flipkart interview process?

The duration of Flipkart interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

REVIEWS

Infosys

No Reviews

REVIEWS

Infosys

No Reviews

REVIEWS

Infosys

No Reviews

REVIEWS

Flipkart

No Reviews

REVIEWS

Flipkart

No Reviews

SALARIES

Infosys

REVIEWS

HDFC Life

No Reviews

REVIEWS

Infosys

No Reviews

SALARIES

Infosys

Tell us how to improve this page.

Flipkart Interview Process

based on 1.2k interviews

Interview experience

4.2
  
Good
View more

HCLTech

A more secure future awaits you

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
BigBasket Interview Questions
3.9
 • 358 Interviews
PolicyBazaar Interview Questions
3.6
 • 346 Interviews
Myntra Interview Questions
4.0
 • 214 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
Tata CLiQ Interview Questions
3.4
 • 15 Interviews
Shopclues Interview Questions
3.9
 • 9 Interviews
Paytm Mall Interview Questions
3.6
 • 7 Interviews
Infibeam Interview Questions
3.1
 • 4 Interviews
View all

Flipkart Reviews and Ratings

based on 10.8k reviews

4.0/5

Rating in categories

3.8

Skill development

3.7

Work-life balance

3.8

Salary

3.8

Job security

3.8

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 10.8k Reviews and Ratings
Key account Manager

Bangalore / Bengaluru

3-8 Yrs

₹ 7-12 LPA

Human Resource Business Partner

Jammu

2-6 Yrs

₹ 1-5 LPA

Explore more jobs
Senior Executive
2.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
1.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
1.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive
1.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Flipkart with

Amazon

4.1
Compare

Myntra

4.0
Compare

Snapdeal

3.8
Compare

Meesho

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent