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

Flipkart Executive Quality Assurance Interview Questions and Answers for Experienced

Updated 26 May 2023

Flipkart Executive Quality Assurance Interview Experiences for Experienced

1 interview found

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

I applied via Company Website and was interviewed in Apr 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Al about inventory and returns..Mainly regarding damages and how to reduce damages and audits.
  • Q2. What are the types of damages and how returns will be validated
  • Ans. 

    There are two types of damages: visible and concealed. Returns are validated through inspection and testing.

    • Visible damages are those that can be seen with the naked eye, such as scratches or dents.

    • Concealed damages are those that are not immediately visible, such as internal damage or defects.

    • Returns are validated through inspection and testing to determine the extent of the damage and whether it was caused by the cus...

  • Answered by AI
  • Q3. What are the types of audits you have done? What is the accuracy atter audit?
  • Ans. 

    I have conducted internal, external, and supplier audits. Accuracy depends on the scope and objectives of the audit.

    • I have conducted internal audits to assess the effectiveness of the company's quality management system.

    • I have conducted external audits to evaluate the compliance of suppliers with the company's quality standards.

    • I have conducted supplier audits to ensure that the company's suppliers meet the required qu...

  • Answered by AI

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - Assignment 

Test the Application.

Round 2 - Aptitude Test 

Basic aptitude questions.

Round 3 - Technical 

(1 Question)

  • Q1. ISTQB related questions
Round 4 - HR 

(1 Question)

  • Q1. What do you know about India Mart

Interview Preparation Tips

Topics to prepare for Indiamart Intermesh Executive Quality Assurance interview:
  • Software Testing
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is sdlc
  • Ans. 

    SDLC stands for Software Development Life Cycle, a structured process for developing software applications.

    • Phases include: Planning, Analysis, Design, Implementation, Testing, Deployment, and Maintenance.

    • Example: In the Planning phase, project goals and scope are defined.

    • In the Testing phase, software is rigorously tested for bugs and performance issues.

    • Agile and Waterfall are popular SDLC models, each with distinct ap

  • Answered by AI
  • Q2. What is the concept of smoke testing in software testing?
  • Ans. 

    Smoke testing is a preliminary test to check the basic functionality of a software build before further testing.

    • Smoke testing is often referred to as 'build verification testing'.

    • It checks critical functionalities to ensure the build is stable.

    • Example: After a new build, testers verify if the application launches and basic features work.

    • It is usually automated to save time and resources.

    • Smoke tests are not exhaustive;

  • Answered by AI

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. General questions About your self or experience
Round 2 - One-on-one 

(1 Question)

  • Q1. Check your sales skills Selling anything on that time

Interview Preparation Tips

Interview preparation tips for other job seekers - Work culture is awesome
Friendly management
Time to pay
Rotational shift
But yes some corporate poltics there be aware

I applied via Job Portal and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Data structure
  • Q2. Java concepts
  • Q3. Handson coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Get handson in any language but be confident

I applied via Company Website and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Fibonacci series, Prime function, linked lisk value access, query

Interview Preparation Tips

Interview preparation tips for other job seekers - First a test based on amcat. Followed by two technical interview. First Tech Interview basis and overview of you concept of ds and algo will ne asked. In second Tech interview indepth concept of topics such as arrays, linked list, os,algo, etc will be asked. Prepare ds and algo concept, dbms query & concept, internet basis such as protocols, methods,etc.

Best of luck

I applied via Referral

Interview Questionnaire 

2 Questions

  • Q1. How is your last experience with your Manager and firm
  • Q2. Describe the Role for which you came here

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and feel Relax don't panic , Answer properly not fastly

I appeared for an interview in Aug 2017.

Interview Questionnaire 

7 Questions

  • Q1. Implement Merge Sort.
  • Ans. 

    Merge Sort is a divide and conquer algorithm that sorts an array by dividing it into two halves, sorting them separately, and then merging the sorted halves.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

  • Answered by AI
  • Q2. Given a BST containing distinct integers, and a number ‘X’, find all pairs of integers in the BST whose sum is equal to ‘X’.
  • Ans. 

    Find pairs of integers in a BST whose sum is equal to a given number.

    • Traverse the BST and store the values in a hash set.

    • For each node, check if (X - node.value) exists in the hash set.

    • If yes, add the pair (node.value, X - node.value) to the result.

    • Continue traversal until all nodes are processed.

  • Answered by AI
  • Q3. Given a set of time intervals in any order, merge all overlapping intervals into one and output the result which should have only mutually exclusive intervals.
  • Ans. 

    Merge overlapping time intervals into mutually exclusive intervals.

    • Sort the intervals based on their start time.

    • Iterate through the intervals and merge overlapping intervals.

    • Output the mutually exclusive intervals.

    • Example: [(1,3), (2,6), (8,10), (15,18)] -> [(1,6), (8,10), (15,18)]

  • Answered by AI
  • Q4. What are the different types of hashing? Suggest an alternative and a better way for Linear Chaining.
  • Ans. 

    Different types of hashing and alternative for Linear Chaining

    • Different types of hashing include division, multiplication, and universal hashing

    • Alternative for Linear Chaining is Open Addressing

    • Open Addressing includes Linear Probing, Quadratic Probing, and Double Hashing

  • Answered by AI
  • Q5. Implement AVL Tree.
  • Ans. 

    An AVL tree is a self-balancing binary search tree where the heights of the left and right subtrees differ by at most one.

    • AVL tree is a binary search tree with additional balance factor for each node.

    • The balance factor is the difference between the heights of the left and right subtrees.

    • Insertion and deletion operations in AVL tree maintain the balance factor to ensure the tree remains balanced.

    • Rotations are performed ...

  • Answered by AI
  • Q6. Minimum number of squares whose sum equals to given number n.
  • Ans. 

    Find the minimum number of squares whose sum equals to a given number n.

    • Use dynamic programming to solve the problem efficiently.

    • Start with finding the square root of n and check if it is a perfect square.

    • If not, then try to find the minimum number of squares required for the remaining number.

    • Repeat the process until the remaining number becomes 0.

    • Return the minimum number of squares required for the given number n.

  • Answered by AI
  • Q7. Insertion sort for a singly linked list.
  • Ans. 

    Insertion sort for a singly linked list.

    • Traverse the list and compare each node with the previous nodes

    • If the current node is smaller, swap it with the previous node

    • Repeat until the end of the list is reached

    • Time complexity is O(n^2)

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 2 coding questions (no penalty for wrong submission) and 20 Multiple Choice Questions(with negative marking). We were given 90 minutes to solve them. MCQs were based on Data Structures, OS, CN, C outputs, OOP etc.
Tips: Experience in Competitive Programming might help in solving coding questions. No constraints were mentioned and detailed Instructions related to problem were stated vaguely. So code carefully.
Duration: 1 hour 30 minutes
Total Questions: 22

Round: Technical Interview
Experience: The interviewer asked me to introduce myself and a brief introduction of the projects that I have done. She first asked me questions related to my project. After that she moved on to the data structures part.
Tips: Take your time to approach the problems and if the question is not clear ask the interviewer to explain it again.

Round: Technical Interview
Experience: The interviewer asked me about how my previous round went. After that, he asked me to introduce myself and a brief introduction of the projects that I have done. He first asked me a few questions related to my project. Then he moved on to the data structures part. In this round the interviewer gave me strict time limit for coding the solution on paper for each problem and as soon as I was done coding he gave me 2-3 minutes every time to find errors and debug my code.
Tips: Do not panic even if the interviewer sets time limit while solving problems. If the question is not clear ask the interviewer to explain it again.

College Name: The LNM Institute Of Information Technology, Jaipur

Skills evaluated in this interview

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

Interview Questionnaire 

2 Questions

  • Q1. I went as a fresher for the job. They asked me technical skills and good cummication skills.
  • Q2. I am interested to do in it

Interview Preparation Tips

Interview preparation tips for other job seekers - I am bathula suresh yadav from medchal
I am pursuing my graduation final year (bcom
Computer)
I have technical skills and good at computer knowledge
I have good cummication skills
Thanking you
Yours careingly

I applied via Campus Placement

Interview Preparation Tips

Round: Resume Shortlist
Experience: They selected 10 students from our college from CS and IT .They are looking for guys with extra projects done during college .App development will be a bonus ,contribution to open source and competitive programming will help for shortlisting.
Some of my friends had research papers published and they too got selected.

Round: Test
Experience: Have to write code snippet for 4 questions in 45 minutes
1.Difference between hour hand and minute hand
2.longest palindromic sub string.
3.Product Array puzzle
4.Some question related to matrix

Tips: All question were from geeksforgeeks
So practice it well ..u will make through it

Round: Test
Experience: Long Discussion on projects
They will scan each and every line of your Resume ,so dont write bullshits..
I wrote about interest in AI and got screwed..Discussion on college projects and final year project.
Then asked me to design a snake and ladder game OOPS concepts
Told me to find sum of all elements of sub matrix..(hint pre-processing the matrix)
Asked me about sessions and cookies
Gave a query to write on database indexing (dont remember exactly)
Asked me the code of the difference between hour hand and minute hand and extended it wid the second hand
Asked me as how to implement a dictionary
asked about TRIES ,CODE SNIPPET ON THE SHARED DOCS
One of my friend was asked to implement (set) of STL
Tips: The interviewer was cool guy..helped me a lot always made me comfortable.Interact with them as much as possible

Round: Test
Experience: Wid the CTO of the company .
Started wid the projects again .ACID properties,Database transactions,Concurrency Control
Optimization in database.
Then he asked me to code a function
Given a hash function applied on letters of English words ,un-hash it.Took me 45 minutes to reach the solution ,he helped me a lot.
Asked me to write the code for diameter of a binary tree
Asked me write the code for Boolean Matrix
One of my friend was asked to a question in which there was a bug in a m*n matrix and we have to find the bug(hint dfs or bfs)
Tips: keep calm ,,just keep talking ad he will help u a lot...

Round: HR
Experience: This was the toughest round for me...I had cleared all the rounds but they rejected me in the HR round ,,,dont know where I screwed..Learn every thing of Zomato..
They offered me an internship and thereafter they would look to give a PPO ...!!!lets see what happens

Skills: Coding Skills And Knowledge On Data Structures
Duration: 3
College Name: NIT Srinagar

Flipkart Interview FAQs

How many rounds are there in Flipkart Executive Quality Assurance interview for experienced candidates?
Flipkart interview process for experienced candidates usually has 2 rounds. The most common rounds in the Flipkart interview process for experienced candidates are Resume Shortlist and Technical.
What are the top questions asked in Flipkart Executive Quality Assurance interview for experienced candidates?

Some of the top questions asked at the Flipkart Executive Quality Assurance interview for experienced candidates -

  1. What are the types of damages and how returns will be valida...read more
  2. What are the types of audits you have done? What is the accuracy atter aud...read more
  3. Al about inventory and returns..Mainly regarding damages and how to reduce dama...read more

Tell us how to improve this page.

Flipkart Executive Quality Assurance Interview Process for Experienced

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.1k Interviews
PolicyBazaar Interview Questions
3.6
 • 387 Interviews
BigBasket Interview Questions
3.9
 • 365 Interviews
JustDial Interview Questions
3.5
 • 334 Interviews
Info Edge Interview Questions
3.9
 • 327 Interviews
Zomato Interview Questions
3.7
 • 312 Interviews
Naukri Interview Questions
4.0
 • 188 Interviews
Uber Interview Questions
4.2
 • 149 Interviews
MakeMyTrip Interview Questions
3.6
 • 125 Interviews
View all
Flipkart Executive Quality Assurance Salary
based on 54 salaries
₹2.9 L/yr - ₹5.2 L/yr
23% less than the average Executive Quality Assurance Salary in India
View more details

Flipkart Executive Quality Assurance Reviews and Ratings

based on 14 reviews

3.8/5

Rating in categories

4.2

Skill development

4.0

Work-life balance

3.3

Salary

4.1

Job security

4.0

Company culture

2.9

Promotions

3.7

Work satisfaction

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

₹2 L/yr - ₹9 L/yr

Team Lead
1.8k salaries
unlock blur

₹1.2 L/yr - ₹10 L/yr

Operations Executive
1.8k salaries
unlock blur

₹1.2 L/yr - ₹6.3 L/yr

Assistant Manager
1.6k salaries
unlock blur

₹5.9 L/yr - ₹21 L/yr

Data Entry Operator
1.5k salaries
unlock blur

₹0.6 L/yr - ₹4 L/yr

Explore more salaries
Compare Flipkart with

Amazon

4.0
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