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 Front end Developer Interview Questions and Answers

Updated 22 Nov 2024

Fynd Front end Developer Interview Experiences

4 interviews found

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

(1 Question)

  • Q1. Js basics and basic web concepts, 1 basic dsa questions based on maps
Round 2 - Technical 

(2 Questions)

  • Q1. Js basic concepts (output based) and polyfills
  • Q2. Basic react concepts
Round 3 - Technical 

(2 Questions)

  • Q1. How to implement infinite scroll
  • Ans. 

    Implementing infinite scroll involves dynamically loading content as the user scrolls down the page.

    • Use JavaScript to detect when the user reaches the bottom of the page

    • Make an AJAX call to fetch more content from the server

    • Append the new content to the existing content on the page

  • Answered by AI
  • Q2. How to implement dark mode. steps only. CORS. Webpack(its entry point), internationalisation

Skills evaluated in this interview

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 ... read more
Q2. Find Unique Element in Array You have been provided an integer ar ... read more
asked in JUSPAY
Q3. Dijkstra's Shortest Path Problem Statement You are given an undir ... read more
asked in JUSPAY
Q4. Encode N-ary Tree to Binary Tree Problem Statement You are provid ... read more
Q5. Sort Linked List Based on Actual Values You are given a Singly Li ... read more
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

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

I applied via Referral and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Frontend coding test on javascript

Round 2 - Coding Test 

Leetcode style coding test

Round 3 - Behavioral 

(5 Questions)

  • Q1. Frontend related questions like "how web works"
  • Q2. Js inheritance, closer etc
  • Q3. Prototype related
  • Q4. Debounce function
  • Q5. React concept based questions

Fynd interview questions for designations

 Front end Engineer

 (1)

 Software Developer

 (8)

 Backend Developer

 (1)

 Android Developer

 (1)

 Blockchain Developer

 (1)

 Fullstack Java Developer

 (1)

 Fullstack Javascript Developer

 (1)

 Software Engineer

 (4)

Interview questions from similar companies

I appeared for an interview in Jan 2017.

Interview Questionnaire 

2 Questions

  • Q1. Basic JavaScript Questions Object Oriented JavaScript and Basic Algorithm Concepts
  • Q2. JavaScript (ECMA6, Arrow function , Map, Reduce, Parsing array of Object) , Css3(Less and Saas), HTML5(Api's and New Elements), Architecture overview of project

Interview Preparation Tips

Round: Technical Interview
Experience: Telephonic Discussion with Team member. Interactive discussion lost for 20 min. Just to check your Basics and Problem solving Skills.

Round: Technical Interview
Experience: Mixed of F2F Discussion and System round. Autocomplete text box which loads value from Server. Each key-press it should make a http call and also matched values should be filtered from already received list.

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

I applied via Job Fair and was interviewed in Sep 2023. 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 - Technical 

(2 Questions)

  • Q1. Advanced JS Questions
  • Q2. Coding like array sorts, etc

Interview Preparation Tips

Interview preparation tips for other job seekers - very worst interviewer and questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic Questions, Data types, Promises
  • Q2. Event loop, and other js concepts
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Nested reddit comments
  • Q2. Cors handling and proxies
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Maintain a good communication to the hr

Round 2 - Technical 

(5 Questions)

  • Q1. Questions from your resume and projects
  • Q2. Difference between elements and tags
  • Ans. 

    Elements are individual components of a web page, while tags are used to define the structure and appearance of elements.

    • Elements are the actual components on a web page, such as headings, paragraphs, images, etc.

    • Tags are used to define the structure and appearance of elements, such as <h1> for a heading or <p> for a paragraph.

    • Elements can have multiple tags associated with them, such as <a> for a lin

  • Answered by AI
  • Q3. Uses of functions in js
  • Ans. 

    Functions in JavaScript are used to define reusable blocks of code that can be called multiple times.

    • Functions can be used to perform specific tasks or calculations.

    • Functions can be passed as arguments to other functions.

    • Functions can be assigned to variables or properties of objects.

    • Functions can be used to create closures for encapsulating data.

    • Functions can be used to create custom methods for objects.

  • Answered by AI
  • Q4. Uses of get elementbyId in js
  • Ans. 

    getElementById is used in JavaScript to access and manipulate an element in the DOM by its unique ID.

    • Used to retrieve a specific element from the DOM by its ID

    • Allows for manipulation of the element's properties, styles, and content

    • Commonly used in event handling and dynamic content updates

  • Answered by AI
  • Q5. Typesof cssess ?
  • Ans. 

    There are three types of CSS: inline, internal, and external.

    • Inline CSS is applied directly to an HTML element using the style attribute.

    • Internal CSS is defined within the head section of an HTML document using the style tag.

    • External CSS is stored in a separate file and linked to the HTML document using the link tag.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident at what you have

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Js basics, angular basics , Html & css related tasks. Mostly online coding

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 Technical rounds & a manager round happened for me. Technical rounds went very well and i have moved forward with Manager round too.

Even in manager round they asked technical in depth , i have answered to the manager but all of sudden he asked about package & expectations. After saying my expectations, he started to humiliate and tried to negotiate. I was very surprised and felt disgusting.

How can someone do this to a candidate only for negotiation ? I felt it was so cheap and rude.

After finishing the manager round, I received a call from HR saying that i have been selected. I was totally shocked to hear that because the way he spoke in manager round isn't so positive and why did he select? Then i realised the reason after HR started bargaining for CTC even after discussing before the interview itself and it's clearly shows how cunning the manager behaved. He thought to make me prepare mentally for accepting lower package, but still I have already decided not to join there . Not because of package, but we cannot work under such mindsets.

This is so bad experience in manager round. Otherwise everything else went well.

Fynd Interview FAQs

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

Some of the top questions asked at the Fynd Front end Developer interview -

  1. how to implement infinite scr...read more
  2. What is event lo...read more
  3. Javascript concepts in d...read more

Tell us how to improve this page.

Fynd Front end Developer Interview Process

based on 5 interviews

Interview experience

3.8
  
Good
View more
Fynd Front end Developer Salary
based on 5 salaries
₹4.1 L/yr - ₹15 L/yr
56% more than the average Front end Developer Salary in India
View more details

Fynd Front end Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Development Engineer
82 salaries
unlock blur

₹8 L/yr - ₹33 L/yr

Software Development Engineer 1
78 salaries
unlock blur

₹9 L/yr - ₹27 L/yr

Software Development Engineer II
68 salaries
unlock blur

₹20 L/yr - ₹45 L/yr

Software Developer
64 salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Software Engineer
50 salaries
unlock blur

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