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 and Answers

Updated 4 Jul 2025
Popular Designations

60 Interview questions

A Software Development Engineer 3 was asked 3w ago
Q. How would you flatten a JSON object in NodeJS with optimal complexity?
Ans. 

Flattening JSON in Node.js involves converting nested objects into a single-level object with dot notation keys.

  • Use recursion to traverse nested objects and build a flat structure.

  • Example: { a: { b: 1 } } becomes { 'a.b': 1 }.

  • Utilize a helper function to manage the current path as you iterate.

  • Consider edge cases like arrays and null values.

  • Optimize by avoiding unnecessary object copies.

View all Software Development Engineer 3 interview questions
A Software Developer was asked 2mo ago
Q. What is an object in Python?
Ans. 

In Python, an object is an instance of a class that encapsulates data and behavior.

  • Everything in Python is an object, including functions and classes.

  • Objects have attributes (data) and methods (functions) associated with them.

  • Example: Creating a simple class and object: class Dog: def bark(self): return 'Woof!' my_dog = Dog() my_dog.bark() # Outputs: 'Woof!'

  • Objects can be mutable (like lists) or immut...

View all Software Developer interview questions
A Software Developer was asked 2mo ago
Q. What are classes in Python?
Ans. 

Classes in Python are blueprints for creating objects, encapsulating data and behavior in a structured way.

  • Classes define a new data type that can have attributes (data) and methods (functions).

  • Example: class Dog: def bark(self): return 'Woof!'

  • Instances of classes are created using the class name followed by parentheses.

  • Example: my_dog = Dog() creates an instance of the Dog class.

  • Classes support inheritance, allow...

View all Software Developer interview questions
A Front end Engineer was asked 4mo ago
Q. Write a program to reverse a string without using any built-in methods in JavaScript. (Two-pointer and One-pointer)
Ans. 

Program to reserve a string without using inbuilt methods in JavaScript

  • Use two pointers to swap characters at the beginning and end of the string until they meet in the middle

  • Create a function that takes a string as input and returns the reversed string

  • Example: Input 'hello', Output 'olleh'

View all Front end Engineer interview questions
A Front end Engineer was asked 4mo ago
Q. Implement traffic light functionality using HTML, CSS, and Vanilla JavaScript. Initially, the light should be RED. After 60 seconds, it should turn GREEN, then after 5 seconds, YELLOW, and after 3 seconds, ...
Ans. 

Implement Traffic Light functionality using HTML+CSS+Vanilla Javascript

  • Create HTML elements for the traffic light

  • Use CSS to style the elements to represent the different lights (red, green, yellow)

  • Use Vanilla Javascript to toggle the lights based on the specified time intervals

View all Front end Engineer interview questions
A Software Development Engineer was asked 6mo ago
Q. Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use ...
Ans. 

The Two Sum problem involves finding two numbers in an array that add up to a specific target sum.

  • Use a hash map to store numbers and their indices for quick lookup.

  • Iterate through the array, checking if the complement (target - current number) exists in the hash map.

  • Example: For nums = [2, 7, 11, 15] and target = 9, return indices [0, 1] since 2 + 7 = 9.

  • Time complexity is O(n) due to a single pass through the arr...

View all Software Development Engineer interview questions
A Data Scientist was asked 7mo ago
Q. Explain LSTM and how it can be used for forecasting.
Ans. 

LSTM (Long Short-Term Memory) is a type of recurrent neural network that is capable of learning long-term dependencies.

  • LSTM is designed to overcome the vanishing gradient problem in traditional RNNs.

  • It has three gates: input gate, forget gate, and output gate, which control the flow of information.

  • LSTM is commonly used for time series forecasting, such as predicting stock prices or weather patterns.

  • To use LSTM for...

View all Data Scientist interview questions
Are these interview questions helpful?
A Data Scientist was asked 7mo ago
Q. Explain the encoder-decoder architecture.
Ans. 

Encoder-decoder is a neural network architecture used for tasks like machine translation and image captioning.

  • Encoder processes input data and generates a fixed-length representation

  • Decoder takes the representation and generates output data

  • Commonly used in tasks like machine translation (e.g. translating English to French) and image captioning

View all Data Scientist interview questions
A Data Scientist was asked 7mo ago
Q. Why is cross-entropy loss used in classification instead of SSE?
Ans. 

Cross entropy loss is used in classification because it penalizes incorrect classifications more heavily, making it more suitable for classification tasks compared to SSE.

  • Cross entropy loss is more suitable for classification tasks because it penalizes incorrect classifications more heavily than SSE.

  • Cross entropy loss is commonly used in scenarios where the output is a probability distribution, such as in multi-cl...

View all Data Scientist interview questions
A Data Scientist was asked 7mo ago
Q. How does RNN work?
Ans. 

RNN is a type of neural network that can process sequential data by retaining memory of previous inputs.

  • RNN stands for Recurrent Neural Network.

  • It has loops in the network, allowing information to persist.

  • RNNs are commonly used in natural language processing and time series analysis.

  • Example: Predicting the next word in a sentence based on previous words.

View all Data Scientist interview questions

Fynd Interview Experiences

63 interviews found

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?

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

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

I appeared for an interview in Jan 2025.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Implement Traffic Light Functionality using HTML+CSS+ Vanilla Javascript (Initially Light should be RED, after 60 second it should turn into GREEN, then after 5 second YELLOW, and after 3 second turn it ba...
  • Ans. 

    Implement Traffic Light functionality using HTML+CSS+Vanilla Javascript

    • Create HTML elements for the traffic light

    • Use CSS to style the elements to represent the different lights (red, green, yellow)

    • Use Vanilla Javascript to toggle the lights based on the specified time intervals

  • Answered by AI
  • Q2. Write a program to reserve a string without using any inbuilt method in javascript. (Two-pointer and One-pointer)
  • Ans. 

    Program to reserve a string without using inbuilt methods in JavaScript

    • Use two pointers to swap characters at the beginning and end of the string until they meet in the middle

    • Create a function that takes a string as input and returns the reversed string

    • Example: Input 'hello', Output 'olleh'

  • Answered by AI
  • Q3. Questions on Resume Past Experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Bring your laptops with you in order to solve any programming question. If you don't you have to write entire code in white board.

Good Luck :)

Interview Questions & Answers

user image Anonymous

posted on 21 Feb 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What role have you come for?
  • Ans. 

    I have come for the role of a Growth expert to help drive business expansion and increase revenue.

    • I have experience in developing and implementing growth strategies.

    • I have a track record of driving customer acquisition and retention.

    • I am skilled in analyzing data and identifying opportunities for growth.

    • I have worked with cross-functional teams to execute growth initiatives.

  • Answered by AI
  • Q2. Are you the candidate who has come from Bangalore, the HR told me that you have flown in from Bangalore? (I am from Mumbai, interviewed in Mumbai)
  • Ans. 

    No, I am from Mumbai. There might have been a misunderstanding.

    • Confirm with HR that there may have been a mix-up in communication.

    • Reiterate that you are from Mumbai and not Bangalore.

    • Offer to provide any additional clarification or information if needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had an interview scheduled for Thursday and arrived on time for the first round at 12 noon, but I was asked to wait for three hours. Finally, a different interviewer than the one mentioned in the invitation approached me and asked, "What role have you come for?" He seemed confused between me and another candidate. He then instructed me to complete an assignment and submit it by Monday. However, by Friday, I was notified that I was not shortlisted. I expect more professionalism from this company.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Two sum problem.
  • Ans. 

    The Two Sum problem involves finding two numbers in an array that add up to a specific target sum.

    • Use a hash map to store numbers and their indices for quick lookup.

    • Iterate through the array, checking if the complement (target - current number) exists in the hash map.

    • Example: For nums = [2, 7, 11, 15] and target = 9, return indices [0, 1] since 2 + 7 = 9.

    • Time complexity is O(n) due to a single pass through the array.

    • Sp...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. System Design concepts
Round 3 - Technical 

(1 Question)

  • Q1. Database design and principles
  • Ans. 

    Database design involves organizing and structuring data in a way that ensures efficiency, scalability, and data integrity.

    • Understand the requirements of the application to determine the appropriate database model (relational, NoSQL, etc.)

    • Normalize the database to reduce redundancy and improve data integrity

    • Consider indexing for faster data retrieval

    • Implement proper relationships between tables using foreign keys

    • Optimi...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Final discussion and job offer
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions around DSA
  • Q2. Questions around python garbage collector, etc
Round 2 - Technical 

(2 Questions)

  • Q1. Medium DSA Questions
  • Q2. System design
Round 3 - HR 

(2 Questions)

  • Q1. What makes you a perfect fit
  • Ans. 

    I have a strong background in software development, excellent problem-solving skills, and a passion for learning new technologies.

    • Extensive experience in software development, including proficiency in multiple programming languages such as Java, Python, and C++

    • Proven track record of successfully delivering high-quality projects on time and within budget

    • Strong problem-solving skills, with the ability to quickly identify...

  • Answered by AI
  • Q2. What are your takes on Offer shopping
  • Ans. 

    Offer shopping is the practice of comparing multiple job offers to make an informed decision.

    • Offer shopping is a common practice among job seekers to ensure they are getting the best possible compensation and benefits.

    • It involves comparing multiple job offers in terms of salary, benefits, work culture, growth opportunities, etc.

    • By offer shopping, candidates can make an informed decision about which job offer aligns bes...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. Are you joining this position only because the designation is offering a managerial role?
  • Q2. What are your strengths?

Interview Preparation Tips

Interview preparation tips for other job seekers - Avoid joining this organization
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Js basics and basic web concepts, 1 basic dsa questions based on maps
Round 2 - Technical 

(2 Questions)

  • Q1. Js basic concepts (output based) and polyfills
  • Q2. Basic react concepts
Round 3 - Technical 

(2 Questions)

  • Q1. How to implement infinite scroll
  • Ans. 

    Implementing infinite scroll involves dynamically loading content as the user scrolls down the page.

    • Use JavaScript to detect when the user reaches the bottom of the page

    • Make an AJAX call to fetch more content from the server

    • Append the new content to the existing content on the page

  • Answered by AI
  • Q2. How to implement dark mode. steps only. CORS. Webpack(its entry point), internationalisation

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Dsa related questions ,binary tree , list

Round 2 - Technical 

(2 Questions)

  • Q1. Project work on
  • Q2. Api work on and many question on dsa
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. What did you experience as part of office politics and what did you do to overcome it
  • Q2. Share a personal or professional conflict, your take on it and what did you do to overcome it
  • Q3. Show projects from oldest to newest (only final outcome)
  • Ans. 

    I will showcase my projects from oldest to newest, displaying only the final outcomes.

    • Start with the earliest project and work your way to the most recent one

    • Focus on showcasing the final deliverables or outcomes of each project

    • Provide a brief overview or context for each project if necessary

  • Answered by AI
  • Q4. Why did you transition into Design
  • Q5. Why do you want to leave your old organization

Interview Preparation Tips

Topics to prepare for Fynd Senior Product Designer interview:
  • Behavioral Training
  • situational
  • calm
  • Patience
Interview preparation tips for other job seekers - The Product Design Manager III who was conducting this interview was extremely obnoxious and if you are rejected you might not even hear back from the unprofessional HR. In that case, please don't be disheartened, there are many kind and better people/organizations waiting for you.
Count a rejection from here as a blessing in disguise. All the best!

Interview Questions & Answers

user image Anonymous

posted on 19 Jun 2025

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

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

  • Q1. Why do you want to work with us
  • Ans. 

    I admire your innovative approach and commitment to excellence, and I believe my skills align perfectly with your team's goals.

    • Your company's focus on cutting-edge technology, like AI and machine learning, excites me as I have experience in these areas.

    • I appreciate your commitment to sustainability and social responsibility, which aligns with my personal values.

    • The collaborative culture at your company is something I t...

  • Answered by AI
  • Q2. Where do you see the company in five years?
  • Ans. 

    In five years, I envision the company as a leader in innovation, expanding its market reach and enhancing customer satisfaction.

    • Increased market share through innovative product offerings, similar to how Tesla revolutionized the automotive industry.

    • Expansion into new geographical markets, akin to how Netflix successfully entered international markets.

    • Enhanced customer engagement through personalized services, similar t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go for this useless company
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference beteen sql and nosql
  • Ans. 

    SQL is a relational database management system, while NoSQL is a non-relational database management system.

    • SQL uses structured query language for querying data

    • NoSQL databases are more flexible and can handle unstructured data

    • SQL databases are vertically scalable, while NoSQL databases are horizontally scalable

    • Examples of SQL databases include MySQL, Oracle, and SQL Server

    • Examples of NoSQL databases include MongoDB, Cas...

  • Answered by AI
  • Q2. Code to Hit 1000 API request
  • Ans. 

    Use a loop to send 1000 API requests

    • Create a loop that iterates 1000 times

    • Inside the loop, make a request to the API endpoint

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your Resume

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Fynd?
Ask anonymously on communities.

Fynd Interview FAQs

How many rounds are there in Fynd interview?
Fynd interview process usually has 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 Flex, Team Building, Customer Engagement, Python and Javascript.
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.

Overall Interview Experience Rating

3.8/5

based on 60 interview experiences

Difficulty level

Easy 17%
Moderate 83%

Duration

Less than 2 weeks 74%
2-4 weeks 15%
4-6 weeks 6%
More than 8 weeks 6%
View more

Interview Questions from Similar Companies

HighRadius Interview Questions
2.8
 • 197 Interviews
Chetu Interview Questions
3.3
 • 197 Interviews
AVASOFT Interview Questions
2.8
 • 174 Interviews
Freshworks Interview Questions
3.5
 • 171 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Brane Enterprises Interview Questions
2.0
 • 138 Interviews
ivy Interview Questions
3.6
 • 133 Interviews
Axtria Interview Questions
2.9
 • 126 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
View all

Fynd Reviews and Ratings

based on 421 reviews

3.3/5

Rating in categories

3.4

Skill development

3.1

Work-life balance

3.7

Salary

2.8

Job security

3.1

Company culture

3.2

Promotions

3.1

Work satisfaction

Explore 421 Reviews and Ratings
Production Merchandiser

Mumbai

5-8 Yrs

Not Disclosed

Sales Lead | Commerce Global

Mumbai

2-5 Yrs

Not Disclosed

DevOps Engineer

Mumbai

3-7 Yrs

Not Disclosed

Explore more jobs
Software Development Engineer II
128 salaries
unlock blur

₹28 L/yr - ₹50.5 L/yr

Software Development Engineer
97 salaries
unlock blur

₹9.3 L/yr - ₹32.9 L/yr

Software Developer
87 salaries
unlock blur

₹13.2 L/yr - ₹24 L/yr

Software Development Engineer 1
77 salaries
unlock blur

₹13.1 L/yr - ₹23 L/yr

Sde1
66 salaries
unlock blur

₹16 L/yr - ₹27 L/yr

Explore more salaries
Compare Fynd with

Intellect Design Arena

3.9
Compare

Thomson Reuters

4.1
Compare

HighRadius

2.8
Compare

Oracle Cerner

3.6
Compare
write
Share an Interview