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

Updated 7 Oct 2024

Fynd Software Engineer Interview Experiences

4 interviews found

I applied via LinkedIn and was interviewed in May 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. What are callback functions in Javascript?
  • Ans. 

    Callback functions are functions passed as arguments to another function and executed later when the parent function is done.

    • Callback functions are used for asynchronous programming in JavaScript.

    • They are commonly used in event handling, AJAX requests, and timeouts.

    • Callback functions can be named or anonymous.

    • Example: setTimeout(function() { console.log('Hello, world!'); }, 1000);

  • Answered by AI
  • Q2. What are promises in Javascript?
  • Ans. 

    Promises are objects that represent the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript

    • They provide a way to execute code asynchronously and handle the result when it's ready

    • Promises have three states: pending, fulfilled, or rejected

    • They can be chained together using .then() and .catch() methods

    • Promises help avoid callback hell and make code

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared at both basic skills and advanced skills as well. Basics will take you to next round.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Dsa related questions ,binary tree , list

Round 2 - Technical 

(2 Questions)

  • Q1. Project work on
  • Q2. Api work on and many question on dsa

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

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

Round 1 - Coding Test 

Basic of python, model deployment, and image processing

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

I applied via Approached by Company and was interviewed in Aug 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

It was a good round with coding and questions related to the programming language and coding patterns.

Round 3 - One-on-one 

(3 Questions)

  • Q1. This round was a database and security round and various questions were asked related to the same!
  • Q2. Coding was Related to Merge Interval
  • Q3. Previous company projects were asked + database level approach was discussed
Round 4 - Culture-Fit 

(2 Questions)

  • Q1. General questions about previous work and understanding where you want to work!
  • Q2. What is async programming and why it is to be used?
  • Ans. 

    Async programming is a programming paradigm that allows multiple tasks to run concurrently without blocking the main thread.

    • Async programming is used to improve the performance of applications by allowing them to perform multiple tasks simultaneously.

    • It is particularly useful for I/O-bound operations, such as reading and writing to a database or network.

    • Async programming can be implemented using callbacks, promises, or...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Coding questions.
Get the basics right. Learn about async programming too

Fynd interview questions for designations

 Software Development Engineer

 (3)

 Senior Software Engineer

 (1)

 Software Development Engineer II

 (2)

 Software Development Engineer Test

 (1)

 Software Developer

 (8)

 Devops Engineer

 (1)

 Platform Engineer

 (1)

 Front end Engineer

 (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Angular structure
  • Q2. Dependency injection
Round 2 - Technical 

(2 Questions)

  • Q1. Manageral questions
  • Q2. Scenario based questions
Round 3 - HR 

(1 Question)

  • Q1. Package discussion
Interview experience
5
Excellent
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 - Technical 

(5 Questions)

  • Q1. Discuss the project you are most proud of
  • Ans. 

    Developed a mobile app for tracking personal fitness goals

    • Used React Native to create a cross-platform app

    • Implemented features such as goal setting, progress tracking, and workout logging

    • Integrated with wearable devices like Fitbit for automatic data syncing

  • Answered by AI
  • Q2. What are ways to speed up SQL queries? List them in increasing order of complexity?
  • Ans. 

    Ways to speed up SQL queries in increasing order of complexity

    • Use indexes on columns frequently used in WHERE clauses

    • Optimize queries by avoiding unnecessary joins and subqueries

    • Use stored procedures to reduce network traffic and improve performance

    • Consider denormalizing tables for frequently accessed data

    • Use query optimization techniques like query caching and query hints

  • Answered by AI
  • Q3. Is Redis single-threaded or multi-threaded?
  • Ans. 

    Redis is single-threaded.

    • Redis is single-threaded, meaning it can only execute one command at a time.

    • This design choice allows Redis to be extremely fast and efficient for certain use cases.

    • However, it also means that Redis may not be the best choice for highly concurrent workloads.

  • Answered by AI
  • Q4. What sort of data types can be used as keys in Python?
  • Ans. 

    Data types that can be used as keys in Python include strings, integers, floats, tuples, and custom objects.

    • Strings are commonly used as keys in Python dictionaries.

    • Integers and floats can also be used as keys.

    • Tuples can be used as keys if they only contain immutable elements.

    • Custom objects can be used as keys if they are hashable.

    • Examples: {'name': 'John'}, {1: 'apple'}, {(1, 2): 'tuple'}

  • Answered by AI
  • Q5. What types of indexing exist in SQL?
  • Ans. 

    Types of indexing in SQL include clustered, non-clustered, unique, and composite indexes.

    • Clustered index physically reorders the table based on the index key

    • Non-clustered index creates a separate structure for the index

    • Unique index ensures that all values in the index column are unique

    • Composite index uses multiple columns for indexing

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Globant user image Priyanka Vitthal chakkar

posted on 5 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can override or extend the functionality of the base class

  • Answered by AI
  • Q2. What are the types of joins in mysql
  • Ans. 

    Types of joins in MySQL include inner join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

    • Full join: Returns rows when there is a match in one of the tables.

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

(2 Questions)

  • Q1. How to handle multiple api's
  • Ans. 

    Use a centralized API gateway to manage and route requests to multiple APIs efficiently.

    • Implement a centralized API gateway to handle incoming requests and route them to the appropriate API based on the endpoint.

    • Utilize API management tools like Apigee, Kong, or AWS API Gateway to manage and monitor multiple APIs.

    • Consider implementing a caching layer to improve performance and reduce the number of requests to external

  • Answered by AI
  • Q2. What does strstr function do?
  • Ans. 

    strstr function searches for a substring within a string and returns a pointer to the first occurrence of the substring.

    • Used in C programming language

    • Syntax: char *strstr(const char *haystack, const char *needle)

    • Example: char *str = strstr("hello world", "world")

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Maths ,english ,reasoning, puzzles

Round 2 - Coding Test 

Jackeron was the platform

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard and avoid cheasting
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Linkedlist , array, stack
  • Q2. What is big data
  • Ans. 

    Big data refers to large volumes of structured and unstructured data that is too complex for traditional data processing applications.

    • Big data involves processing and analyzing large volumes of data to uncover patterns, trends, and insights.

    • It can come from various sources such as social media, sensors, devices, and business transactions.

    • Examples of big data technologies include Hadoop, Spark, and NoSQL databases.

    • Big d...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

The topic given to me is AI is good or bad

Round 2 - Technical 

(2 Questions)

  • Q1. Program to find prime number
  • Ans. 

    A program to find prime numbers in a given range.

    • Iterate through numbers in the given range

    • Check if each number is divisible by any number other than 1 and itself

    • If not divisible, then the number is prime

  • Answered by AI
  • Q2. Program to find the duplicates
  • Ans. 

    Program to find duplicates in an array of strings

    • Iterate through the array and store each element in a hash set

    • If an element is already in the hash set, it is a duplicate

    • Return a list of all duplicates found

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Self introduction
  • Q2. Explanation of project code
  • Ans. 

    The project code is a web application that allows users to create and share interactive quizzes.

    • The code uses HTML, CSS, and JavaScript to create the front-end interface.

    • It utilizes Node.js and Express for the back-end server.

    • MongoDB is used as the database to store user-generated quizzes.

    • Socket.io is used for real-time communication between users during quiz sessions.

  • Answered by AI

Skills evaluated in this interview

Fynd Interview FAQs

How many rounds are there in Fynd Software Engineer interview?
Fynd interview process usually has 2-3 rounds. The most common rounds in the Fynd interview process are Coding Test, Resume Shortlist and One-on-one Round.
What are the top questions asked in Fynd Software Engineer interview?

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

  1. What is async programming and why it is to be us...read more
  2. What are callback functions in Javascri...read more
  3. What are promises in Javascri...read more

Tell us how to improve this page.

Fynd Software Engineer Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more
Fynd Software Engineer Salary
based on 50 salaries
₹7 L/yr - ₹26.8 L/yr
81% more than the average Software Engineer Salary in India
View more details

Fynd Software Engineer Reviews and Ratings

based on 15 reviews

3.4/5

Rating in categories

3.5

Skill development

2.9

Work-life balance

3.9

Salary

3.1

Job security

3.0

Company culture

3.3

Promotions

3.2

Work satisfaction

Explore 15 Reviews and Ratings
Software Development Engineer
82 salaries
unlock blur

₹8 L/yr - ₹30.6 L/yr

Software Development Engineer 1
77 salaries
unlock blur

₹9 L/yr - ₹27 L/yr

Software Developer
68 salaries
unlock blur

₹7.5 L/yr - ₹30 L/yr

Software Development Engineer II
57 salaries
unlock blur

₹20 L/yr - ₹45 L/yr

Software Engineer
50 salaries
unlock blur

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