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

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Clear (1)

Flipkart Internship Trainee Interview Questions and Answers

Updated 2 Nov 2023

Flipkart Internship Trainee Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

The test was quite easy.

Round 2 - Technical 

(1 Question)

  • Q1. What is Supply chain management
  • Ans. 

    Supply chain management involves the coordination and optimization of all activities involved in the production and distribution of goods and services.

    • Involves planning, sourcing, manufacturing, and delivering products to customers

    • Focuses on efficiency, cost reduction, and customer satisfaction

    • Includes activities such as inventory management, logistics, and procurement

    • Examples: Walmart's efficient supply chain manageme...

  • Answered by AI

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical aptitude
Basic SCM
English

Round 2 - Interview 

(1 Question)

  • Q1. Based on your CV. Techinical/business interview
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to join in scm profile after doing btech
  • Ans. 

    I want to join in SCM profile after doing BTech because it aligns with my interest in logistics and supply chain management.

    • I have always been fascinated by the intricate processes involved in managing the flow of goods and services.

    • During my BTech, I took elective courses in operations management and logistics, which further sparked my interest in SCM.

    • I believe that SCM plays a crucial role in optimizing efficiency, r...

  • Answered by AI
  • Q2. Can you explain about your first internship
  • Ans. 

    My first internship was at a marketing agency where I gained experience in digital marketing and social media management.

    • Worked closely with the marketing team to create and implement social media campaigns

    • Assisted in analyzing data and metrics to measure the success of marketing strategies

    • Learned how to use various digital marketing tools and platforms such as Google Analytics and Hootsuite

    • Contributed to content creat...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thoroughly prepared with your CV and make a solid introduction

Internship Trainee Interview Questions Asked at Other Companies

asked in ESAB
Q1. Tell about your UG project? How will you design a table for 1 ton ... read more
Q2. what you know abiu the technology that you are apply
Q3. What are the difgerent wavelengths at which optical fibre communi ... read more
Q4. What are timers im Microprocessor amd how can you trigger them?
Q5. How can you solve the issue if there is a network failure in the ... read more

Interview questions from similar companies

I applied via Referral

Interview Questionnaire 

13 Questions

  • Q1. I was asked to derive the time complexity of my code from the written test. It was to print the elements of a binary tree in spiral order
  • Q2. Program to swap two pointers
  • Ans. 

    A program to swap two pointers.

    • Declare two pointers of the same data type

    • Assign the first pointer to a temporary variable

    • Assign the second pointer to the first pointer

    • Assign the temporary variable to the second pointer

  • Answered by AI
  • Q3. Program to determine whether a given binary tree is binary search tree. I was asked to solve this in two different ways
  • Q4. Two DBMS queries involving aggregate functions
  • Q5. Program to implement Dijkstra’s algorithm
  • Ans. 

    Dijkstra's algorithm finds shortest path between nodes in a graph

    • Create a graph with nodes and edges

    • Initialize distances from source node to all other nodes as infinity

    • Set distance from source node to itself as 0

    • Create a set of unvisited nodes

    • While unvisited set is not empty, select node with minimum distance

    • For each neighbor of selected node, calculate distance from source node

    • If calculated distance is less than curre...

  • Answered by AI
  • Q6. Program to implement Floyd­Warshall’s agorithm
  • Ans. 

    Floyd-Warshall's algorithm is used to find the shortest path between all pairs of vertices in a weighted graph.

    • Create a 2D array to store the distances between all pairs of vertices.

    • Initialize the array with the weights of the edges in the graph.

    • Use nested loops to iterate over all pairs of vertices and update the distances if a shorter path is found through a third vertex.

    • The final array will contain the shortest dist

  • Answered by AI
  • Q7. Program to print the elements of a matrix in spiral order recursively
  • Ans. 

    Program to print matrix elements in spiral order recursively

    • Create a recursive function to print the elements in spiral order

    • Define the boundaries of the matrix and traverse the matrix in spiral order

    • Call the recursive function to print the elements in spiral order

    • Handle edge cases such as empty matrix or matrix with only one row/column

  • Answered by AI
  • Q8. Given an unsorted array of numbers, find two numbers which add up to the given sum in O(n)
  • Ans. 

    Find two numbers in an unsorted array that add up to a given sum in O(n)

    • Use a hash table to store the difference between the sum and each element in the array

    • Iterate through the array and check if the current element is in the hash table

    • If it is, return the current element and the corresponding difference

    • If not, add the current element to the hash table

  • Answered by AI
  • Q9. Explain indexing in DBMS
  • Ans. 

    Indexing is a technique used in DBMS to improve the performance of queries.

    • Indexing creates a separate data structure that allows faster retrieval of data.

    • It works by creating a pointer to the location of data in the table.

    • Indexes can be created on one or more columns of a table.

    • Types of indexing include B-tree, hash, and bitmap indexing.

    • Indexes can also be clustered or non-clustered.

    • Clustered indexes determine the phy...

  • Answered by AI
  • Q10. Explain B and B+ trees
  • Ans. 

    B and B+ trees are data structures used for efficient searching and sorting of large datasets.

    • B trees are balanced trees used for disk-based storage systems.

    • B+ trees are similar to B trees but have all data stored in the leaf nodes for faster searching.

    • B trees have a variable number of keys per node, while B+ trees have a fixed number.

    • B trees have a higher fanout than B+ trees, making them more efficient for smaller da...

  • Answered by AI
  • Q11. Given a binary tree, write a program to determine whether there exists a root to leaf path having the given sum
  • Q12. Program to find the lowest common ancestor of two nodes in binary search tree as well as binary tree. I was also asked to give the brute force approach for the same
  • Ans. 

    Program to find lowest common ancestor of two nodes in binary search tree and binary tree with brute force approach.

    • For binary search tree, traverse from root to both nodes and store the path. Then compare paths to find LCA.

    • For binary tree, traverse from root to both nodes and store the path. Then compare paths to find LCA.

    • Brute force approach involves checking each node's descendants to see if they contain both nodes.

    • ...

  • Answered by AI
  • Q13. Program to print all ancestors of a node in a binary tree
  • Ans. 

    Program to print all ancestors of a node in a binary tree

    • Create a recursive function to traverse the binary tree

    • Check if the current node is the target node

    • If yes, print all the nodes in the call stack

    • If not, recursively call the function for left and right subtrees

  • Answered by AI

Interview Preparation Tips

Skills:
College Name: NA

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. Introduction,
  • Q2. Why amazon
  • Ans. 

    Amazon offers a diverse and innovative work environment with opportunities for growth and impact.

    • Amazon is a global leader in e-commerce, cloud computing, and artificial intelligence.

    • The company values customer obsession and strives to provide the best possible experience.

    • Amazon fosters a culture of innovation and encourages employees to think big and take risks.

    • There are numerous career development opportunities and c...

  • Answered by AI
  • Q3. What you after passing out till date
  • Ans. 

    I have been actively pursuing opportunities to gain experience and develop my skills since graduating.

    • Completed an internship at XYZ Company, where I gained hands-on experience in project management.

    • Attended several professional development workshops and seminars to enhance my knowledge in the field.

    • Volunteered at a local non-profit organization, where I honed my communication and leadership skills.

    • Enrolled in online c...

  • Answered by AI
  • Q4. Share the example of any difficult situation and how did you deal with it
  • Ans. 

    During a project, a team member quit abruptly. I had to take over their responsibilities and ensure the project was completed on time.

    • Assessed the remaining workload and prioritized tasks

    • Communicated with the team and stakeholders to update them on the situation

    • Worked extra hours to ensure the project was completed on time

    • Provided support and guidance to team members who were affected by the sudden change

    • Evaluated the ...

  • Answered by AI

I applied via Company Website and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. General knowledge question

Interview Preparation Tips

Interview preparation tips for other job seekers - General knowledge question

Interview Questionnaire 

1 Question

  • Q1. Data structures, thoroughly

I applied via Recruitment Consultant and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. DS Algo Questions on Trees. Leadership Principles

Interview Preparation Tips

Interview preparation tips for other job seekers - Read up on DS Algo and white paper coding and Leadership Principles

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Q2. What do you expect from Amazon?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Associate Interview Questions & Answers

Amazon user image Arshiya Saba

posted on 10 Sep 2020

I applied via Company Website and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic Q & A

Interview Preparation Tips

Interview preparation tips for other job seekers - First-round I had English grammatical questions following that it took me to speech recognition, listen and type or type & email drafting. all you need is a calm mind and peaceful place and your set to go.

I applied via Recruitment Consultant and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. There were so many questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - The very important point which everyone should keep in their mind is to stay CONFIDENT while giving any interview, this might be the basic thing but i know how important this is.. Whatever you say, whether your intro or about any skill staying confident is must.
Contribute & help others!
anonymous
You can choose to be anonymous

Flipkart Interview FAQs

How many rounds are there in Flipkart Internship Trainee interview?
Flipkart interview process usually has 3 rounds. The most common rounds in the Flipkart interview process are Aptitude Test, HR and Resume Shortlist.
How to prepare for Flipkart Internship Trainee 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 Accounting and MIS.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

IBM

No Interviews

INTERVIEWS

Tech Mahindra

No Interviews

INTERVIEWS

Merrill Technology Services

No Interviews

INTERVIEWS

Veda Corporate Advisors

No Interviews

INTERVIEWS

Bounteous x Accolite

No Interviews

INTERVIEWS

Capgemini

No Interviews

SALARIES

Bounteous x Accolite

DESIGNATION

Tell us how to improve this page.

Flipkart Internship Trainee Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
BigBasket Interview Questions
3.9
 • 359 Interviews
PolicyBazaar Interview Questions
3.6
 • 348 Interviews
JustDial Interview Questions
3.5
 • 328 Interviews
Info Edge Interview Questions
3.9
 • 316 Interviews
Zomato Interview Questions
3.8
 • 312 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Naukri Interview Questions
4.0
 • 185 Interviews
Uber Interview Questions
4.2
 • 149 Interviews
View all
Flipkart Internship Trainee Salary
based on 4 salaries
₹3.4 L/yr - ₹4.1 L/yr
20% more than the average Internship Trainee Salary in India
View more details

Flipkart Internship Trainee Reviews and Ratings

based on 8 reviews

4.1/5

Rating in categories

4.5

Skill development

3.7

Work-life balance

3.8

Salary

4.0

Job security

4.4

Company culture

3.4

Promotions

3.5

Work satisfaction

Explore 8 Reviews and Ratings
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