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

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. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Balanced parenthesis
  • Q2. Sql query - 2nd max salary

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

I applied via Campus Placement and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Why cross entropy loss is used in classification, why not 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-class c...

  • Answered by AI
  • Q2. 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.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain encoder decoder
  • 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

  • Answered by AI
  • Q2. Explain LSTM and how to use 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 fore...

  • Answered by AI

Skills evaluated in this interview

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)

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)

Associate Interview Questions & Answers

user image Anonymous

posted on 17 Jun 2024

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Tell about work experience

Associate Interview Questions asked at other Companies

Q1. What is mean of TTR & why required for powder coating process ?
View answer (17)

Get interview-ready with Top Fynd Interview Questions

SDE Interview Questions & Answers

user image competitive coding

posted on 23 Dec 2024

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

(1 Question)

  • Q1. Closure, Flatten

SDE Interview Questions asked at other Companies

Q1. Return Subsets Sum to K Problem Statement Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'. Explanation: A subset of an array 'ARR' is a tuple that can be obtained from 'ARR' by r... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Sardar Vallabhbhai National Institute of Technology (NIT), Surat and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Easy questions based on 2 pointer

Round 2 - Technical 

(2 Questions)

  • Q1. OOPs, DBMS, Networking
  • Q2. Binary Search related question
Round 3 - Technical 

(2 Questions)

  • Q1. Data structures overview using stacks, queue
  • Ans. 

    Stacks and queues are fundamental data structures used for storing and accessing data in a specific order.

    • Stacks follow the Last In First Out (LIFO) principle, where the last element added is the first one to be removed. Example: Undo functionality in text editors.

    • Queues follow the First In First Out (FIFO) principle, where the first element added is the first one to be removed. Example: Print job queue in a printer.

    • St...

  • Answered by AI
  • Q2. General CS fundamentals and Puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - CS fundamentals and DSA would be good.
Also prepare you resume projects very well.

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
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 SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (38)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Some online test - Psychological & IQ test

Round 2 - HR 

(2 Questions)

  • Q1. What are total number so profiles you have worked simultaneously?
  • Ans. 

    I have worked with up to 15 profiles simultaneously, ensuring personalized support and attention to each individual.

    • Managed 15 profiles at once, providing tailored guidance and support to each individual

    • Prioritized tasks based on urgency and importance to effectively handle multiple profiles

    • Utilized organizational tools and strategies to stay on top of each profile's progress

    • Regularly communicated with each profile to

  • Answered by AI
  • Q2. How would you manage or deal with office politics? what will you do?
  • Ans. 

    I would address office politics by promoting open communication, fostering a positive work culture, and addressing conflicts promptly.

    • Promote open communication to prevent misunderstandings and rumors

    • Foster a positive work culture based on respect and collaboration

    • Address conflicts promptly and fairly to prevent escalation

    • Lead by example and maintain professionalism in all interactions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Pls dont take leaves for interview process, do not travel for interview on Fridays
For any one whose designation is Product manager or above - your interview process will surely exceed a month.
HRs here are too irresponsible for arranging interviews and even worse for sharing interview feedbacks.
Even HR manager had some attitude problem like she is the only one who can provide a job, HR herself had no idea how to talk.

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