Upload Button Icon Add office photos

Filter interviews by

Carwale Full Stack Developer Interview Questions and Answers

Updated 4 Aug 2024

Carwale Full Stack Developer Interview Experiences

2 interviews found

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

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

Round 1 - Coding Test 

4 questions on codebyte platform
1 easy combination sum
2. medium spiral traversal
3. medium question based on backtracking
4. medium to hard question based on anagrams

Round 2 - Technical 

(1 Question)

  • Q1. Find element in rotated sorted array
  • Ans. 

    Use binary search to find the target element in a rotated sorted array.

    • Perform binary search to find the pivot element where the array is rotated.

    • Based on the pivot element, determine which half of the array to search for the target element.

    • Continue binary search in the appropriate half of the array to find the target element.

  • Answered by AI
Round 3 - System Design 

(1 Question)

  • Q1. In depth questions on core concepts, system design questions, resume deep dive
Round 4 - HR 

(1 Question)

  • Q1. Tech+HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, focus on basics and have a good presence of mind you'll face various unexpected questions but try to tackle them logically

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jul 2023. There were 4 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 

4 coding questions. 1 easy, 2 medium, 1 hard.Try to solve 3 out of them.

Round 3 - Technical 

(2 Questions)

  • Q1. DSA based interview round.
  • Q2. Simple array and stack related questions were asked.
Round 4 - Technical 

(2 Questions)

  • Q1. Detailed questions based on your projects,
  • Q2. Questions related to MERN as I have done a MERN project in past.

Interview Preparation Tips

Interview preparation tips for other job seekers - Study each and every technology mentioned in your project.

Full Stack Developer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Query and Matrix Problem Statement You are given a binary matrix ... read more
asked in Accenture
Q2. Find Duplicates in an Array Given an array ARR of size 'N', where ... read more
asked in MakeMyTrip
Q3. Tower of Hanoi Problem Statement You have three rods numbered fro ... read more
Q4. Maximum Difference Problem Statement Given an array ARR of N elem ... read more
asked in Samsung
Q5. LCA of Binary Tree Problem Statement You are given a binary tree ... read more

Interview questions from similar companies

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

It was an online test

Round 2 - Technical 

(1 Question)

  • Q1. Basic DSA Questions
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Web development
  • Q2. What is useref in react
  • Ans. 

    useRef is a hook in React that allows you to create a mutable ref object.

    • useRef is used to access DOM nodes or store mutable values that persist across renders.

    • It can be used to focus an input field, measure the size of an element, or store previous values.

    • Example: const inputRef = useRef(null);

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. React in deep and project
  • Ans. 

    React is a JavaScript library for building user interfaces, commonly used in web development projects.

    • React is a declarative, efficient, and flexible JavaScript library for building user interfaces.

    • It allows developers to create reusable UI components that can be easily composed to build complex user interfaces.

    • React uses a virtual DOM to improve performance by only updating the parts of the actual DOM that have change...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself

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 before Oct 2022. There were 5 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 - HR 

(1 Question)

  • Q1. Asked for experience and background
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions
Round 4 - Coding Test 

Prectical test on relevant experience and position requirements.

Round 5 - HR 

(1 Question)

  • Q1. Salary discussion and all
Round 1 - Aptitude Test 

Q 1 print string in tringal farmat
Q2 print duplicate string in two array

Round 2 - Technical 

(1 Question)

  • Q1. About core java over all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very comfortable and confident
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 Apr 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Difference between exe and dll
  • Ans. 

    Exe is an executable file that can be run independently, while DLL is a dynamic link library that is loaded by programs when needed.

    • Exe stands for executable file, while DLL stands for dynamic link library.

    • Exe files can be run independently, while DLL files are loaded by programs when needed.

    • Exe files have their own memory space, while DLL files share memory space with the calling process.

    • Exe files are typically larger...

  • Answered by AI
  • Q2. What are http verbs
  • Ans. 

    HTTP verbs are used to indicate the action to be performed on a resource in a RESTful API.

    • GET - retrieve data from a server

    • POST - send data to a server to create/update a resource

    • PUT - update a resource on the server

    • DELETE - remove a resource from the server

    • PATCH - partially update a resource on the server

  • Answered by AI
  • Q3. What is method overloading and overriding Output based question
  • Q4. Linq query to filter data and group by
  • Ans. 

    Use Linq query to filter data and group by in C#

    • Use 'Where' method to filter data based on a condition

    • Use 'GroupBy' method to group the filtered data based on a key

    • Example: var result = data.Where(x => x.Property == value).GroupBy(x => x.GroupKey)

  • Answered by AI
  • Q5. Attribute in mvc
  • Ans. 

    An attribute in MVC is a piece of metadata that provides additional information about a model, view, or controller.

    • Attributes are used to add behavior or data to a class or method in MVC

    • They can be used for validation, authorization, caching, etc.

    • Examples include [Required], [Authorize], [OutputCache]

  • Answered by AI

Interview Preparation Tips

Topics to prepare for BOLD Technology Systems Full Stack Software Developer interview:
  • OOPS
  • dependency injection
  • Angular
  • .Net Core
Interview preparation tips for other job seekers - Deep dive in basics as interviewer focus more on basics

Skills evaluated in this interview

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

Machine coding round

Round 2 - Technical 

(2 Questions)

  • Q1. Explain your project
  • Ans. 

    Developed a web application for managing inventory and sales for a retail store

    • Used React.js for front-end development

    • Implemented Node.js for back-end functionality

    • Utilized MongoDB for database management

  • Answered by AI
  • Q2. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
Interview experience
4
Good
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

I applied via campus placement at Pondicherry University and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude with tracing program

Round 2 - Coding Test 

3 problem with easy to hard

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

I was interviewed in May 2024.

Round 1 - Aptitude Test 

It was having english and maths questions

Round 2 - Coding Test 

Code was easy kindly do pratice

Carwale Interview FAQs

How many rounds are there in Carwale Full Stack Developer interview?
Carwale interview process usually has 4 rounds. The most common rounds in the Carwale interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Carwale Full Stack 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 Carwale. The most common topics and skills that interviewers at Carwale expect are C#, JQuery, Javascript, .Net and ASP.
What are the top questions asked in Carwale Full Stack Developer interview?

Some of the top questions asked at the Carwale Full Stack Developer interview -

  1. find element in rotated sorted ar...read more
  2. In depth questions on core concepts, system design questions, resume deep d...read more
  3. Simple array and stack related questions were ask...read more

Tell us how to improve this page.

Carwale Full Stack Developer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Tracxn Interview Questions
3.1
 • 100 Interviews
InvestoXpert Interview Questions
4.5
 • 62 Interviews
MagicBricks Interview Questions
3.4
 • 57 Interviews
Zolo Interview Questions
3.4
 • 49 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Uplers Interview Questions
4.0
 • 41 Interviews
Impact Guru Interview Questions
4.4
 • 37 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
View all
Carwale Full Stack Developer Salary
based on 12 salaries
₹7.5 L/yr - ₹10 L/yr
At par with the average Full Stack Developer Salary in India
View more details
Accounts Manager
133 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Key Account Manager
91 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Product Manager
28 salaries
unlock blur

₹12 L/yr - ₹25 L/yr

Regional Manager
28 salaries
unlock blur

₹4.5 L/yr - ₹10.2 L/yr

Software Developer
23 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Explore more salaries
Compare Carwale with

MagicBricks

3.4
Compare

Impact Guru

4.4
Compare

Netmeds.com

3.6
Compare

Tracxn

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