Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by GoMechanic Team. If you also belong to the team, you can get access from here

GoMechanic Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

GoMechanic Interview Questions, Process, and Tips

Updated 26 Feb 2025

Top GoMechanic Interview Questions and Answers

View all 32 questions

GoMechanic Interview Experiences

Popular Designations

48 interviews found

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

I applied via Approached by Company and was interviewed before Mar 2022. 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 - HR 

(3 Questions)

  • Q1. Tell me something about you?
  • Ans. Communicated all the basic details about me.
  • Answered Anonymously
  • Q2. What is your expected CTC
  • Ans. 

    I expect a competitive salary based on my qualifications, experience, and the responsibilities of the role.

    • I have researched the average salary range for Technology Development Managers in the industry.

    • I have considered my years of experience and expertise in the field.

    • I am aware of the responsibilities and challenges associated with the role.

    • I am open to negotiation based on the overall compensation package offered.

  • Answered by AI
  • Q3. Have you holding any offer
Round 3 - Technical 

(2 Questions)

  • Q1. Describe full Fragment life cycle
  • Ans. 

    The Fragment life cycle describes the various stages a Fragment goes through during its existence.

    • The Fragment is created using the constructor method.

    • The Fragment is then attached to an Activity using the onAttach() method.

    • The onCreateView() method is called to inflate the Fragment's layout.

    • The Fragment's view is then created and initialized in the onViewCreated() method.

    • The Fragment becomes visible to the user in the...

  • Answered by AI
  • Q2. MVVM internal working
  • Ans. Explained the internal working of MVVM
  • Answered Anonymously
Round 4 - One-on-one 

(1 Question)

  • Q1. Scenario based questions
  • Ans. What life cycle methods will get called if we press back from second fragment to first fragment
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your Android basics for 1st round,
Brush up your deep knowledge about MVVM and Fragment lifecycles

Skills evaluated in this interview

Technology Development Manager Interview Questions asked at other Companies

Q1. What is your expected CTC
View answer (2)

I applied via Company Website and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Technical Questions ?
  • Q2. How Are You ?
  • Q3. Tell Me About Automobile ?
  • Ans. 

    Automobiles are vehicles designed for transportation on roads, typically powered by internal combustion engines or electric motors.

    • Automobiles have revolutionized transportation and have become an integral part of modern society.

    • They come in various types such as cars, trucks, buses, and motorcycles.

    • Automobiles have evolved over time with advancements in technology, safety features, and fuel efficiency.

    • Examples of popu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident On Your Knowledge

Customer Relationship Manager Interview Questions asked at other Companies

Q1. What are the values of IKEA, which value aligns with you the most, and which values do you prefer to follow?
View answer (1)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 26 Feb 2022

Round 1 - Technical 

(1 Question)

  • Q1. Be confident there is no barrier of language in this organisation if you are comfortable in hindi use it

Interview Preparation Tips

Interview preparation tips for other job seekers - Dress casual it works in this kind of startups

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Whole interview basis on your accuracy and experience what u have ,to tell them and focus on your language and soft communicate to interviewer.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always when u giving yur interview to other company make perfect yur self and clearly & confident speking .

Senior Customer Relationship Manager Interview Questions asked at other Companies

Q1. Experience levels and learning from that
View answer (1)

GoMechanic interview questions for popular designations

 Customer Relationship Manager

 (9)

 Customer Relationship Executive Manager

 (3)

 Data Analyst Intern

 (2)

 Analytics Manager

 (1)

 Production Manager

 (1)

 Senior Business Development Manager

 (1)

 Software Engineer

 (1)

 Data Analyst

 (1)

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical question asked related to automobile, asked price of parts

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident you can clear the interview

Customer Relationship Executive Manager Interview Questions asked at other Companies

Q1. How to contact with existing coustomer
View answer (2)

Get interview-ready with Top GoMechanic Interview Questions

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Easy

It is vesy helpful to learn more about this topic and improve my knowledge in the specific areas

  • Q1. 

    Time to Burn Tree Problem

    You are given a binary tree consisting of 'N' unique nodes and a start node where the burning will commence. The task is to calculate the time in minutes required to completely b...

  • Ans. 

    Calculate the time in minutes required to completely burn a binary tree starting from a given node.

    • Start burning from the given node and spread fire to adjacent nodes each minute

    • Track the time taken for each node to burn completely

    • Return the maximum time taken to burn the entire tree

  • Answered by AI
  • Q2. 

    Buy and Sell Stock Problem Statement

    Imagine you are Harshad Mehta's friend, and you have been given the stock prices of a particular company for the next 'N' days. You can perform up to two buy-and-sell ...

  • Ans. 

    The task is to determine the maximum profit that can be achieved by performing up to two buy-and-sell transactions on a given set of stock prices.

    • Iterate through the array of stock prices to find the maximum profit that can be achieved by buying and selling stocks at different points.

    • Keep track of the maximum profit that can be obtained by performing two transactions.

    • Consider all possible combinations of buying and sel...

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Easy

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Iterate through the array and for each element, check if the complement (S - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the result list based on the criteria mentioned in the problem statement.

  • Answered by AI
  • Q2. 

    Delete the Middle Node from a Singly Linked List

    Given a singly linked list of integers, the task is to remove the middle node from this list.

    Input:

    The first line of input includes an integer 'T' whic...
  • Ans. 

    Remove the middle node from a singly linked list of integers.

    • Identify the middle node using slow and fast pointers.

    • Remove the middle node by adjusting the pointers.

    • Handle cases where there are two middle nodes.

    • Return NULL if no middle node exists.

  • Answered by AI
Round 3 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

  • Q1. 

    Different Ways To Add Parenthesis

    Suppose you have a string 'S' representing an arithmetic expression. Your task is to compute all potential outcomes by adding valid parentheses in different ways to evalu...

  • Ans. 

    Compute all potential outcomes by adding valid parentheses in different ways to evaluate an arithmetic expression.

    • Iterate through the expression and try adding parentheses at different positions to evaluate all possible outcomes

    • Use recursion to explore all possible combinations of adding parentheses

    • Keep track of the valid outcomes and return them as a list of results

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in DelhiEligibility criteriaNo criteriaGoMechanic interview preparation:Topics to prepare for the interview - DS, OOPS, NETWORKING, ARRAYS, STRINGS, GRAPHS AND TREESTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : practice questions and prepare for your future and do your best to get success in life

Application resume tips for other job seekers

Tip 1 : must include your project in your resume to give a proper idera about your capabilities and four talent 
Tip 2 : also must include your training and complete experience and learning of your training

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2022. 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 - One-on-one 

(1 Question)

  • Q1. Previous experience details questioned.
Round 3 - One-on-one 

(1 Question)

  • Q1. Just brief questioned anout previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while giving answers and exact data what they required.

Area Sales Manager Interview Questions asked at other Companies

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

Interview Questions & Answers

user image Anonymous

posted on 30 Sep 2021

I applied via Referral and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is work profile in previous company?
  • Q2. What is role in last company

Interview Preparation Tips

Interview preparation tips for other job seekers - It's easy to clear it be confident and dedicated to concern role
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Just speak up in confidence
  • Q2. Have good information of car brands, and their technicalities

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have good knowledge of the cars, have indepth technicalities

Customer Relationship Manager Interview Questions asked at other Companies

Q1. What are the values of IKEA, which value aligns with you the most, and which values do you prefer to follow?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Jun 2022. 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 - HR 

(1 Question)

  • Q1. Common Questions only
Round 3 - Technical 

(1 Question)

  • Q1. Cars servicing, exterior and interior

Interview Preparation Tips

Interview preparation tips for other job seekers - Average

Customer Relationship Executive Manager Interview Questions asked at other Companies

Q1. How to contact with existing coustomer
View answer (2)

GoMechanic Interview FAQs

How many rounds are there in GoMechanic interview?
GoMechanic interview process usually has 2-3 rounds. The most common rounds in the GoMechanic interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for GoMechanic 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 GoMechanic. The most common topics and skills that interviewers at GoMechanic expect are Sales, Automobile Engineering, Mechanical Engineering, Aftersales and Automotive Engineering.
What are the top questions asked in GoMechanic interview?

Some of the top questions asked at the GoMechanic interview -

  1. If there is misfiring in engine, what will be probl...read more
  2. What is difference between delete,drop and truncate...read more
  3. How can we diagnosed if low pick up is the...read more
How long is the GoMechanic interview process?

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

Tell us how to improve this page.

GoMechanic Interview Process

based on 37 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 428 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Zepto Interview Questions
3.5
 • 208 Interviews
BlackBuck Interview Questions
3.8
 • 176 Interviews
Tracxn Interview Questions
3.1
 • 100 Interviews
Zolo Interview Questions
3.4
 • 50 Interviews
Pitstop Interview Questions
4.3
 • 3 Interviews
Carpathy Interview Questions
3.8
 • 1 Interview
View all

GoMechanic Reviews and Ratings

based on 115 reviews

3.7/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

3.6

Salary

2.9

Job security

3.3

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 115 Reviews and Ratings
Customer Relationship Manager
224 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Manager
63 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
52 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare GoMechanic with

Pitstop

4.3
Compare

Carcrew Technology

2.7
Compare

Bumper

4.9
Compare

Carpathy

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