Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Carwale Operations Executive Interview Questions and Answers

Updated 26 Sep 2023

Carwale Operations Executive Interview Experiences

2 interviews found

Interview experience
4
Good
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 Resume tips
Round 2 - HR 

(1 Question)

  • Q1. Myself and education
Round 3 - One-on-one 

(1 Question)

  • Q1. About background and future plans

I applied via Recruitment Consulltant and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Introducing ourselves

Interview Preparation Tips

Interview preparation tips for other job seekers - Self introduction and if you have experience of working share it.. Then why they should hire you.. Your strength & weakness they ask overall basic interview questions and your background they check.. Interview is very long three rounds it is totally depends upon how we answer the question.. Not everyone experience the same. There would be some other questions too added if you get confused they will ask you tricky question..nothing is to get worry be confident all goes good.. All the best for the one who is searching for it..

Operations Executive Interview Questions Asked at Other Companies

asked in Flipkart
Q1. What is the electric current? How is works ?
asked in Infosys
Q2. What is OOPs? Difference between Overloading and overriding, what ... read more
Q3. You need 10 delivery boy per day to get operations but unfortunat ... read more
Q4. Why high voltage is preferred for transmission of electrical powe ... read more
asked in Infosys
Q5. How to check ram usage in linux EC2 instance

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: The written test did NOT involve general aptitude questions. Most questions were CS specific and pertained to some kind of algorithmic analysis, design of recursive solutions, designing and tracing out an algorithm on a given sample etc. About 50-60% of the candidates were eliminated in this round.

Round: Test
Experience: The next round was a coding assignment. For those familiar with code-chef, the coding assignment was similar to a medium level problem (in the practice section) and had to be done in C. The codingassignment by design, required algorithmic optimization to execute within the prescribed time limit. About 10 candidates (8 UG and 2 PG) were selected for interviews. Yahoo generally conducts 4 technical interviews and an HR interview. Typically, 2 of the 4 tech interviews will be with immediate seniors in teams that are interested in your profile. The remaining two will be with more senior engineers (in fact, one of my interviews was with the tech director of a vertical at Yahoo). Interviewers discuss with each other after each interview, and some candidates were eliminated after one poor interview. It is therefore quite important to do

General Tips: Apart from technical skills, your communication and social skills are what can make or break an interview and eventually, decide whether or not you get the job. Objectively speaking, most candidates who make it to the final round will be very technically proficient. Therefore, your aim should be to make the decision regarding your candidature anything BUT objective. The real advantage of an interview is to let the interviewer know YOU, beyond just your written test score or your academic credentials. Interviewers like confidence in a candidate and it can even make you seem better than you really are. It will also help to have a few well thought out questions in mind for your interviewer, to show him that you have put in more effort than other candidates to find out about the kind of work going on at the company. One thing youcan do is to find out who all the interviewers are during the pre-placement talk (Yes, attending the PPT CAN BE USEFUL). General Tips Preparation Look up their LinkedIn profiles and note what projects they have worked on or guided. Asking a few insightful questions about those specific projects is a good way to create a good impression of you. It is very difficult to truly judge a candidate during a 45 minute interview, so what matters a lot is the impression left in the interviewers mind about you. If possible, try to establish a social connect during your limited interaction with the interviewers, BEFORE the interviews take place. For example, one of my interviewers, a senior tech manager at Yahoo, was an NITK alumnus. Before the interviews, I spoke to him about his experience in college. As it turns out, he was one of the founders of the web club at NITK, of which I am a member. We spoke for about 15 minutes about how the club has grown and how the club has helped its members ever since.
Skill Tips: For a computer science student who intends to take up a technical job at a tier 1 company, spend as much time as possible, honing your technical skills. Start well before placement season, if possible, in 3rd year itself
College Name: NIT SURATHKAL

I was interviewed before Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It comprised of general aptitude questions and two coding questions. It was an offline test.

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard where no two queens threaten each other.

    • Use backtracking algorithm to explore all possible configurations.

    • Keep track of rows, columns, and diagonals to ensure queens do not attack each other.

    • Generate and print valid configurations where queens are placed safely.

    • Consider constraints and time limit for efficient solution.

    • Exam...

  • Answered by AI
  • 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...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Achieve sorting in a single scan over the array without using any extra space.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

After having a technical discussion about my CV. He gave me two questions to code.

  • Q1. 

    Ninja and Substrings Problem Statement

    Ninja has to determine all the distinct substrings of size two that can be formed from a given string 'STR' comprising only lowercase alphabetic characters. These su...

  • Ans. 

    Find all unique contiguous substrings of size two from a given string.

    • Iterate through the string and extract substrings of size two

    • Use a set to store unique substrings

    • Return the set as an array of strings

  • Answered by AI
  • Q2. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Traverse the linked list using two pointers, one moving one step at a time and the other moving two steps at a time.

    • If the two pointers meet at any point, there is a cycle in the linked list.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This was supposed to be the HR round but out of surprise the interviewer started by giving me a question to code. 
After I approached this question with the right solution he just asked about my family. After that he said to wait. After half an hour the results were announced. A total of three students were hired and I was amongst one of them.

  • Q1. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

  • Ans. 

    Generate all possible combinations of balanced parentheses for a given number of pairs.

    • Use recursion to generate all possible combinations of balanced parentheses.

    • Keep track of the number of open and close parentheses used in each combination.

    • Return the valid combinations as an array of strings.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMagicbricks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Python functions
  • Q2. Join on multiple tables

Interview Questionnaire 

2 Questions

  • Q1. 1) Difference betwen HttpPost and HttpGet and other web api related questions.
  • Q2. 2) Find LCM of n numbers present in an array
  • Ans. 

    LCM of n numbers in an array

    • Find the GCD of all numbers in the array

    • Divide each number by the GCD and multiply them

    • Use Euclidean algorithm to find GCD

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong your basics and algorithms

I applied via Naukri.com

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself.
  • Q2. What do you know about this company
  • Q3. From how long you been working in the past company

Interview Preparation Tips

Interview preparation tips for other job seekers - Everything will come to you in a proper time
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. 2 code and 2 MySQL query
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

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

    • Graduated with a degree in Computer Science

    • Worked on various projects using Java and Python

    • Familiar with web development technologies like HTML, CSS, and JavaScript

  • Answered by AI

I applied via Apna Jobs and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell about yourself?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at communication and give your full potential.
Contribute & help others!
anonymous
You can choose to be anonymous

Carwale Interview FAQs

How many rounds are there in Carwale Operations Executive interview?
Carwale interview process usually has 2 rounds. The most common rounds in the Carwale interview process are HR, Resume Shortlist and One-on-one Round.
How to prepare for Carwale Operations Executive 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 Advertising, Analytical, Basic, Customer Service and Excel.

Recently Viewed

INTERVIEWS

Carwale

No Interviews

INTERVIEWS

Carwale

No Interviews

INTERVIEWS

WNS

No Interviews

INTERVIEWS

Forbes Marshall

No Interviews

INTERVIEWS

Carwale

No Interviews

INTERVIEWS

Carwale

No Interviews

INTERVIEWS

Carwale

No Interviews

INTERVIEWS

Iris Software

No Interviews

LIST OF COMPANIES

Forbes Marshall

Locations

INTERVIEWS

Carwale

No Interviews

Tell us how to improve this page.

Carwale Operations Executive Interview Process

based on 1 interview

Interview experience

4
  
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 Operations Executive Salary
based on 7 salaries
₹2.2 L/yr - ₹3.5 L/yr
5% more than the average Operations Executive Salary in India
View more details

Carwale Operations Executive Reviews and Ratings

based on 2 reviews

2.3/5

Rating in categories

3.1

Skill development

1.6

Work-life balance

1.6

Salary

3.1

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 2 Reviews and Ratings
Accounts Manager
134 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Key Account Manager
91 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Regional Manager
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Carwale with

MagicBricks

3.4
Compare

Impact Guru

4.0
Compare

Netmeds.com

3.6
Compare

Tracxn

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