Upload Button Icon Add office photos

Filter interviews by

Carwale Interview Questions, Process, and Tips

Updated 3 Jan 2025

Top Carwale Interview Questions and Answers

View all 58 questions

Carwale Interview Experiences

Popular Designations

41 interviews found

I applied via Recruitment Consultant and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Tell me about yourself.
  • Q2. What are some of your strengths and weaknesses when it comes to your work?
  • Q3. Tell me about your dream/passion.
  • Q4. Why do you want to join this company?
  • Q5. What are your future goals?

Interview Preparation Tips

Interview preparation tips for other job seekers - All they look for is a confident person, does not matter what you say just don't shut up or think go at it as a chatty person.

Senior Executive Interview Questions asked at other Companies

Q1. If oneday the men power is very less due to some problem and lode is more that day as a senior Exucative, how will u handle your team ?
View answer (56)

I applied via Campus Placement and was interviewed in Feb 2020. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. 1. Tell me about yourself.
  • Q2. 2. Why Carwale and what you know about Carwale?
  • Q3. What's your strength and weakness?
  • Q4. Where do you see yourself after 5 yrs
  • Q5. Hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself and dressed Properly.

Accounts Manager Interview Questions asked at other Companies

Q1. Tell me an analysis about how to factor customer or prospects for your product segment
View answer (5)

I applied via Naukri.com and was interviewed before Jun 2021. 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 - HR 

(1 Question)

  • Q1. Genral questions nothing special

Interview Preparation Tips

Interview preparation tips for other job seekers - Was normal not such difficult Genral Questions were asked

Area Sales Manager Interview Questions asked at other Companies

Q1. How to handling position and how to coverage rout and sales teams
View answer (23)

I applied via Campus Placement and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. System design for twitter.
  • Ans. 

    Twitter system design involves multiple components such as servers, databases, caching, and APIs.

    • Use sharding to distribute data across multiple servers

    • Implement caching to reduce database load

    • Use message queues for handling high traffic

    • Implement APIs for user authentication and data retrieval

    • Use load balancers to distribute traffic evenly

    • Implement a search engine for efficient search functionality

  • Answered by AI
  • Q2. Given two arrays that one array consists of the arrival time of trains and the other one consists of the departure time of trains. find out the minimum number of platforms so that none of them should crash...
  • Ans. 

    The minimum number of platforms needed to avoid train crashes based on arrival and departure times.

    • Sort the arrival and departure arrays in ascending order.

    • Initialize a variable to keep track of the maximum number of platforms needed.

    • Iterate through the arrival and departure arrays simultaneously.

    • If the current arrival time is less than or equal to the current departure time, increment the platform count.

    • If the current...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I would suggest, don't give up. If you are given any questions then think to give them your solution. Interviewers are too supportive, if you get stuck at any point they will give you hints. They won't judge on this basis that outputs are correct or not maybe you will solve it partially but you will get some plus points for your approach also.

Skills evaluated in this interview

Top Carwale Software Developer Interview Questions and Answers

Q1. given two arrays that one array consists of the arrival time of trains and the other one consists of the departure time of trains. find out the minimum number of platforms so that none of them should crash.
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)

Carwale interview questions for popular designations

 Accounts Manager

 (5)

 SDE (Software Development Engineer)

 (4)

 Software Developer

 (3)

 Software Engineer

 (3)

 Associate Engineer

 (2)

 Associate Software Engineer

 (2)

 Front end Developer

 (2)

 Full Stack Developer

 (2)

I was interviewed in Jan 2016.

Interview Questionnaire 

16 Questions

  • Q1. Based on project. What is difference between REST and SOAP? And couple of other questions
  • Q2. Delete nodes in linkedlist which have a greater value on right side?
  • Ans. 

    Delete nodes in linkedlist with greater value on right side

    • Traverse the linked list from right to left

    • Compare each node with the maximum value seen so far

    • If the current node has a greater value, delete it

    • Update the maximum value seen so far

  • Answered by AI
  • Q3. Check if given tree is BST or not?
  • Ans. 

    Check if given tree is BST or not

    • A binary tree is a BST if the value of each node is greater than all the values in its left subtree and less than all the values in its right subtree

    • Perform an in-order traversal of the tree and check if the values are in ascending order

    • Alternatively, for each node, check if its value is within the range defined by its left and right subtrees

  • Answered by AI
  • Q4. One adhoc question on strings?
  • Q5. One adhoc question from the online test itself? Ask me how i approached this problem and ask me to write code and explain?
  • Q6. What is OOP? Describe its properties?
  • Ans. 

    OOP is a programming paradigm that organizes code into objects with properties and behaviors.

    • OOP stands for Object-Oriented Programming.

    • It focuses on creating reusable code by organizing it into objects.

    • Objects have properties (attributes) and behaviors (methods).

    • Encapsulation, inheritance, and polymorphism are key principles of OOP.

    • Example: In Java, a class represents an object with its properties and methods.

  • Answered by AI
  • Q7. What is runtime polymorphism and compile time polymorphism? Difference between them?
  • Ans. 

    Runtime polymorphism is when the method to be executed is determined at runtime, while compile-time polymorphism is determined at compile-time.

    • Runtime polymorphism is achieved through method overriding.

    • Compile-time polymorphism is achieved through method overloading.

    • Runtime polymorphism is also known as dynamic polymorphism.

    • Compile-time polymorphism is also known as static polymorphism.

    • Runtime polymorphism is associate...

  • Answered by AI
  • Q8. What are virtual functions?
  • Ans. 

    Virtual functions are functions in a base class that can be overridden by derived classes to provide different implementations.

    • Virtual functions are declared in a base class and can be overridden in derived classes.

    • They allow polymorphism, where a pointer to a base class can invoke different derived class implementations.

    • Virtual functions are resolved at runtime based on the actual object type.

    • They are used to achieve

  • Answered by AI
  • Q9. What is abstract class?
  • Ans. 

    An abstract class is a class that cannot be instantiated and is meant to be subclassed.

    • An abstract class can have both abstract and non-abstract methods.

    • It can provide a common interface for its subclasses.

    • Subclasses of an abstract class must implement all the abstract methods.

    • Abstract classes can have constructors.

    • An abstract class cannot be instantiated directly, but its subclasses can be.

  • Answered by AI
  • Q10. What is inheritance? What are diffence types of inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows code reuse and promotes code organization.

    • There are different types of inheritance: single inheritance, multiple inheritance, multilevel inheritance, hierarchical inheritance, and hybrid inheritance.

    • Single inheritance involves a class inheriting from a single base class.

    • Multipl...

  • Answered by AI
  • Q11. Ask me about my coding experience how i started since i was from non IT Branch?
  • Q12. Print fibonaaci series less than equal to 1000?
  • Ans. 

    Print Fibonacci series less than or equal to 1000.

    • Start with two variables, a and b, initialized to 0 and 1 respectively.

    • Print a and update a to the value of b, and b to the sum of the previous a and b.

    • Repeat until a exceeds 1000.

  • Answered by AI
  • Q13. In the above question calculate sum of only even numbers of fibonaaci series?
  • Ans. 

    The sum of even numbers in the Fibonacci series is calculated.

    • Generate the Fibonacci series up to a given limit

    • Iterate through the series and check if each number is even

    • If the number is even, add it to the sum

    • Return the sum of the even numbers

  • Answered by AI
  • Q14. Optimized the above solution less than O(n). For this you have to think out of the box
  • Q15. What are stacks and its properties?
  • Ans. 

    Stacks are a data structure that follows the Last-In-First-Out (LIFO) principle.

    • Stacks have two main operations: push (adds an element to the top) and pop (removes the top element).

    • Stacks can be implemented using arrays or linked lists.

    • Common applications of stacks include function call stack, undo/redo operations, and expression evaluation.

    • Example: A stack of books, where the last book placed is the first one to be re

  • Answered by AI
  • Q16. Now implement one extra funtion called max() with give the maximum of all elements in the above stack with optimized time and space complexity?
  • Ans. 

    Implement max() function to find the maximum element in a stack with optimized time and space complexity.

    • Use an additional stack to keep track of the maximum element at each step.

    • When pushing an element onto the stack, compare it with the top element of the maximum stack and push the larger one.

    • When popping an element from the stack, also pop the top element from the maximum stack if they are equal.

    • The top element of t...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 4 questions of varying difficulty. Those attempted atleast 2 were selected for the next round.
Q1) Question based on Tower of hanoi problem. I solved it using dynamic programming.
Q2) Check for balanced parenthesis in an expression.
Q3)One adhoc question to calculate the maximum number of people present at a particular time in a hotel.
Q4) One other question based on string algorithms.
two adhoc questions
Tips: Lead in this round can benefit you in next rounds, so give your best shot
Total Questions: 4

Round: Technical Interview
Experience: The interviewer asked to write the full code for a couple of questions only
Tips: Prepare DS nicely.
Strong OOPs concepts.
They want optimized solution of all.
Be honest with your interviewer.
Don't pretend.

Round: Other Interview
Experience: Ask me write and compile the codes.
The interviewer was very friendly and helping nature.
He was giving hints where i stuck.
He was checking my thinking and prolem solving capability.
Tips: Correct explaination matters,time doesn't.Take your time.
Ask fro hint.
Be yourself.Don't pretend.
All the best :)

Skill Tips: Have conceptual knowledge of subjects, don't just mug up things. Interviewers are smart enough to make it out anyway.
Skills: C++, Object Oriented Programming, Algorithms And Data Structures, Ability To Think
College Name: NIT Allahabad
Motivation: Flat hierarchy.
Good progress by the company in its last 10 years of expansion.
opportunity to work with best minds of the country.
Decent salary.

Skills evaluated in this interview

Top Carwale SDE (Software Development Engineer) Interview Questions and Answers

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

Get interview-ready with Top Carwale Interview Questions

Interview Questionnaire 

8 Questions

  • Q1. Given a balance and 100 coins;out of which,one is heavier. Find minimum number of weighing required to find out heavier coin?
  • Ans. 

    Find minimum number of weighings required to find the heavier coin out of 100 coins with a balance.

    • Divide the coins into 3 groups of 33 each and weigh 2 groups against each other.

    • If one group is heavier, divide it into 3 groups of 11 each and weigh 2 groups against each other.

    • Repeat the process until the heavier coin is found.

    • Minimum number of weighings required is 4.

  • Answered by AI
  • Q2. Questions on Graph like DFS and BFS traversal
  • Q3. Explain Prims and Kruskal’s algorithms
  • Ans. 

    Prims and Kruskal's algorithms are used to find the minimum spanning tree in a graph.

    • Prims algorithm starts with a single vertex and adds the minimum weight edge to the tree until all vertices are included.

    • Kruskal's algorithm starts with all vertices as separate trees and merges them by adding the minimum weight edge until all vertices are included.

    • Both algorithms have a time complexity of O(E log V) where E is the num...

  • Answered by AI
  • Q4. A graph was shown and asked to form Minimum Spanning Tree using above two algorithms. (Also asked if I can code it)
  • Q5. Delete nodes in a linked list which have greater value on right side
  • Ans. 

    Delete nodes in a linked list which have greater value on right side

    • Traverse the linked list and compare each node with its right side node

    • If the current node's value is less than its right side node, delete the current node

    • Repeat the process until the end of the linked list is reached

  • Answered by AI
  • Q6. Write code for reversing the linked list
  • Ans. 

    Code for reversing a linked list

    • Create a new empty linked list

    • Traverse the original linked list and insert each node at the beginning of the new list

    • Return the new list

  • Answered by AI
  • Q7. Difference between Methods and Constructors.(At least five)
  • Ans. 

    Methods are functions that perform a specific task, while constructors are special methods that initialize objects.

    • Constructors have the same name as the class they belong to.

    • Constructors are called automatically when an object is created.

    • Constructors can be overloaded with different parameters.

    • Methods can be called multiple times with different arguments.

    • Methods can have a return type, while constructors do not.

  • Answered by AI
  • Q8. Long discussion on Deadlock(necessary conditions), its prevention and avoidance etc, Bankers Algorithm

Interview Preparation Tips

Round: Test
Experience: Coding Platform : Hackerrank(C/C++/Java)
1) Check for balanced parenthesis in an expression.
2) Count all possible paths from top left to bottom right of a MxN matrix. (from each cell you can move only to right or down)
3) Given an array of size n and its elements, you have to include k elements such that the difference between the highest and lowest number in these k elements is minimum.
4) Find number of pair in a given array which is equal to given sum.
Duration: 120 minutes
Total Questions: 4

Round: Technical Interview
Experience: At the start of interview I was asked to Rate myself(out of 10) in Aptitude, Puzzle and then for C++.
For both I rated myself closer to 8.




Round: TECHNICAL AND HR
Experience: Icebreaker question- Tell me about yourself.
1. A question on tree Data structure.
2. I was asked about my Project work in college which was on Operating System. Detailed explanation why and how I picked this project. Who were the group members, how was the group formed, how much was the involvement of college faculty? What is its use in future? What was my role in the project?
The interviewer pointed out some flaw in algorithms used in project. Basically he asked me to think of Data Structures through which insertion can be done in O(1) as well as deletion and retrieval in O(1)…like the implementation of LRU cache algorithm.
The process took 40 minutes.
3. Discussion on second project which was on knn algorithm.
4. Asked me about tiny Url or Url shortener. Implement it.
Tips: The interviews were really thought provoking and the interviewers were helpful and friendly. It felt like solving problems as a team and not at all like a test. The interviewers were quite receptive to our questions and patient.

Skills: Object Oriented Programming (OOP) Basics, Puzzle Solving Capability, Operating System Basics, Algorithm, Data Structures
College Name: NIT Bhopal

Skills evaluated in this interview

Top Carwale SDE (Software Development Engineer) Interview Questions and Answers

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

Interview Preparation Tips

Round: Test
Experience: Online coding session :
Q1). Check for balanced parenthesis in an expression.
Q2). Count all possible paths from top left to bottom right of a M x N matrix.
(From each cell you can move only to right or down).
Q3) Count number of pairs with given sum in an array.
Q4). Print (N-K) values corresponding to min of each K-sized chunk in a given array of size N.

Tips: Lead in this round can benefit you in next rounds, so give your best shot.
Duration: 120 minutes minutes
Total Questions: 4

Round: Technical Interview
Experience: This was about a 30 min session.
He asked me very easy concept based questions.

Q1). Explain your project briefly.
Q2). Explain multiple inheritance
Q3). Why JAVA doesn’t support multiple inheritance.
Q4). Convert a hexadecimal to binary number and vice versa.
Q5). What are balanced BSTs?
Q6). Explain all possible rotations possible in a balanced BST.
Q7). Write INSERT function for a balanced BST.

Tips: Correct explaination matters,time doesn't.Take your time.

Round: Technical Interview
Experience: This was Technical + HR round :

Q1). Detailed discussion on my intern project.
Asked the shortcomings of the project and approaches to resolve them.
Q2). Discussion on minor project (Threaded download accelerator)
Asked about what all different approaches I could have followed in the project and why didn’t I chose them.
Q3). Favorite subject – I replied OS.
Asked few basic questions-
What are threads? How are they different from process? Explain with example.
I don’t remember the other os questions he asked about.
Q4). Implement Twitter.
It wasn’t easy to make him understand the approach. He was kind of satisfied with my approach at the end.
Q5). Discussion on other projects.
.
HR questions followed.

Tips: Be yourself.Don't pretend.
All the best :)

Skill Tips: Have conceptual knowledge of subjects, don't just mug up things.
Interviewers are smart enough to make it out anyway.
Skills: Logical Thinking, Operating System Basics, Algorithm, Database Management, Data Structures, C++, C
College Name: NIT Bhopal
Motivation: Flat hierarchy.
No cabin culture.
Working at startup is always better because you get to learn a lot of things.
Decent salary.

Top Carwale SDE (Software Development Engineer) Interview Questions and Answers

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

Interview Questionnaire 

14 Questions

  • Q1. Make 24 using 8, 8, 3, 3 using + = / * ( ) .
  • Q2. Find all permutations of a given string. (Not in lexicographic order)
  • Ans. 

    Find all permutations of a given string.

    • Use recursion to swap each character with every other character in the string.

    • Repeat the process for each substring.

    • Add the permutation to an array.

  • Answered by AI
  • Q3. Given an array of size 98 and it has natural numbers from 1-100 but 2 numbers are missing. find them
  • Ans. 

    Given an array of size 98 with natural numbers from 1-100 but 2 numbers are missing, find them.

    • Calculate the sum of all numbers from 1-100 using the formula n(n+1)/2

    • Calculate the sum of all numbers in the array

    • Subtract the sum of array from the sum of all numbers to get the sum of missing numbers

    • Find the missing numbers by iterating through the array and checking which numbers are not present

  • Answered by AI
  • Q4. Fnd if a binary tree is bst or not
  • Ans. 

    Check if a binary tree is a binary search tree or not.

    • Traverse the tree in-order and check if the elements are in sorted order.

    • Check if the left child is less than the parent and the right child is greater than the parent.

    • Use recursion to check if all the subtrees are BSTs.

    • Maintain a range for each node and check if the node value is within that range.

  • Answered by AI
  • Q5. Detect and remove cycle in a linked list
  • Ans. 

    Detect and remove cycle in a linked list

    • Use two pointers, one slow and one fast, to detect a cycle

    • Once a cycle is detected, move one pointer to the head and iterate both pointers until they meet again

    • Set the next node of the last node in the cycle to null to remove the cycle

  • Answered by AI
  • Q6. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
  • Ans. 

    Function to check if a string has all lowercase letters appearing at least once without extra space in O(N) time.

    • Create a boolean array of size 26 to keep track of the occurrence of each letter.

    • Iterate through the string and mark the corresponding index in the array as true.

    • Check if all the elements in the array are true and return yes if so.

    • Alternatively, use a bit vector to keep track of the occurrence of each letter

  • Answered by AI
  • Q7. Convert a given number to its hexadecimal form
  • Ans. 

    Convert a number to its hexadecimal form

    • Use the built-in function to convert the number to hexadecimal

    • Alternatively, use the algorithm to convert the number to hexadecimal manually

    • Ensure to handle negative numbers appropriately

  • Answered by AI
  • Q8. Asked me how I rate myself in various subjects (CN , DBMS , OOPS ,OS). I told him that I am comfortable with OS and OOPS. Then he asked : Why multiple inheritance is not supported in JAVA. I told him tha...
  • Q9. Explain priority scheduling (preemptive , non-preemptive). Explain a case when a low priority process will preempt a high priority process
  • Ans. 

    Priority scheduling is a scheduling algorithm where processes are assigned priorities and executed based on their priority level.

    • Preemptive priority scheduling allows a higher priority process to interrupt a lower priority process that is currently running.

    • Non-preemptive priority scheduling allows a higher priority process to wait until the lower priority process finishes executing.

    • A low priority process can preempt a ...

  • Answered by AI
  • Q10. Brief discussion over one of my project
  • Q11. Explain singleton class and write code for it.
  • Ans. 

    Singleton class is a class that can only have one instance at a time.

    • Singleton pattern is used when we need to ensure that only one instance of a class is created and that instance can be accessed globally.

    • The constructor of a singleton class is always private to prevent direct instantiation.

    • A static method is used to access the singleton instance.

    • Example: public class Singleton { private static Singleton instance = ne...

  • Answered by AI
  • Q12. Develop tic-tac-toe game and write code using concepts of OOPS in CPP. (Initially told me to include artificial intelligence also but was later satisfied without it
  • Ans. 

    Develop tic-tac-toe game using OOPS concepts in CPP.

    • Create a class for the game board

    • Create a class for the players

    • Create a class for the game logic

    • Use inheritance and polymorphism for game objects

    • Implement functions for checking win/lose/draw conditions

  • Answered by AI
  • Q13. Normal HR questions
  • Q14. Long discussion over my projects

Interview Preparation Tips

Round: Test
Experience: Attempt at least 2 questions
Duration: 90 minutes
Total Questions: 4

Round: Technical Interview
Experience: The interviewer asked to write the full code for a couple of questions only.
Tips: Prepare puzzles.
Think loudly.
Ask for a hint if stuck.

Round: Technical Interview
Tips: Be honest with your interviewer. ;)

Skill Tips: Must be capable to solve puzzles as well as coding questions with good speed and accuracy.
Skills: Puzzle Solving Capability, Implementation of code using OOPS., Algorithm, Data Structures, Operating System Basics, Object Oriented Programming (OOP) Basics
College Name: NIT Bhopal
Motivation: Carwale currently has around 100-125 employees. So it's a good platform to learn new technology. The salary is also good.

Skills evaluated in this interview

Top Carwale SDE (Software Development Engineer) Interview Questions and Answers

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

Software Developer Interview Questions & Answers

user image Sonelal Gupta

posted on 4 Sep 2015

I was interviewed in Jan 2016.

Interview Questionnaire 

8 Questions

  • Q1. Find right veiw of a binary tree
  • Ans. 

    To find the right view of a binary tree, we need to traverse the tree and keep track of the rightmost node at each level.

    • Traverse the tree using level order traversal

    • At each level, keep track of the rightmost node

    • Add the rightmost node to the result array

    • Return the result array

  • Answered by AI
  • Q2. Find two missing number from a given array ,without sorting and o(n)
  • Ans. 

    Find two missing numbers from an unsorted array in O(n) time complexity.

    • Calculate the sum of all numbers from 1 to n using the formula n*(n+1)/2

    • Calculate the sum of all numbers in the given array

    • Subtract the sum of array from the sum of all numbers to get the sum of missing numbers

    • Use the sum of missing numbers and the sum of squares of all numbers from 1 to n to calculate the missing numbers using simultaneous equatio

  • Answered by AI
  • Q3. This round based on project
  • Q4. Normal HR question
  • Q5. Find ave salary without disclosing any one salary
  • Ans. 

    To find average salary without disclosing any one salary

    • Collect salaries of all employees

    • Add all salaries and divide by total number of employees

    • Do not disclose any individual salary

  • Answered by AI
  • Q6. One golden bricks n divide it to min number of part so that u can pay each day salary to a worker
  • Ans. 

    Divide a golden brick into minimum parts to pay daily salary to a worker.

    • The number of parts needed will depend on the daily salary of the worker.

    • The size of the parts should be equal.

    • The parts should be small enough to cover the daily salary but large enough to minimize the number of parts.

    • The formula to calculate the number of parts is: number of parts = total value of the golden brick / daily salary

  • Answered by AI
  • Q7. One goat and 100 lion puzzles
  • Q8. Make 4 equal shape part of a cake if u cut 1/4 part already

Interview Preparation Tips

Round: Test
Experience: do atleast 2-3 code

Round: Technical Interview
Experience: its an easy round for me

Round: Puzzle Interview
Experience: i cant two of puzzles ,but selected for next round
Tips: prepare puzzles

Round: Technical Interview
Tips: prepare project and explain every small things to the interviewer

Skills: ds, algo, dbms, os, networking, they required all you should have good knowledge of all these subject
College Name: NIT Bhopal
Motivation: very good work culture and they give 7.04 LPA in hand and other perk

Skills evaluated in this interview

Top Carwale Software Developer Interview Questions and Answers

Q1. given two arrays that one array consists of the arrival time of trains and the other one consists of the departure time of trains. find out the minimum number of platforms so that none of them should crash.
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)

Interview Questionnaire 

2 Questions

  • Q1. Programming based question on datastructure and logical
  • Q2. Questions related intrest and company

Interview Preparation Tips

Round: Technical Interview
Experience: it was good experience while giving answer , because i knew the most of answer and answered confidently...
Tips: makes the basic concept clear and be confident on what u say....

Round: HR Interview
Experience: answered confidently .... she offered me the job....
Tips: its all about your confidence and communication skills....

Skills: web technology, java
College Name: TERNA ENGINEERING COLLEGE

Junior Software Developer Interview Questions asked at other Companies

Q1. Given n coins for two players playing a game. Each player picks coins from the given n coins in such a way that he can pick 1 to 5 coins in one turn and the game continues for both the players. The player who picks the last coin looses the ... read more
View answer (2)

Carwale Interview FAQs

How many rounds are there in Carwale interview?
Carwale interview process usually has 2-3 rounds. The most common rounds in the Carwale interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Carwale 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 Sales, Key Account Management, B2B Sales, Salesforce and Javascript.
What are the top questions asked in Carwale interview?

Some of the top questions asked at the Carwale interview -

  1. A string is given consisting of lowercase alphabets. Write a function which ret...read more
  2. Given a balance and 100 coins;out of which,one is heavier. Find minimum number ...read more
  3. given two arrays that one array consists of the arrival time of trains and the ...read more
How long is the Carwale interview process?

The duration of Carwale interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Carwale Interview Process

based on 27 interviews

Interview experience

4.1
  
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.1
 • 40 Interviews
Impact Guru Interview Questions
4.5
 • 37 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
View all

Carwale Reviews and Ratings

based on 158 reviews

3.4/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

3.0

Salary

3.8

Job security

3.4

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 158 Reviews and Ratings
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