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 for Experienced

Updated 21 Feb 2025

Top Fynd Interview Questions and Answers for Experienced

View all 19 questions

Fynd Interview Experiences for Experienced

Popular Designations

18 interviews found

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

(1 Question)

  • Q1. Two sum problem.
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

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

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
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 - 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)

Fynd interview questions for popular designations

 Software Developer

 (8)

 Software Engineer

 (4)

 Product Manager

 (4)

 Front end Developer

 (4)

 Software Development Engineer

 (3)

 Data Scientist

 (2)

 Graduate Trainee

 (2)

 Engineering Manager

 (2)

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)

Get interview-ready with Top Fynd Interview Questions

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 Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

ml engineer Interview Questions & Answers

user image priya yadav

posted on 3 Oct 2024

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

I was interviewed in Sep 2024.

Round 1 - Coding Test 

3 coding question of medium level like rotate matrix by 90 degree

ml engineer Interview Questions asked at other Companies

Q1. How to evaluate regression models? explain r squared and adjusted r squared and difference between them
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Best gpu operations for building a huge ml model
  • Ans. 

    Utilize GPUs for matrix multiplication, deep learning operations, and parallel processing.

    • Use GPUs for matrix multiplication to speed up computation.

    • Utilize GPUs for deep learning operations like training neural networks.

    • Take advantage of GPUs for parallel processing to handle large datasets efficiently.

  • Answered by AI

Skills evaluated in this interview

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1st round was coding mainly focus on javascript, with output questions and easy leetcode dsa questions

Round 2 - Technical 

(1 Question)

  • Q1. Javascript concepts in deep
  • Ans. 

    JavaScript concepts cover a wide range of topics including data types, functions, scope, closures, and more.

    • Data types include strings, numbers, booleans, arrays, objects, and more.

    • Functions are first-class citizens in JavaScript and can be passed around as arguments or returned from other functions.

    • Scope refers to the visibility of variables within a program, with global and local scopes.

    • Closures allow functions to re...

  • Answered by AI

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

Software Developer Interview Questions & Answers

user image pratik Rajkotiya

posted on 25 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Array, dp, stack , queue

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 (42)

Fynd Interview FAQs

How many rounds are there in Fynd interview for experienced candidates?
Fynd interview process for experienced candidates usually has 1-2 rounds. The most common rounds in the Fynd interview process for experienced candidates are Technical, Coding Test and One-on-one Round.
How to prepare for Fynd interview for experienced candidates?
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 for experienced candidates?

Some of the top questions asked at the Fynd interview for experienced candidates -

  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. Supposed products our product are damage delivered to customers how handle situ...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 for Experienced

based on 15 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
BigBasket Interview Questions
3.9
 • 358 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Blinkit Interview Questions
3.7
 • 180 Interviews
Chetu Interview Questions
3.3
 • 172 Interviews
Nykaa Interview Questions
3.5
 • 114 Interviews
Snapdeal Interview Questions
3.8
 • 75 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
85 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer 1
77 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
66 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer II
60 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
48 salaries
unlock blur

₹0 L/yr - ₹0 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