Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by CARS24 Team. If you also belong to the team, you can get access from here

CARS24 Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

CARS24 React Js Frontend Developer Interview Questions and Answers

Updated 2 Dec 2024

CARS24 React Js Frontend Developer Interview Experiences

6 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

It was based on Javascript. Some web basics like CORS , react rendering patterns. Then JS based output questions. Some were based on JS promise. Function currying.

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

Leetcode DSA problems

React Js Frontend Developer Interview Questions Asked at Other Companies

asked in Simform
Q1. 1. What is difference between abstract class and interface ?
asked in Simform
Q2. 3. What is Difference between primary key and unique key ?
asked in Simform
Q3. 2. What is Arrow Function in Javascripts?
asked in Simform
Q4. 5. Why we require interface and what is interface in java ?
asked in Simform
Q5. 4. how you join three different tables in SQL ?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Goof amount of core js questions were asked

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

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 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 - Technical 

(3 Questions)

  • Q1. Started with simple questions like hoisting and virtual DOM, then progressed to event loop microtask queue and other concepts.
  • Q2. Asked about debouncing and throttle (I mentioned them in projects). Then told me to write polyfill for those. What is reconciliation in React and how is it working after React 16 and how was it working ear...
  • Q3. Couple of output questions based on closure.

Interview Preparation Tips

Topics to prepare for CARS24 React Js Frontend Developer interview:
  • Closure
  • Reconciliation
  • Virtual DOM
  • Hoisting
  • React Hooks
Interview preparation tips for other job seekers - Don't mention anything that you don't know the depth of. I mentioned reconciliation in my answer while explaining Virtual DOM and he went deep with it and asked about Diffing algorithm and all. Closures are important topics try to solve some output based questions based on them.

CARS24 interview questions for designations

 React Native Developer

 (5)

 Software Developer

 (4)

 Senior Developer

 (1)

 Salesforce Developer

 (1)

 Senior Software Developer

 (2)

 Front end Developer

 (1)

 Senior Java Developer

 (1)

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

(1 Question)

  • Q1. Coding questions on React + JS

Interview Preparation Tips

Interview preparation tips for other job seekers - Trust the process and work hard on skills
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Instahyre and was interviewed in Nov 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 - Technical 

(2 Questions)

  • Q1. What is Debouncing in JavaScript?
  • Ans. 

    Debouncing in JavaScript is a technique used to limit the number of times a function is called in a short period of time.

    • Debouncing is used to improve performance and prevent unnecessary function calls.

    • It delays the execution of a function until after a certain amount of time has passed since the last invocation.

    • It is commonly used in scenarios like search bars, scroll events, and input validation.

    • Debouncing can be imp...

  • Answered by AI
  • Q2. What is an Arrow Function?
  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • Arrow functions have a shorter syntax compared to regular functions.

    • They do not have their own 'this' value.

    • Arrow functions are always anonymous.

    • They are commonly used in React components for event handlers and callbacks.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for CARS24 React Js Frontend Developer interview:
  • ES6 Features
Interview preparation tips for other job seekers - Have strong basics and be prepared for complex coding challenges.

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. Create a pagination
  • Ans. 

    Pagination component to display a list of items with page navigation.

    • Create a Pagination component with props for total number of items, items per page, and current page.

    • Calculate total number of pages based on total items and items per page.

    • Display page numbers with previous and next buttons to navigate through pages.

    • Update the list of items displayed based on current page.

    • Handle click events on page numbers and previ

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Write a polyfill of JS promise
  • Ans. 

    A polyfill for JS promise is a piece of code that provides support for promises in older browsers.

    • Create a Promise class with resolve, reject, then, and catch methods

    • Implement the executor function to handle the asynchronous operation

    • Use setTimeout to simulate asynchronous behavior

    • Handle chaining of then and catch methods

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Polyfill for bind Closures Call apply bind let const var lexical environment scope output questions
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

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

Round 1 - Coding Test 

The first round is Hackerrank two algo and one UI test very easy, Second is Fundamentals of JS and React Native one must have a deep understanding of JS to do that I strongly suggest going through Akashay Saini's JS series It'll help and the Third is PS/DS asked some basic A&DS questions can be solved easily with little practice on Leetcode

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process is very long, The First round was in January second in Feb and the Third in April

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

  • Ans. 

    Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).

    • Use a 1D array to store the maximum value that can be stolen for each weight capacity from 0 to W.

    • Iterate through each item and update the array based on whether including the item would increase the total value.

    • The final value in the array at index W will be the maximum value that can be stolen.

  • Answered by AI
  • Q2. 

    Find the Second Largest Element

    Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

    If a second largest element does not exist, return -1.

    Example:

    Input:
    ARR = [2,...
  • Ans. 

    Find the second largest element in an array of integers.

    • Iterate through the array to find the largest and second largest elements.

    • Handle cases where all elements are identical.

    • Return -1 if a second largest element does not exist.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

System Design Round

  • Q1. Design a system for Twitter, discussing its architecture, key components, and scalability considerations.
  • Ans. 

    Design a scalable system for Twitter with key components and architecture.

    • Use microservices architecture for scalability and fault isolation.

    • Key components include user service, tweet service, timeline service, and notification service.

    • Use a distributed database like Cassandra for storing tweets and user data.

    • Implement a message queue like Kafka for handling real-time updates and notifications.

    • Use a caching layer like ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

It is just a formality

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaResume shortlistingSwiggy interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, DBMS, SQL,Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : System Design
Tip 2 : Practice questions from leetcode
Tip 3 : Have some projects.

Application resume tips for other job seekers

Tip 1 : Mention what you know 
Tip 2 : Good previous work to showcase

Final outcome of the interviewSelected

Skills evaluated in this interview

CARS24 Interview FAQs

How many rounds are there in CARS24 React Js Frontend Developer interview?
CARS24 interview process usually has 1-2 rounds. The most common rounds in the CARS24 interview process are Technical, Coding Test and Resume Shortlist.
What are the top questions asked in CARS24 React Js Frontend Developer interview?

Some of the top questions asked at the CARS24 React Js Frontend Developer interview -

  1. What is Debouncing in JavaScri...read more
  2. What is an Arrow Functi...read more
  3. Asked about debouncing and throttle (I mentioned them in projects). Then told m...read more

Tell us how to improve this page.

CARS24 React Js Frontend Developer Interview Process

based on 6 interviews

1 Interview rounds

  • Coding Test Round
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 434 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 332 Interviews
BlackBuck Interview Questions
3.8
 • 179 Interviews
Tata 1mg Interview Questions
3.6
 • 149 Interviews
Digit Insurance Interview Questions
3.9
 • 145 Interviews
Paisabazaar.com Interview Questions
3.4
 • 142 Interviews
Urban Company Interview Questions
3.4
 • 136 Interviews
Ninjacart Interview Questions
3.9
 • 96 Interviews
View all
Retail Associate
729 salaries
unlock blur

₹2 L/yr - ₹4.8 L/yr

Team Lead
454 salaries
unlock blur

₹2 L/yr - ₹10.3 L/yr

Retail Manager
433 salaries
unlock blur

₹2.7 L/yr - ₹7.2 L/yr

Evaluation Engineer
418 salaries
unlock blur

₹1.1 L/yr - ₹4.8 L/yr

Relationship Manager
324 salaries
unlock blur

₹2.3 L/yr - ₹7.2 L/yr

Explore more salaries
Compare CARS24 with

Udaan

3.9
Compare

Indiamart Intermesh

3.6
Compare

Swiggy

3.8
Compare

BlackBuck

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