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

Updated 8 Jan 2025

CARS24 React Native Developer Interview Experiences

5 interviews found

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

I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The first round consisted of a coding exercise along with fundamental questions related to React Native, JavaScript, and inquiries about objects and arrays.

Round 2 - Coding Test 

(1 Question)

  • Q1. Native modules, useRef, Flatlist

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare to use Native Modules while maintaining a fast coding pace.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Javascript basics
Round 2 - Technical 

(3 Questions)

  • Q1. React native basics
  • Q2. Scroll vs flatlist
  • Ans. 

    FlatList is more efficient for rendering large lists with better performance compared to ScrollView.

    • FlatList is optimized for rendering long lists by only rendering the items that are currently visible on the screen.

    • ScrollView renders all of its children at once, which can lead to performance issues with large lists.

    • FlatList also provides built-in support for pull-to-refresh, infinite scrolling, and item separators.

    • Scr...

  • Answered by AI
  • Q3. Design carousel in react native
  • Ans. 

    Designing a carousel in React Native involves creating a horizontal scroll view with swipe functionality.

    • Use ScrollView component with horizontal prop to create the carousel layout.

    • Render multiple items inside the ScrollView to display carousel content.

    • Implement swipe gestures to navigate between carousel items.

    • Consider using libraries like 'react-native-snap-carousel' for additional features and customization.

  • Answered by AI

Skills evaluated in this interview

React Native Developer Interview Questions Asked at Other Companies

Q1. 3. What is the use useEffect Hook in react native? and how you re ... read more
asked in Cognizant
Q2. what are hooks and what are the hooks you have used
asked in Simform
Q3. 1. What is git rebase used for? 2. What is Flipper used for? 3. W ... read more
asked in Cognizant
Q4. Are you familiar with new architecture of React native
Q5. 7. What is the best practice for calling API's?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Create a photo galary using flatList

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

(1 Question)

  • Q1. Basics of JavaScript

CARS24 interview questions for designations

 React Js Frontend Developer

 (6)

 Software Developer

 (5)

 Senior Developer

 (1)

 Salesforce Developer

 (1)

 Senior Software Developer

 (2)

 Front end Developer

 (1)

 Senior Java Developer

 (1)

 Senior Software Engineer

 (6)

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

Interview Questionnaire 

2 Questions

  • Q1. UseRef and other hooks, Architecture of RN, Optimization
  • Q2. JS questions. Basic and Advanced, one simple rn counter

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep the basics very clear and practice beforehand for making counter in react native etc

Interview questions from similar companies

Interview Questionnaire 

7 Questions

  • Q1. Some of The most important Salary Immideyetly Processes
  • Q2. Oneandof Yaer NoukrNoukri.com *****
  • Q3. Noukri.com Online Payment
  • Q4. Fast forward Noukri.com
  • Q5. Brhamanc IT Course hdca and core java programming language Brhamanc IT Information Technology World Asia Pacific region India Tamilnadu Coimbatore Chinnathdagam 641108
  • Q6. Brhamanc IT Course hdca and core java programming language
  • Q7. QUALIFICATION:10TH STANDARD

I applied via Company Website and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Fibonacci series, Prime function, linked lisk value access, query

Interview Preparation Tips

Interview preparation tips for other job seekers - First a test based on amcat. Followed by two technical interview. First Tech Interview basis and overview of you concept of ds and algo will ne asked. In second Tech interview indepth concept of topics such as arrays, linked list, os,algo, etc will be asked. Prepare ds and algo concept, dbms query & concept, internet basis such as protocols, methods,etc.

Best of luck
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

Data Structures, Coding MCQs

Round 2 - Technical 

(2 Questions)

  • Q1. What is Data Structure
  • Ans. 

    Data structures are organized formats for storing, managing, and accessing data efficiently.

    • 1. Types: Common data structures include arrays, linked lists, stacks, queues, trees, and graphs.

    • 2. Arrays: Fixed-size collections of elements, e.g., [1, 2, 3, 4].

    • 3. Linked Lists: Collections of nodes where each node points to the next, e.g., 1 -> 2 -> 3.

    • 4. Stacks: Last-in, first-out (LIFO) structures, e.g., function call ...

  • Answered by AI
  • Q2. Write DFS Algorithm
  • Ans. 

    Depth-First Search (DFS) is a graph traversal algorithm that explores as far as possible along each branch before backtracking.

    • DFS uses a stack data structure, either explicitly or via recursion.

    • It starts from a selected node and explores each branch before backtracking.

    • Example: In a binary tree, DFS can be implemented using pre-order, in-order, or post-order traversal.

    • DFS can be used to find connected components in a ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Familiar in Data Structures and Algorithms
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Stock buy and sell with at most 2 transaction
  • Ans. 

    Implement a solution to find the maximum profit from buying and selling stocks with at most 2 transactions.

    • Use dynamic programming to keep track of maximum profit at each day with 0, 1, or 2 transactions.

    • Consider the possibility of splitting the transactions into two separate parts.

    • Calculate the maximum profit by iterating through the prices array and updating the maximum profit accordingly.

  • Answered by AI
  • Q2. Binary search to find target
  • Ans. 

    Binary search is a divide and conquer algorithm that efficiently finds a target value in a sorted array.

    • Divide the array in half and compare the target value with the middle element

    • If the target is less than the middle element, search the left half. If greater, search the right half

    • Repeat the process until the target is found or the subarray is empty

  • Answered by AI
Round 2 - System Design 

(2 Questions)

  • Q1. General about project
  • Q2. Design paytm wallet
  • Ans. 

    Design a digital wallet system similar to Paytm.

    • Allow users to add money to their wallet using various payment methods like credit/debit cards, net banking, UPI, etc.

    • Enable users to make payments for various services like mobile recharge, bill payments, online shopping, etc.

    • Implement security measures like two-factor authentication, encryption of sensitive data, and regular security audits.

    • Provide features like transac...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2023. 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 - Coding Test 

Seat reservation system
bit manipulation
binary tree related

Round 3 - Technical 

(1 Question)

  • Q1. Bfs / dfs traversal question

CARS24 Interview FAQs

How many rounds are there in CARS24 React Native Developer interview?
CARS24 interview process usually has 1-2 rounds. The most common rounds in the CARS24 interview process are Technical and Coding Test.
How to prepare for CARS24 React Native Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at CARS24 . The most common topics and skills that interviewers at CARS24 expect are React Native, Swift, Android, IOS and Java.
What are the top questions asked in CARS24 React Native Developer interview?

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

  1. design carousel in react nat...read more
  2. Scroll vs flatl...read more
  3. UseRef and other hooks, Architecture of RN, Optimizat...read more

Tell us how to improve this page.

CARS24 React Native Developer Interview Process

based on 4 interviews

1 Interview rounds

  • Technical Round
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 434 Interviews
Udaan Interview Questions
3.9
 • 334 Interviews
Meesho Interview Questions
3.7
 • 333 Interviews
BlackBuck Interview Questions
3.8
 • 180 Interviews
Tata 1mg Interview Questions
3.6
 • 151 Interviews
Digit Insurance Interview Questions
3.9
 • 146 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
CARS24 React Native Developer Salary
based on 7 salaries
₹16 L/yr - ₹32 L/yr
287% more than the average React Native Developer Salary in India
View more details

CARS24 React Native Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Retail Associate
690 salaries
unlock blur

₹1.9 L/yr - ₹5 L/yr

Retail Manager
427 salaries
unlock blur

₹2.7 L/yr - ₹7.2 L/yr

Team Lead
403 salaries
unlock blur

₹2 L/yr - ₹10.2 L/yr

Evaluation Engineer
379 salaries
unlock blur

₹1.8 L/yr - ₹4.8 L/yr

Relationship Manager
327 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