Upload Button Icon Add office photos
Engaged Employer

i

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

Fynd Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Fynd Interview Questions, Process, and Tips

Updated 21 Feb 2025

Top Fynd Interview Questions and Answers

View all 49 questions

Fynd Interview Experiences

Popular Designations

59 interviews 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 before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Basic javascript concepts like closures, promises etc. 2. Basic OS, Networking, DBMS concepts 3. Easy coding questions based on strings
Round 2 - Technical 

(1 Question)

  • Q1. 1. Easy string coding question 2. MongoDB concepts like indexing 3. Project related questions
Round 3 - HR 

(1 Question)

  • Q1. 1. Salary and location information

Graduate Trainee Interview Questions asked at other Companies

Q1. Given an array, how do you get the count of pairs that sum to even
View answer (8)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Current work experience
  • Ans. 

    I have 5 years of experience as a Product Manager in the tech industry.

    • Led cross-functional teams to successfully launch multiple products

    • Developed product roadmaps and strategies based on market research and customer feedback

    • Managed product lifecycle from ideation to launch and post-launch optimization

  • Answered by AI

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)

I applied via LinkedIn and was interviewed in May 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. What are callback functions in Javascript?
  • Ans. 

    Callback functions are functions passed as arguments to another function and executed later when the parent function is done.

    • Callback functions are used for asynchronous programming in JavaScript.

    • They are commonly used in event handling, AJAX requests, and timeouts.

    • Callback functions can be named or anonymous.

    • Example: setTimeout(function() { console.log('Hello, world!'); }, 1000);

  • Answered by AI
  • Q2. What are promises in Javascript?
  • Ans. 

    Promises are objects that represent the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript

    • They provide a way to execute code asynchronously and handle the result when it's ready

    • Promises have three states: pending, fulfilled, or rejected

    • They can be chained together using .then() and .catch() methods

    • Promises help avoid callback hell and make code

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared at both basic skills and advanced skills as well. Basics will take you to next round.

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (181)

Platform Engineer Interview Questions & Answers

user image Parikshit Chalke

posted on 5 May 2022

I applied via Recruitment Consulltant and was interviewed in Nov 2021. There were 5 interview rounds.

Round 1 - Coding Test 

Topics - Problem solving. Coding problems. Tree. Hashmap.
Duration - 1 hr

Round 2 - Technical 

(2 Questions)

  • Q1. System design for Coffee vending machine.
  • Ans. 

    Designing a coffee vending machine system.

    • Identify the types of coffee to be offered

    • Determine the payment methods (cash, card, mobile payment)

    • Select the appropriate hardware components (dispenser, grinder, etc.)

    • Develop software for user interface and payment processing

    • Implement sensors for inventory management

    • Ensure regular maintenance and cleaning

    • Consider energy efficiency and sustainability

  • Answered by AI
  • Q2. Software design patterns
Round 3 - Coding Test 

Topics - Coding problems, OOPS, Advance database concepts, Kafka, System design

Round 4 - Technical 

(3 Questions)

  • Q1. System design patterns
  • Q2. Concurrency management
  • Q3. Scaling patterns for distributed system.
  • Ans. 

    Scaling patterns for distributed system

    • Horizontal scaling - adding more instances of the same component

    • Vertical scaling - increasing the resources of a single instance

    • Sharding - partitioning data across multiple nodes

    • Caching - storing frequently accessed data in memory

    • Load balancing - distributing traffic across multiple nodes

    • Auto-scaling - automatically adjusting resources based on demand

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

(1 Question)

  • Q1. Personality questions

Interview Preparation Tips

Topics to prepare for Fynd Platform Engineer interview:
  • System Design
  • Problem Solving
  • Devops
Interview preparation tips for other job seekers - Apply only you are good in problem solving and have good practical understanding of system design.

Skills evaluated in this interview

Platform Engineer Interview Questions asked at other Companies

Q1. Palindrome Linked List Problem Statement You are provided with a singly linked list of integers. Your task is to determine whether the given singly linked list is a palindrome. Return true if it is a palindrome, otherwise return false. Exam... read more
Add answer

Fynd interview questions for popular designations

 Software Developer

 (8)

 Front end Developer

 (4)

 Product Manager

 (4)

 Software Engineer

 (4)

 Software Development Engineer

 (3)

 Data Scientist

 (2)

 Engineering Manager

 (2)

 Graduate Trainee

 (2)

I applied via LinkedIn and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me About yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Good technical round and great smooth process

Technical Operations Engineer Interview Questions asked at other Companies

Q1. 3) What is Two Factor Authentication and why do we need token
View answer (1)

Get interview-ready with Top Fynd Interview Questions

I applied via LinkedIn and was interviewed before Jul 2021. There were 4 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Find count of words in a sentence using Map
  • Ans. 

    Count words in a sentence using Map

    • Split the sentence into an array of words

    • Create a Map object

    • Loop through the array and add each word as a key to the map with a value of 1

    • If the word already exists in the map, increment its value by 1

    • Return the map

  • Answered by AI
  • Q2. Exceptions, waits in Selenium
  • Ans. 

    Exceptions and waits are important concepts in Selenium for handling errors and synchronization.

    • Exceptions are used to handle errors that occur during test execution.

    • Selenium provides various types of waits like implicit, explicit, and fluent waits to synchronize test execution with the application.

    • Implicit waits wait for a certain amount of time before throwing an exception if the element is not found.

    • Explicit waits w...

  • Answered by AI
  • Q3. Test cases for a lift
  • Ans. 

    Test cases for a lift

    • Test if the lift moves up and down

    • Test if the lift stops at each floor

    • Test if the lift door opens and closes properly

    • Test if the lift can handle maximum weight capacity

    • Test if the emergency stop button works

    • Test if the lift can handle power failure

    • Test if the lift has proper ventilation and lighting

  • Answered by AI
Round 2 - Coding Test 

API Automation coding round, fetch an attribute from response and use it in another request

Round 3 - Lead Round 

(1 Question)

  • Q1. Questions on product mindset, automation framework design
Round 4 - HR 

(1 Question)

  • Q1. Generic HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good understanding for core automation concepts, practice basic problems on LeetCode

Skills evaluated in this interview

Software Development Engineer Test Interview Questions asked at other Companies

Q1. Tell me about yourself What is Software What is Framework What are the characteristics of Software What are different SDLC models available? What is Debugging? Difference between Validation and Verification? What is Software Scope? What are... read more
View answer (1)

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

Round 1 - Technical 

(1 Question)

  • Q1. Data Structures and Algorithms
Round 2 - Technical 

(1 Question)

  • Q1. Data Structures and Algorithms
Round 3 - One-on-one 

(1 Question)

  • Q1. System design and DS Algorithm
Round 4 - FOUNDER ROUND 

(1 Question)

  • Q1. Culture fit and organisations related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be real be confident and ready to learn new technologies

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)

I applied via Recruitment Consulltant and was interviewed in Dec 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How to connect kubernetes pod How to create unit test plan Do you know how to create use cases Do you know how to create test templates
  • Ans. 

    Answering questions related to Kubernetes pod connection, unit test plan creation, use case and test template creation.

    • To connect to a Kubernetes pod, use kubectl command-line tool or API calls

    • To create a unit test plan, identify the test cases, define the expected results, and create test scripts

    • To create use cases, identify the user's goals, define the steps to achieve them, and document the scenarios

    • To create test t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place to work and grow but beware of weird office politics

Skills evaluated in this interview

Production Support Engineer Interview Questions asked at other Companies

Q1. What is a role of support engineer
View answer (2)

I applied via Naukri.com and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. About your self about your education about your past company experience how benefit our company
  • Q2. Job releted question & current company about question
  • Q3. Sales related questions
  • Q4. How communication with customer
  • Ans. 

    Communication with customers is key to successful sales. It involves active listening, clear messaging, and building rapport.

    • Active listening to understand customer needs and concerns

    • Clear messaging to convey product benefits and value proposition

    • Building rapport to establish trust and long-term relationships

    • Using appropriate communication channels (phone, email, in-person) based on customer preference

    • Following up prom...

  • Answered by AI
  • Q5. How promote products
  • Ans. 

    Promoting products involves identifying target audience, creating compelling messaging, utilizing various marketing channels, and building relationships.

    • Identify target audience and their needs

    • Create compelling messaging that highlights product benefits

    • Utilize various marketing channels such as social media, email marketing, and advertising

    • Build relationships with potential customers through networking and follow-up

    • Off...

  • Answered by AI
  • Q6. Supposed products our product are damage delivered to customers how handle situation with customer
  • Ans. 

    Handle the situation with empathy and offer a solution to the customer.

    • Apologize for the inconvenience caused to the customer.

    • Assure the customer that the issue will be resolved as soon as possible.

    • Offer a solution such as a replacement or refund.

    • Follow up with the customer to ensure their satisfaction.

    • Take steps to prevent similar issues from happening in the future.

  • Answered by AI
  • Q7. And how handle customer
  • Ans. 

    I handle customers by actively listening to their needs and providing personalized solutions.

    • Actively listen to customer needs

    • Provide personalized solutions

    • Be empathetic and understanding

    • Maintain a positive attitude

    • Follow up with customers to ensure satisfaction

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Everyone please improve our English speaking & improve our communication skills

Sales Executive Interview Questions asked at other Companies

Q1. Do you know what is selling and how you can sell it?
View answer (51)

Fynd Interview FAQs

How many rounds are there in Fynd interview?
Fynd interview process usually has 1-2 rounds. The most common rounds in the Fynd interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Fynd 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 Fynd. The most common topics and skills that interviewers at Fynd expect are Python, Javascript, Flex, MongoDB and Sales.
What are the top questions asked in Fynd interview?

Some of the top questions asked at the Fynd interview -

  1. Write code to print numbers 1 to n where each number i should get printed after...read more
  2. System design for Coffee vending machi...read more
  3. What is async programming and why it is to be us...read more
How long is the Fynd interview process?

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

Tell us how to improve this page.

Fynd Interview Process

based on 57 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
BigBasket Interview Questions
3.9
 • 356 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Blinkit Interview Questions
3.7
 • 182 Interviews
Globant Interview Questions
3.8
 • 171 Interviews
Nykaa Interview Questions
3.5
 • 114 Interviews
Snapdeal Interview Questions
3.8
 • 76 Interviews
Shopclues Interview Questions
3.9
 • 9 Interviews
Paytm Mall Interview Questions
3.6
 • 7 Interviews
View all

Fynd Reviews and Ratings

based on 385 reviews

3.5/5

Rating in categories

3.6

Skill development

3.3

Work-life balance

3.8

Salary

3.0

Job security

3.3

Company culture

3.4

Promotions

3.3

Work satisfaction

Explore 385 Reviews and Ratings
Software Development Engineer
83 salaries
unlock blur

₹8 L/yr - ₹27 L/yr

Software Development Engineer 1
77 salaries
unlock blur

₹9 L/yr - ₹27 L/yr

Software Developer
66 salaries
unlock blur

₹7.5 L/yr - ₹30 L/yr

Software Development Engineer II
59 salaries
unlock blur

₹20 L/yr - ₹46 L/yr

Software Engineer
48 salaries
unlock blur

₹7 L/yr - ₹25.5 L/yr

Explore more salaries
Compare Fynd with

Myntra

4.0
Compare

Flipkart

4.0
Compare

Snapdeal

3.8
Compare

Shopclues

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview