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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Technical 

(7 Questions)

  • Q1. Virtual Dom and it's working behind the scene
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM in memory, used for efficient updates and rendering in web development.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing actual DOM manipulations.

    • When changes are made to the virtual DOM, a diffing algorithm compares it with the actual DOM and only updates the necessary parts.

    • This helps in reducing the number of updates needed...

  • Answered by AI
  • Q2. Deep copy and shallow copy
  • Q3. Event loop in Js
  • Ans. 

    Event loop in JavaScript manages asynchronous operations by executing callback functions in a queue.

    • Event loop is responsible for handling asynchronous operations in JavaScript.

    • It continuously checks the call stack for any pending tasks and executes them in order.

    • Event loop ensures that the code runs efficiently without blocking the main thread.

    • Example: setTimeout function in JavaScript uses the event loop to execute a

  • Answered by AI
  • Q4. Promise.all, promise.race, promise.allSettled
  • Q5. Prototypes in js
  • Ans. 

    Prototypes in JavaScript are used to add new properties or methods to existing objects.

    • Prototypes allow for inheritance in JavaScript.

    • All objects in JavaScript are linked to a prototype object.

    • Modifying the prototype object affects all instances of that object type.

  • Answered by AI
  • Q6. Js output based questions (5-6)
  • Q7. Write a prototype for array.filter
  • Ans. 

    Prototype for array.filter function to filter array of strings

    • Use Array.prototype.filter method to iterate through the array

    • Pass a callback function to filter out elements based on a condition

    • Return a new array with filtered elements

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Image to react app conversion question
Round 3 - CTO Round 

(1 Question)

  • Q1. Discussion on how company works technically. Technology used for projects.
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and company policies explained

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with the technicals. Prepare on core concepts of javascript. If applying for js based role.

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. 2 SQL queries on join
  • Q2. Python code with explanation
  • Ans. 

    Python code to find the factorial of a number

    • Use a recursive function to calculate the factorial

    • Handle edge cases like 0 and negative numbers

    • Factorial of a number n is the product of all positive integers less than or equal to n

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Debugging skills

Skills evaluated in this interview

Product Support Engineer Interview Questions asked at other Companies

Q1. What is DSP (Demand Side Platform) and SSP ( Sell side platform?
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. PERVIOUS EXPERIENCE
Round 2 - Technical 

(1 Question)

  • Q1. Sutitional based question

Program Manager Interview Questions asked at other Companies

Q1. Use case scenario - in case a new engagement is awarded to Infosys, share how do you manage that Project/Program?
View answer (9)
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Write code to print numbers 1 to n where each number i should get printed after i seconds. Questions around let and var on the solution. Promisify the solution.
  • Ans. 

    Print numbers 1 to n with a delay of i seconds for each number.

    • Use a loop to iterate from 1 to n

    • Use setTimeout function to delay the printing of each number

    • Use let instead of var to avoid closure issues

    • Promisify the solution by returning a promise

  • Answered by AI
  • Q2. Css question to create a ring having some background color
  • Q3. Basic database questions mysql and mongo like how to write pagination query (offset and cursor both)
  • Q4. Given 2 linked list find the intersection node if they intersect
  • Ans. 

    To find the intersection node of two linked lists, iterate through both lists and compare each node until a common node is found.

    • Iterate through both linked lists simultaneously

    • Compare each node of the lists until a common node is found

    • If the lists have different lengths, align the starting points by advancing the longer list

  • Answered by AI
  • Q5. Basic Frontend concepts like react hooks, debounce etc

Interview Preparation Tips

Topics to prepare for Fynd Fullstack Javascript Developer interview:
  • React
  • CSS3
  • DSA
  • Javascript
  • Database
Interview preparation tips for other job seekers - I didn’t know about the company until I was interviewed. I have good experience in Frontend so maybe that’s why the interviewer asked more Frontend questions to me and answered most of them. I personally found the interviewer to have a bit of rude behaviour (because he/she was more focussed on me defining the concepts rather than me understanding the concepts). I was initially unwilling to join them as it was not a remote job (I may have still joined) but then after some research I found they laid off their employees previously and they have a pretty toxic work culture (which I saw a glimpse of while being interviewed in an unprofessional manner). So good luck to them hiring!

Skills evaluated in this interview

Fullstack Javascript Developer Interview Questions asked at other Companies

Q1. Write code to print numbers 1 to n where each number i should get printed after i seconds. Questions around let and var on the solution. Promisify the solution.
View answer (1)

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)

Sdet Interview Questions & Answers

user image Anonymous

posted on 20 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How will you Handle/ Locate Dynamic Web Elements in a Web Table?
  • Ans. 

    To handle dynamic web elements in a web table, I will use techniques like XPath, CSS selectors, and dynamic element identification.

    • Use XPath to locate elements based on their attributes or position in the DOM

    • Utilize CSS selectors to target specific elements based on their styling

    • Implement dynamic element identification techniques to handle elements that change on page reloads or updates

  • Answered by AI
  • Q2. Find Missing numbers from an Integer Array
  • Ans. 

    Find missing numbers in an integer array

    • Iterate through the array and keep track of seen numbers

    • Compare the seen numbers with a range of expected numbers to find missing ones

    • Handle edge cases like duplicates or negative numbers

    • Example: Array [1, 2, 4, 6] should return missing numbers 3 and 5

  • Answered by AI

Skills evaluated in this interview

Sdet Interview Questions asked at other Companies

Q1. Given a M x N 2D array containing random alphabets and a function Dict(string word) which returns whether the 'word' is a valid English word. Find all possible valid words you can get from the 2D array, where the alphabets are adjacent to e... read more
View answer (1)

Get interview-ready with Top Fynd Interview Questions

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

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

DSA question was asked

Backend Developer Interview Questions asked at other Companies

Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, your task is to return the vertical order traversal of its nodes' values. For each node located at a position (X, Y), its left child will be at (X-1, Y-1) and its right child wi... read more
Add answer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Guesstimate flights running from Bangalore airport
  • Ans. 

    There are approximately 500 flights running from Bangalore airport daily.

    • Consider peak hours and off-peak hours for flight schedules

    • Include domestic and international flights

    • Factor in different airlines operating from the airport

  • Answered by AI
  • Q2. Product design, a travel app

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)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain webpack
  • Ans. 

    Webpack is a module bundler for JavaScript applications.

    • Webpack takes modules with dependencies and generates static assets representing those modules.

    • It can handle various types of assets like JavaScript, CSS, and images.

    • Webpack allows for code splitting, lazy loading, and hot module replacement.

    • Configuration is done through a webpack.config.js file.

    • Plugins and loaders can be used to extend Webpack's functionality.

  • Answered by AI
  • Q2. Explain closures
  • Ans. 

    Closures are functions that have access to variables from their containing scope even after the scope has closed.

    • Closures allow functions to access variables from their outer function even after the outer function has finished executing.

    • They are useful for maintaining state in asynchronous operations.

    • Closures can be used to create private variables in JavaScript.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. What is event loop?
  • Ans. 

    Event loop is a mechanism in JavaScript that allows for asynchronous operations to be executed in a non-blocking way.

    • Event loop is responsible for handling asynchronous operations in JavaScript.

    • It allows for tasks to be queued and executed in a non-blocking manner.

    • Event loop continuously checks the call stack and the task queue, moving tasks from the queue to the stack when the stack is empty.

    • Example: setTimeout() func...

  • Answered by AI

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. There were total 5 rounds. Three technical rounds, managerial round and the HR round. First one is really basic. They asked me about general questions about inference latency, difference between list and s...
Round 2 - Technical 

(1 Question)

  • Q1. Write a code for pre processing the image data before feeding it to model. The image ratios should be maintained. And the basics of django, like how to register more than one model in django.
  • Ans. 

    Preprocess image data while maintaining ratios and register multiple models in Django.

    • Resize images while maintaining aspect ratio using libraries like PIL or OpenCV

    • Normalize pixel values to a range of 0-1 for better model performance

    • Augment data using techniques like rotation, flipping, or cropping to increase dataset size

    • Use data generators in Keras to efficiently load and preprocess images in batches

    • Register multipl...

  • Answered by AI

Skills evaluated in this interview

Machine Learning Engineer Interview Questions asked at other Companies

Q1. Subset Sum Equal To K Problem Statement Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K. Provide true if such a subset exists, otherwise return false. Example: Input: ARR = {1... read more
View answer (1)

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