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 Senior Software Engineer Interview Questions and Answers

Updated 3 Sep 2024

Fynd Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic DSA Questions, Python fundamentals, System design basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on programming language fundamentals, some basic SQL queries and system design principles

Interview questions from similar companies

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 Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Two questions asked:
1. Partition equal sum
2. find length largest region boolean matrix

Interview Preparation Tips

Topics to prepare for Freshworks Senior Software Engineer interview:
  • Hld
  • LLD
  • Coding
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 Jan 2024. There were 6 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 2 DSA questions
Round 2 - Technical 

(1 Question)

  • Q1. Half an hour of behavioral questions and 1 DSA question
Round 3 - Behavioral 

(1 Question)

  • Q1. One hour discussion of the work that I have done till now
Round 4 - Technical 

(1 Question)

  • Q1. 1 Hard DSA question
Round 5 - Technical 

(1 Question)

  • Q1. 1 Hard DSA question
Round 6 - Technical 

(1 Question)

  • Q1. Design round for HLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for high level DSA questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

(1 Question)

  • Q1. Design and code a zoo management system.
  • Ans. 

    A zoo management system to track animals, enclosures, staff, and visitor information.

    • Create classes for animals, enclosures, staff, and visitors

    • Implement functions for adding, updating, and deleting records

    • Include features for scheduling feeding times, cleaning enclosures, and managing staff shifts

  • Answered by AI
Round 2 - Coding Test 

Standard DSA questions

Round 3 - HR 

(1 Question)

  • Q1. Standard HR stuff.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via campus placement at Rajalakshmi Engineering College, Chennai and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude of from all topics

Round 2 - Technical 

(2 Questions)

  • Q1. Node js & javascript coding question
  • Q2. Array related questions

Interview Preparation Tips

Topics to prepare for yellow.ai Senior Software Engineer interview:
  • javascript
  • nodejs
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It is simple MCQ machine test and test result is generated then forwarded for First round which is telephonic round.

Round 2 - Coding Test 

This round is on Zoom and will try to check your coding knowledge. Like your role in existing project in current company etc. Totally project related

Round 3 - HR 

(1 Question)

  • Q1. This is for your joining dates a
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Coding Test 

1 hour, focus on concurrency (mutex, semaphore, conditional lock, etc)

Interview Preparation Tips

Topics to prepare for RUBRIK INDIA Senior Software Engineer interview:
  • concurrency
  • Multithreading
Interview preparation tips for other job seekers - I was asked :

There's one bathroom, which needs to be used by politicians of 2 political parties:
1. At a time, no 2 politicians of different parties should be inside the bathroom. (else, they will fight :-P )
2. At a time, only 4 politicians of any given party can enter the bathroom.

Consider all requests to be threads, and based on the above 2 conditions, either allow them to go in, or make those threads wait.


I used conditional lock, to make the politicians of the other party wait, and to allow the politicians of the current occupying party. And then used a semaphore to ensure that only 4 can be in at a time.

I applied via Naukri.com and was interviewed in Oct 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Core java, spring boot
Round 2 - One-on-one 

(1 Question)

  • Q1. Core java, spring boot, database, data structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be strong core java logic and basic of data structure n sql, good understanding of spring boot, sequrity etc
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2022. There were 3 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 - DSA 

(2 Questions)

  • Q1. Medium level DS round
  • Q2. Able to solved 2 question in 45 minutes
Round 3 - Coding Test 

In depth interview about projects related to job description

Interview Preparation Tips

Interview preparation tips for other job seekers - - Must have proper DSA knowledge
- Should able to make explain basic concepts related to job description
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Immediate higher number to right
  • Ans. 

    The immediate higher number to the right of each element in an array

    • Iterate through the array from right to left

    • For each element, compare it with the elements to its right to find the immediate higher number

    • Store the immediate higher number in a new array

  • Answered by AI
  • Q2. Count pair whose sum is perfect square.
  • Ans. 

    Count pairs in an array whose sum is a perfect square.

    • Iterate through the array and calculate the sum of each pair.

    • Check if the sum is a perfect square using a function.

    • Increment a counter if the sum is a perfect square.

    • Return the final count of pairs.

  • Answered by AI
  • Q3. Parking lot LLD
  • Q4. E Commerce HLD and LLD
  • Q5. Kth largest number in BST
  • Ans. 

    To find the Kth largest number in a Binary Search Tree (BST), we can perform an in-order traversal and keep track of the Kth largest element.

    • Perform an in-order traversal of the BST to get the elements in non-decreasing order.

    • Keep track of the Kth largest element while traversing the BST.

    • Return the Kth largest element once found.

  • Answered by AI

Skills evaluated in this interview

Fynd Interview FAQs

How many rounds are there in Fynd Senior Software Engineer interview?
Fynd interview process usually has 1 rounds. The most common rounds in the Fynd interview process are One-on-one Round.

Tell us how to improve this page.

Fynd Senior Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Fynd Senior Software Engineer Salary
based on 30 salaries
₹14 L/yr - ₹44 L/yr
87% more than the average Senior Software Engineer Salary in India
View more details

Fynd Senior Software Engineer Reviews and Ratings

based on 12 reviews

3.5/5

Rating in categories

3.8

Skill development

3.1

Work-life balance

4.2

Salary

3.4

Job security

3.0

Company culture

3.7

Promotions

3.3

Work satisfaction

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