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 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Flipkart Sdet Interview Questions and Answers

Updated 4 Jun 2015

6 Interview questions

A Sdet was asked
Q. How do you determine if two given linked lists intersect?
Ans. 

To find if two linked lists intersect, traverse both lists and compare their tail nodes.

  • Traverse both linked lists and find their lengths

  • If the lengths are different, move the longer list's head pointer to the difference in length

  • Now traverse both lists and compare their nodes until a common node is found

  • If no common node is found, the lists do not intersect

A Sdet was asked
Q. Write a program to find the angle between the hour and minute hands of a clock, given the time as input. The expected output is the angle in degrees.
Ans. 

Program to find the angle between the hands of a clock given the time.

  • Calculate the angle of the hour hand from 12 o'clock position

  • Calculate the angle of the minute hand from 12 o'clock position

  • Calculate the absolute difference between the two angles

  • If the difference is greater than 180 degrees, subtract it from 360 degrees

  • Return the absolute value of the difference as the angle between the hands

Sdet Interview Questions Asked at Other Companies

Q1. Given an M x N 2D array containing random alphabets and a functio ... read more
asked in InMobi
Q2. Given a line where words are separated by spaces, reverse each wo ... read more
asked in Amazon
Q3. What happens between entering a URL into a browser address bar an ... read more
Q4. Given a circular linked list containing sorted integers, where th ... read more
asked in Flipkart
Q5. Given a sorted array of size 7 containing only 4 elements and ano ... read more
A Sdet was asked
Q. How do you determine if a string is a palindrome?
Ans. 

To check if a string is a palindrome, compare the first and last characters, then move towards the center.

  • Remove all non-alphanumeric characters and convert to lowercase

  • Use two pointers, one starting from the beginning and the other from the end

  • Compare the characters at both pointers, move towards the center until they meet

  • If all characters match, the string is a palindrome

A Sdet was asked
Q. Explain the basic concepts of JOINs in SQL.
Ans. 

JOINS are used to combine rows from two or more tables based on a related column between them.

  • JOINS are used to retrieve data from multiple tables in a single query

  • There are different types of JOINS - INNER, LEFT, RIGHT, FULL OUTER

  • JOINS are based on a related column between the tables

  • Syntax: SELECT * FROM table1 JOIN table2 ON table1.column = table2.column

What people are saying about Flipkart

View All
a news reporter
2w
I knew Flipkart was bad but OH Boy!
Ordered milk via Flipkart Minutes. Got a packet with no expiry, MRP, or mfg. date! Looks like dates are printed after the order but this time, they forgot. 🤦‍♂️ Is Flipkart compromising on food safety in the rush to deliver fast?
FeedCard Image
Got a question about Flipkart?
Ask anonymously on communities.
A Sdet was asked
Q. Given a sorted array of size 7 containing only 4 elements and another sorted array of 3 elements, how would you merge the elements from the second array into the first array while maintaining the sorted ord...
Ans. 

Combine 4 elements of a sorted array of size 7 and a sorted array of 3 elements to make a sorted array.

  • Insert the 3 elements of the smaller array into the larger array

  • Sort the larger array using any sorting algorithm

A Sdet was asked
Q. Given a table of student names and grades, output a table containing each grade and its frequency in descending order.
Ans. 

Calculate the frequency of each grade from a student table and sort it in descending order.

  • Use SQL query: SELECT grade, COUNT(*) as frequency FROM students GROUP BY grade ORDER BY frequency DESC.

  • Example table: | Name | Grade | |-------|-------| | Alice | A | | Bob | B | | Carol | A |

  • Resulting output: | Grade | Frequency | |-------|-----------| | A | 2 | | B | 1 |

Flipkart Sdet Interview Experiences

1 interview found

Sdet Interview Questions & Answers

user image Anonymous

posted on 2 Jun 2015

Interview Questionnaire 

8 Questions

  • Q1. Program to find the angle between the hands of a clock. Input- the time. Expected output- Angle in degrees
  • Ans. 

    Program to find the angle between the hands of a clock given the time.

    • Calculate the angle of the hour hand from 12 o'clock position

    • Calculate the angle of the minute hand from 12 o'clock position

    • Calculate the absolute difference between the two angles

    • If the difference is greater than 180 degrees, subtract it from 360 degrees

    • Return the absolute value of the difference as the angle between the hands

  • Answered by AI
  • Q2. How do you find if given two linked lists intersect or not
  • Ans. 

    To find if two linked lists intersect, traverse both lists and compare their tail nodes.

    • Traverse both linked lists and find their lengths

    • If the lengths are different, move the longer list's head pointer to the difference in length

    • Now traverse both lists and compare their nodes until a common node is found

    • If no common node is found, the lists do not intersect

  • Answered by AI
  • Q3. Explain basic concept of JOINS in sql
  • Ans. 

    JOINS are used to combine rows from two or more tables based on a related column between them.

    • JOINS are used to retrieve data from multiple tables in a single query

    • There are different types of JOINS - INNER, LEFT, RIGHT, FULL OUTER

    • JOINS are based on a related column between the tables

    • Syntax: SELECT * FROM table1 JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q4. If in a given table, consisting of student name and grade, Output a table containing each grade and its frequency in descending order
  • Ans. 

    Calculate the frequency of each grade from a student table and sort it in descending order.

    • Use SQL query: SELECT grade, COUNT(*) as frequency FROM students GROUP BY grade ORDER BY frequency DESC.

    • Example table: | Name | Grade | |-------|-------| | Alice | A | | Bob | B | | Carol | A |

    • Resulting output: | Grade | Frequency | |-------|-----------| | A | 2 | | B | 1 |

  • Answered by AI
  • Q5. Questions regarding my final year project
  • Q6. SQL queries
  • Q7. If you are given a sorted array of size 7 but only 4 elements in it and a sorted array of 3 elements. How would to combine the elements into the first array in such a way that array is sorted
  • Ans. 

    Combine 4 elements of a sorted array of size 7 and a sorted array of 3 elements to make a sorted array.

    • Insert the 3 elements of the smaller array into the larger array

    • Sort the larger array using any sorting algorithm

  • Answered by AI
  • Q8. How do you find if a string is a palindrome or not?
  • Ans. 

    To check if a string is a palindrome, compare the first and last characters, then move towards the center.

    • Remove all non-alphanumeric characters and convert to lowercase

    • Use two pointers, one starting from the beginning and the other from the end

    • Compare the characters at both pointers, move towards the center until they meet

    • If all characters match, the string is a palindrome

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: online test from HackerEarth. It had 3 programming questions, out of which we had to program any two. The questions were: 1) To reverse the words in a given string2) I don’t remember this question properly but was something similar to this…. Finding all the factors of a given number and finding if the one’s position of the factorial and the number were same..

There were 30 other MCQs from aptitude, programming, data structures and algorithms.

After the online test, there were 3 rounds

Round: Technical Interview
Experience: I was given two scenarios to write test cases(apart from UItesting). One was the flipkart coupon textbox from checkout page and the other was the gmail application. He also asked me sql query to remove all duplicates from a table having multiple duplicates.

College Name: NA

Skills evaluated in this interview

Interview questions from similar companies

Sdet Interview Questions & Answers

Amazon user image Anonymous

posted on 25 May 2015

Interview Questionnaire 

4 Questions

  • Q1. Given a singly linked list, write a recursive method to reverse every 3 nodes in the list. He asked me to inform if I have seen the question
  • Ans. 

    Reverse every 3 nodes in a singly linked list using recursion.

    • Create a recursive method that takes the head of the linked list as input.

    • If the head is null or there are less than 3 nodes remaining, return the head.

    • Reverse the first 3 nodes by swapping their pointers.

    • Recursively call the method on the next 3 nodes and update the pointers accordingly.

    • Return the new head of the reversed linked list.

  • Answered by AI
  • Q2. Long discussion on my internship and about the projects I have worked on
  • Q3. Tell about your criticism
  • Q4. 3 weaknesses currently i am working
  • Ans. 

    1. Time management 2. Public speaking 3. Learning new technologies

    • Struggling with time management, often missing deadlines

    • Nervous when speaking in front of large groups

    • Finding it challenging to keep up with the latest technologies in the field

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: On-line Coding Round on Hacker Rank:

1. Given an array of sorted integers which represent box sizes and an integer representing an item size

    You have to find best fit box for the item (-1 in case of no box found)

  For example:

    Given 10,20,30,40,50,60,70 and 45

      You have to print 50

    Given 10,20,30,40,50,60,70 and 75

      You have to print -1

      Given 10,20,30,40,50,60,70 and 50

    You have to print 50

2. -----/

Round: TECHNICAL INTERVIEW
Experience: 1. Given an array of integers

you have to output sequence a1,a2,a3,a4,a5,a6,a7 such that a1a3a5a7

    For example:

    Given 10,20,30,40,50,60,70

      You have to print 10, 30, 20, 50, 40, 70, 60

At first, I gave answer using sorting. But my interviewer asked me to do this without sorting the input array, and I did it.

2. A simple question on Tree data structure which i don’t remember.

3. Questions related to my project.

Round: TECHNICAL INTERVIEW
Experience: 1. A matrix is given which is sorted row wise and column wise

You have to print the sorted order.

    For example:

    Given

       1 2 3 4 6 8

       2 3 3 4 7 8

       2 3 4 5 7 8

       2 3 4 5 8 8

       3 4 4 6 8 9

       4 5 5 7 8 9

    You have to print sorted order

2. Questions related to my project during my internship.

Round: TECHNICAL INTERVIEW
Experience: 1.What happens when we type amazon.com

Relating to this the interviewer asked me every step in detail including all 7 layers of networks.

Protocols like: HTTP, HTTPS, DHCP, DNS, IMAP, POP, TCP, UDP etc. Their uses and differences.

2. Describe ACID property of a transaction (DBMS).

Round: HR Interview
Experience: Given a singly linked list, write a recursive method to reverse every 3 nodes in the list.
He asked me to inform if I have seen the question.I replied : Yes sir, it is the similar question I faced in coding round of Amazon-internship last year.
But he didn’t changed the question.
I solved it with a silly mistake which i corrected when mentioned.

College Name: NA

Skills evaluated in this interview

Sdet Interview Questions Asked at Other Companies

Q1. Given an M x N 2D array containing random alphabets and a functio ... read more
asked in InMobi
Q2. Given a line where words are separated by spaces, reverse each wo ... read more
asked in Amazon
Q3. What happens between entering a URL into a browser address bar an ... read more
Q4. Given a circular linked list containing sorted integers, where th ... read more
asked in Flipkart
Q5. Given a sorted array of size 7 containing only 4 elements and ano ... read more

Sdet Interview Questions & Answers

Amazon user image Anonymous

posted on 25 May 2015

Interview Preparation Tips

College Name: NA

Sdet Interview Questions & Answers

Amazon user image Anonymous

posted on 24 May 2015

Interview Questionnaire 

16 Questions

  • Q1. Project Detail & past experience
  • Q2. Current Technology i am working in
  • Ans. 

    I am currently working with Java and Selenium for test automation.

    • Using Java programming language for writing test scripts

    • Using Selenium WebDriver for automating web applications

    • Integrating with CI/CD tools like Jenkins for continuous testing

    • Working with frameworks like TestNG for test management

    • Using tools like Maven for project management

  • Answered by AI
  • Q3. -----/
  • Q4. Maximum Subsequent distinct & contiguous sub array in a character array
  • Q5. -----/
  • Q6. -----/
  • Q7. Make a stack using 2 given queue
  • Ans. 

    Create a stack using 2 given queues.

    • Push elements into one queue until it is full.

    • When the first queue is full, push new elements into the second queue.

    • To pop an element, remove all elements from the non-empty queue except the last one.

    • Switch the non-empty queue to the other one when it becomes empty.

  • Answered by AI
  • Q8. Some Project Experience & Automation Framework Discussion,which i have worked on
  • Q9. There was some situational questions also for Team work
  • Q10. About DNS Server,Router etc
  • Q11. You are given a web page into that simply one browse button and Image Holder is their.Write the Test Cases for this
  • Ans. 

    Test cases for a web page with a browse button and an image holder.

    • Verify that the browse button is displayed on the page.

    • Check that the image holder is empty before any image is uploaded.

    • Test uploading a valid image file and ensure it appears in the image holder.

    • Attempt to upload an invalid file type (e.g., .txt) and verify an error message is shown.

    • Ensure that the image holder can display various image formats (e.g.,...

  • Answered by AI
  • Q12. You are given application like Google Analytics. How will you test this application ?
  • Ans. 

    Testing Google Analytics involves validating data accuracy, user interface, performance, and integration with other tools.

    • Verify data accuracy by comparing reported metrics with raw data from the source.

    • Test user interface for usability and accessibility, ensuring all elements are intuitive.

    • Conduct performance testing to ensure the application can handle high traffic without degradation.

    • Check integration with other too...

  • Answered by AI
  • Q13. What are the basic features you will add into your own test framework
  • Ans. 

    A test framework should have features like test case management, test data management, reporting, and integration with CI/CD tools.

    • Test case management: Ability to create, organize, and execute test cases.

    • Test data management: Ability to manage test data and generate test data sets.

    • Reporting: Ability to generate detailed test reports with metrics and logs.

    • Integration with CI/CD tools: Ability to integrate with tools li...

  • Answered by AI
  • Q14. How will you check that each page of amazon.com is having its logo or not.he also asked me to write code for this also
  • Ans. 

    To check if each page of Amazon.com has its logo, we can use automated testing with Selenium WebDriver.

    • Use Selenium WebDriver to navigate to each page of Amazon.com

    • Locate the logo element on each page using its XPath or CSS selector

    • Verify that the logo element is displayed on each page

  • Answered by AI
  • Q15. Have you worked on any automation framework or not?
  • Q16. What happen between, when you enter a URL into a browser address bar and hit enter to actually page gets loaded ?
  • Ans. 

    When entering a URL and hitting enter, the browser performs DNS lookup, establishes a TCP connection, sends an HTTP request, receives the response, and renders the page.

    • Browser performs DNS lookup to resolve the domain name to an IP address

    • Browser establishes a TCP connection with the server

    • Browser sends an HTTP request to the server

    • Server processes the request and sends back an HTTP response

    • Browser receives the respon...

  • Answered by AI

Interview Preparation Tips

Round: HR INTERVIEW
Experience: 1. Let’s start with you introduction

In between introduction he asked me about my some project work experience and How have you done?2. Take a integer as a input and replace all the ‘0’ with ‘5’. For example:

102 - 152

1020 - 1525

(Do not use any array for replacing the '0' to '5') 3. You are given two binary tree and write algorithm to check

Are two Binary Trees mirror image of each other?Amazon Interview for SDET @ Hydrabad Development Center

Round: Case Study Interview
Experience: This round was purely for checking Test Framework and Test Case Knowledge.He has given me some scenario and ask to write test cases for them.

Round: HR Interview
Experience: This round was purely a discussion based on past project experience.Like which project do you think that was most difficult and you had a nice experience.
He asked me each progress point of the project.

College Name: NA

Skills evaluated in this interview

What people are saying about Flipkart

View All
a news reporter
2w
I knew Flipkart was bad but OH Boy!
Ordered milk via Flipkart Minutes. Got a packet with no expiry, MRP, or mfg. date! Looks like dates are printed after the order but this time, they forgot. 🤦‍♂️ Is Flipkart compromising on food safety in the rush to deliver fast?
FeedCard Image
Got a question about Flipkart?
Ask anonymously on communities.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - Coding Test 

1 easy coding question and 1 medium coding questions and 20 Multiple choice questions were there

Round 2 - Technical 

(1 Question)

  • Q1. Very interactive and greatful experience
Round 3 - Technical 

(1 Question)

  • Q1. Interactive and greatful experience
Round 4 - HR 

(1 Question)

  • Q1. Discussed about the company.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

MY aptitude round was on naukrii.com , which I cleared.

Round 2 - Technical 

(2 Questions)

  • Q1. Questions were asked on OOPS Concept, Make sure you should have a strong command on oops.
  • Q2. 1 DSA Question and they told me to write the code on whiteboard
Round 3 - Technical 

(2 Questions)

  • Q1. It was technical interview, she asked me about my project and asked me to tell test cases on my project.
  • Q2. 1 dsa question, 2 strings anagram, and other pattern question
Round 4 - Technical 

(2 Questions)

  • Q1. It was with qa lead of infoedge company. she told me to tell test cases of chair.
  • Q2. She asked me about testing and all.
Round 5 - HR 

(1 Question)

  • Q1. AAbhi hua nhi hai, jab hoga toh bata dungi.

I applied via Naukri.com and was interviewed in Aug 2021. There were 4 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. Questions related to selenium, java, TestNG, manual testing
Round 3 - Behavioral 

(1 Question)

  • Q1. Questions related to manual testing and puzzles
Round 4 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why should we hire you?
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Info Edge Sdet interview:
  • Core Java
  • Manual Testing
  • Functional Testing
  • Selenium
  • Testng
  • Framework
  • Automation Testing
  • Collections
Interview preparation tips for other job seekers - Work on hypothetical situations related to automation and test cases creation... Work on basic code syntax and coding problem in Java... Watch videos related to puzzles.
Are these interview questions helpful?

Sdet Interview Questions & Answers

Amazon user image Anonymous

posted on 26 Nov 2021

I applied via Company Website and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. There were total 6 rounds: 3 were Technical Coding rounds(Data Structure Based), Expect questions at least LeetCode medium level. 4th round was a Manager Round, he asked mostly managerial questions with so...

Interview Preparation Tips

Interview preparation tips for other job seekers - Complete experience was good. Interviewers were helpful. Be prepared for Bar Raiser round, this was the round where I faced difficulty to answer questions. And don't expect much questions related to automation. Amazon consider there SDETs equivalent to SDEs.

Sdet Interview Questions & Answers

Amazon user image Anonymous

posted on 18 Oct 2024

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

(1 Question)

  • Q1. First and last occurrence of an element in an array
  • Ans. 

    Find the first and last occurrence of a specific element in an array of strings.

    • Iterate through the array and keep track of the index of the first and last occurrence of the element.

    • Return the index of the first and last occurrence of the element.

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

4 Questions

  • Q1. How will you sale website
  • Q2. How will you generate daily revenue for company
  • Ans. 

    I will generate daily revenue for the company by implementing effective sales strategies and motivating my team to achieve their targets.

    • Developing a sales plan and setting achievable targets

    • Identifying potential customers and reaching out to them through various channels

    • Providing excellent customer service to retain existing customers and generate referrals

    • Motivating and training team members to improve their sales sk...

  • Answered by AI
  • Q3. How will you handle tough time or sales pressure
  • Ans. 

    I approach tough times with resilience, strategic planning, and team collaboration to navigate sales pressure effectively.

    • Maintain a positive mindset: I remind my team that challenges are opportunities for growth. For example, during a sales slump, I encouraged brainstorming sessions to identify new strategies.

    • Set clear goals: I break down larger targets into manageable milestones, making it easier for the team to stay...

  • Answered by AI
  • Q4. How will you handle Target

Interview Preparation Tips

Interview preparation tips for other job seekers - It's easy to join here but tough to survive

Flipkart Interview FAQs

What are the top questions asked in Flipkart Sdet interview?

Some of the top questions asked at the Flipkart Sdet interview -

  1. if you are given a sorted array of size 7 but only 4 elements in it and a sorte...read more
  2. How do you find if a string is a palindrome or n...read more
  3. If in a given table, consisting of student name and grade, Output a table conta...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.4k Interviews
PolicyBazaar Interview Questions
3.7
 • 472 Interviews
BigBasket Interview Questions
3.9
 • 399 Interviews
JustDial Interview Questions
3.5
 • 358 Interviews
Info Edge Interview Questions
3.9
 • 349 Interviews
Eternal Limited Interview Questions
3.7
 • 327 Interviews
Naukri Interview Questions
4.1
 • 200 Interviews
Uber Interview Questions
4.2
 • 155 Interviews
View all
Flipkart Sdet Salary
based on 6 salaries
₹8.2 L/yr - ₹19 L/yr
17% less than the average Sdet Salary in India
View more details
Senior Executive
2.5k salaries
unlock blur

₹2 L/yr - ₹9.1 L/yr

Operations Executive
1.9k salaries
unlock blur

₹1.2 L/yr - ₹7 L/yr

Assistant Manager
1.8k salaries
unlock blur

₹6 L/yr - ₹22.4 L/yr

Team Lead
1.6k salaries
unlock blur

₹1.2 L/yr - ₹10.1 L/yr

Executive
1.4k salaries
unlock blur

₹1.2 L/yr - ₹7 L/yr

Explore more salaries
Compare Flipkart with

Amazon

4.0
Compare

Myntra

3.9
Compare

Snapdeal

3.8
Compare

Meesho

3.7
Compare
write
Share an Interview