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 Software Development Engineer Interview Questions, Process, and Tips

Updated 9 Jan 2025

Top Fynd Software Development Engineer Interview Questions and Answers

Fynd Software Development Engineer Interview Experiences

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

asked in Amazon
Q1. Given an acyclic graph of a city where each edge represents a roa ... read more
asked in Hike
Q2. You have application which shows list of all contacts, the Name c ... read more
asked in Amazon
Q3. Given a m * n matrix filled with '0's and 'x's at random position ... read more
asked in Samsung
Q4. puzzle-There are 1000 wine bottles. One of the bottles contains p ... read more
asked in Accenture
Q5. Have you worked on cloud technology? Architecture of cloud
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

MCQ's and One DSA Question

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Javascript and Node.js Rest all will come to you

Interview questions from similar companies

I applied via Referral and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is Data Integrity?
  • Ans. 

    Data Integrity refers to the accuracy and consistency of data throughout its lifecycle.

    • Ensuring data is not corrupted or modified without authorization

    • Maintaining data accuracy and consistency through proper storage and retrieval

    • Preventing data loss or unauthorized access

    • Examples: checksums, encryption, access controls

  • Answered by AI
  • Q2. Gave an example and asked to produce that output with a query.
  • Q3. Questions like difference between union and union all. The function of cursor. Basic query tuning questions. Index, triggers etc

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview happened during the lockdown period, so it was virtual Teams meeting. I had 2 technical rounds and one Managerial round. The interviewers were quite friendly and explained everything crystal clear. Since this was a SQL post, I would suggest you to get the basics intact and try practicing few queries.

I appeared for an interview before Mar 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions on DBMS.

  • Q1. What is data integrity?
  • Ans. 

    Data integrity refers to the accuracy, consistency, and reliability of data throughout its lifecycle.

    • Data integrity ensures that data is accurate and consistent in storage and transmission.

    • It involves maintaining the quality and reliability of data over time.

    • Methods for ensuring data integrity include checksums, encryption, and error detection codes.

    • Examples of data integrity violations include data corruption, unautho

  • Answered by AI
  • Q2. What is a trigger in the context of a database management system?
  • Ans. 

    A trigger is a special type of stored procedure that automatically executes when certain events occur in a database.

    • Triggers are used to enforce business rules, maintain data integrity, and automate repetitive tasks.

    • They can be triggered by INSERT, UPDATE, or DELETE operations on a table.

    • Examples of triggers include auditing changes to a table, updating related tables when a record is modified, or enforcing referential

  • Answered by AI
  • Q3. What is the difference between clustered and non-clustered indexes in a database management system?
  • Ans. 

    Clustered indexes physically order the data in the table, while non-clustered indexes do not.

    • Clustered indexes determine the physical order of data in the table, while non-clustered indexes do not.

    • A table can have only one clustered index, but multiple non-clustered indexes.

    • Clustered indexes are faster for retrieval of data, especially range queries, compared to non-clustered indexes.

    • Non-clustered indexes are stored se...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions on DBMS.

  • Q1. What is the difference between UNION and UNION ALL in SQL?
  • Ans. 

    UNION combines and removes duplicates, UNION ALL combines without removing duplicates.

    • UNION merges the result sets of two or more SELECT statements and removes duplicates.

    • UNION ALL merges the result sets of two or more SELECT statements without removing duplicates.

    • UNION is slower than UNION ALL as it involves removing duplicates.

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column...

  • Answered by AI
  • Q2. What are the functions of a cursor in PL/SQL?
  • Ans. 

    A cursor in PL/SQL is used to retrieve and process multiple rows of data one at a time.

    • Allows iteration over a result set

    • Retrieves data row by row

    • Can be used to update or delete rows in a table

    • Must be declared, opened, fetched, and closed

  • Answered by AI
  • Q3. Write a SQL query to fetch the nth highest salary from a table.
  • Ans. 

    SQL query to fetch the nth highest salary from a table

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to fetch the nth highest salary

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was a managerial round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACerner Corporation interview preparation:Topics to prepare for the interview - SQL, Database Management Systems, OOPS, DSA, System DesignTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Since this was a SQL post, I would suggest you to get the basics intact and try practicing few queries.
Tip 2 : Must do Previously asked Interview as well as Online Test Questions.
Tip 3 : Go through all the previous interview experiences from Codestudio and Leetcode.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

First Round was Aptitute Test having Aptitute Question And Java Questions.

Round 2 - Coding Test 

Second round was coding round having two DSA problems

Round 3 - One-on-one 

(1 Question)

  • Q1. 1. Difference between .equals() and == function. 2. Fibonacci series 3. MultiThreading
  • Ans. 

    Questions on Java basics - .equals() vs ==, Fibonacci series, and MultiThreading.

    • The .equals() function compares the values of two objects, while == compares their memory addresses.

    • Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • MultiThreading is a technique where multiple threads of execution run concurrently within a single program.

    • Examples: 5 == 5 is true, but new Str...

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. 1. Javascript code to find the frequency of characters in a sentence. 2. Difference between dynamic and static intialization.
  • Ans. 

    Javascript code to find frequency of characters in a sentence and difference between dynamic and static initialization.

    • To find frequency of characters in a sentence, create an object and iterate over each character in the sentence. Increment the count of each character in the object.

    • Dynamic initialization refers to initializing a variable at runtime, while static initialization refers to initializing a variable at comp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Follow Basics of Java And Javascript.
Go through Concepts of OOPs

Skills evaluated in this interview

I appeared for an interview in Jan 2021.

Interview Questionnaire 

1 Question

  • Q1. One Program with c#

Interview Preparation Tips

Interview preparation tips for other job seekers - Wasting of time i feel when I joined interview with him. One Program he asked when i answered it properly/not he said done his interview

I applied via Naukri.com and was interviewed before Oct 2021. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Esay leave DSA questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Java, OOPS, Collection,HashMap working
Round 3 - One-on-one 

(1 Question)

  • Q1. Manager Round, previous projects, role and responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - interview is quite easy, just focus on DSA basic questions

I appeared for an interview in Apr 2021.

Interview Questionnaire 

2 Questions

  • Q1. Personal based questions
  • Q2. Technical questions based on Java

I applied via LinkedIn and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Data structures and algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Fynd Interview FAQs

How many rounds are there in Fynd Software Development Engineer interview?
Fynd interview process usually has 3 rounds. The most common rounds in the Fynd interview process are Technical, HR and Coding Test.
What are the top questions asked in Fynd Software Development Engineer interview?

Some of the top questions asked at the Fynd Software Development Engineer interview -

  1. Virtual Dom and it's working behind the sc...read more
  2. Write a prototype for array.fil...read more
  3. Database design and princip...read more

Tell us how to improve this page.

Fynd Software Development Engineer Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
Fynd Software Development Engineer Salary
based on 86 salaries
₹10 L/yr - ₹30.6 L/yr
53% more than the average Software Development Engineer Salary in India
View more details

Fynd Software Development Engineer Reviews and Ratings

based on 17 reviews

2.8/5

Rating in categories

2.9

Skill development

2.4

Work-life balance

3.2

Salary

2.2

Job security

2.3

Company culture

3.1

Promotions

2.3

Work satisfaction

Explore 17 Reviews and Ratings
Software Development Engineer
86 salaries
unlock blur

₹10 L/yr - ₹30.6 L/yr

Software Development Engineer 1
79 salaries
unlock blur

₹9 L/yr - ₹27 L/yr

Software Development Engineer II
73 salaries
unlock blur

₹20 L/yr - ₹46 L/yr

Software Developer
63 salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Software Engineer
51 salaries
unlock blur

₹7 L/yr - ₹26.2 L/yr

Explore more salaries
Compare Fynd with

Intellect Design Arena

3.9
Compare

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

NextComm Corporation

4.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview