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

Updated 15 Nov 2024

Top CARS24 Software Developer Interview Questions and Answers

  • Q1. Merge Two Sorted Linked Lists Problem Statement You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the ...read more
  • Q2. Sort 0 1 2 Problem Statement Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array. Input: The first line contains ...read more
  • Q3. How do you debug the root cause of lag on a screen?
View all 12 questions

CARS24 Software Developer Interview Experiences

4 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Implement an immutable class.
  • Ans. 

    An immutable class is a class whose instances cannot be modified after creation.

    • Use final keyword for class declaration to prevent inheritance

    • Make all fields private and final to prevent modification

    • Do not provide setter methods, only getter methods should be used

  • Answered by AI
  • Q2. Implement a springboot service that intercepts http requests.
  • Ans. 

    Implement a Springboot service to intercept HTTP requests.

    • Create a Springboot application with necessary dependencies.

    • Implement a custom interceptor by extending HandlerInterceptorAdapter.

    • Override preHandle and postHandle methods to intercept requests and responses.

    • Register the interceptor in the WebMvcConfigurerAdapter configuration class.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Dsa question based on dp

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Software Developer Interview Questions & Answers

user image siddharth jain

posted on 27 Oct 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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. Implementation of LRU cache
  • Ans. 

    LRU cache is a data structure that stores the most recently used items, discarding the least recently used items when full.

    • Use a doubly linked list to keep track of the order of items based on their usage.

    • Use a hash map to quickly access items in the cache.

    • When a new item is accessed, move it to the front of the linked list. If the cache is full, remove the item at the end of the list.

  • Answered by AI
  • Q2. Implementation of HashMap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap is implemented using an array of linked lists or a balanced tree to handle collisions.

    • It uses a hash function to map keys to indices in the array.

    • Example: HashMap map = new HashMap<>(); map.put("key", 123); int value = map.get("key");

  • Answered by AI

Skills evaluated in this interview

I was interviewed before Apr 2021.

Round 1 - Telephonic Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

It was in the mid day and since I applied for a Frontend role the discussion was majorly around data structure and bit of Javascript.
The interviewer was helping and good listener.

  • Q1. 

    Merge Two Sorted Linked Lists Problem Statement

    You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.

    ...
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was more of a in depth round on the framework I'm working on and problem solving.

  • Q1. What is the event loop and what is its significance?
  • Q2. Can you provide examples of output-based questions in JavaScript that utilize browser APIs?
  • Q3. How would you design a system to support localization in a mobile app?
Round 3 - Face to Face 

(3 Questions)

Round duration - 75 Minutes
Round difficulty - Hard

It was more of a fitment/managerial round.
Didn't had any coding questions, but was asked more on approaches and optimisations.
Discussions on the project you have worked on.

  • Q1. You need to find the fastest 3 horses out of a group, given that you can only race 5 horses at a time. How would you approach this problem?
  • Q2. How do you debug the root cause of lag on a screen?
  • Q3. Can you explain the architecture of the app you have recently worked on?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNo criteriaCars24 interview preparation:Topics to prepare for the interview - Data Structures Algorithms, Javascript, System DesignTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Get your JS fundamentals right (if applying for a Frontend role, https://javascript.info/ is a good start)
Tip 2 : Apart from preparing data structures, practise on the communication skills as well (prepare your introduction, be a good listener and on spot improvisation plays key roles)

Application resume tips for other job seekers

Tip 1 : highlight projects related to the job profile in your resume and mention what was your contribution in them precisely in 1/2 lines.
Tip 2 : Include URLs to applications/projects that you have build and your achievements/blog (if any)

Final outcome of the interviewSelected

Skills evaluated in this interview

CARS24 interview questions for designations

 Senior Software Developer

 (2)

 Software Engineer

 (3)

 Software Engineer2

 (1)

 Senior Developer

 (1)

 Salesforce Developer

 (1)

 Senior Software Engineer

 (5)

 React Native Developer

 (5)

 Senior Java Developer

 (1)

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tree question dsa
  • Q2. Fibonacci sequence question

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1 - Technical: The first round involved solving one tree-based question and one array-based question. I was also asked about object-oriented programming concepts, Git commands, and SQL queries. In addition, I faced questions based on my resume projects, and I was asked to explain the difference between a primary key and a unique key.

Round 2 - Technical: The second round focused more on system design and APIs. I was asked to explain the difference between PUT and POST in REST APIs, design the database schema of one of my projects, and discuss inheritance and access modifiers (public, private, protected). Git commands were also covered. A scenario-based question was presented: "How would you send an email to a million users, ensuring that if an email fails, the system retries sending it three times? If the retries fail, the system should move on to the next email. Additionally, if the system crashes after sending 1000-2000 emails, how would you ensure that upon restart, it resumes from where it left off without resending emails?"

The HR was friendly, clearly explained the next steps, and provided constructive feedback. Overall, it was a positive interview experience.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The exam duration is one and a half hours.

Round 2 - Coding Test 

The total exam time is one and a half hours.

Round 3 - Group Discussion 

It encompasses all topics related to full stack development.

Round 4 - Technical 

(2 Questions)

  • Q1. Asks questions on SQL
  • Q2. Asks question in typical topics
Round 5 - HR 

(1 Question)

  • Q1. Where do you see yourself in two years?
  • Ans. 

    In two years, I see myself as a senior software developer leading a team on innovative projects.

    • Advancing to a senior software developer role

    • Leading a team on new and innovative projects

    • Continuing to enhance my technical skills through ongoing learning and training

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Explain Deadlock?
  • Q2. Explain Red Black Tree?
  • Q3. Find local minima in a 1-D array?
  • Q4. Find local minima in 2-D array?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. LRU Cache - how to tackle
  • Ans. 

    LRU Cache is a data structure that maintains a list of items in order of most recently used to least recently used.

    • Implement using a doubly linked list and a hashmap for efficient operations

    • When an item is accessed, move it to the front of the list

    • When the cache is full, remove the least recently used item from the end of the list

  • Answered by AI
  • Q2. LRU Cache implementation based on a real time system. How would the main work which will be called etc etc
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Easy level to Medium level

Round 2 - Coding Test 

2 Easy questions of DSA

Round 3 - One-on-one 

(2 Questions)

  • Q1. One DSA question
  • Q2. Normal discussion about tech stack
Round 4 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Why do you want to join digit?

Interview Preparation Tips

Interview preparation tips for other job seekers - Go easy.. Nothing is hard in digit hiring
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Easy to medium questions, Questions on DSA and Node.js.

Round 2 - Technical 

(2 Questions)

  • Q1. Valid parenthesis
  • Q2. Three sum problem

Interview Preparation Tips

Topics to prepare for Zetwerk Software Developer interview:
  • js
  • node.js
  • dsa

CARS24 Interview FAQs

How many rounds are there in CARS24 Software Developer interview?
CARS24 interview process usually has 1-2 rounds. The most common rounds in the CARS24 interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for CARS24 Software 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 Angularjs, CSS, HTML, Javascript and React.Js.
What are the top questions asked in CARS24 Software Developer interview?

Some of the top questions asked at the CARS24 Software Developer interview -

  1. Implement a springboot service that intercepts http reques...read more
  2. Implementation of LRU ca...read more
  3. Implementation of Hash...read more

Tell us how to improve this page.

CARS24 Software Developer Interview Process

based on 3 interviews

Interview experience

3
  
Average
View more
CARS24 Software Developer Salary
based on 34 salaries
₹8 L/yr - ₹27.5 L/yr
108% more than the average Software Developer Salary in India
View more details

CARS24 Software Developer Reviews and Ratings

based on 6 reviews

4.1/5

Rating in categories

4.3

Skill development

4.5

Work-life balance

4.5

Salary

4.3

Job security

4.5

Company culture

4.6

Promotions

4.5

Work satisfaction

Explore 6 Reviews and Ratings
Retail Associate
725 salaries
unlock blur

₹1.9 L/yr - ₹4.8 L/yr

Evaluation Engineer
462 salaries
unlock blur

₹1.4 L/yr - ₹4.8 L/yr

Team Lead
442 salaries
unlock blur

₹2 L/yr - ₹10.2 L/yr

Retail Manager
428 salaries
unlock blur

₹2.4 L/yr - ₹7.2 L/yr

Key Account Manager
375 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Explore more salaries
Compare CARS24 with

Mahindra First Choice Wheels

3.8
Compare

Truebil

3.8
Compare

Udaan

4.0
Compare

Indiamart Intermesh

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