Upload Button Icon Add office photos

Filter interviews by

Automotive Robotics (India) Interview Questions, Process, and Tips

Updated 3 Mar 2025

Top Automotive Robotics (India) Interview Questions and Answers

View all 21 questions

Automotive Robotics (India) Interview Experiences

Popular Designations

34 interviews found

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

I applied via Approached by Company and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Tool test using creo software by modeling and detailing the given drawing
Round 2 - One-on-one 

(1 Question)

  • Q1. About GD&T previous experience

Design Engineer Interview Questions asked at other Companies

Q1. Stress Strain curve, What will happen if you use petrol in diesel engine and Diesel in petrol engone.
View answer (5)

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 28 Jun 2023

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

I applied via Naukri.com and was interviewed before Jun 2022. There were 5 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Previous exp and tech questions
Round 2 - Technical 

(1 Question)

  • Q1. Technical discussion
Round 3 - Behavioral 

(1 Question)

  • Q1. Roles and responsibilities discussion
Round 4 - Hod 

(1 Question)

  • Q1. High level tech discussion
Round 5 - HR 

(1 Question)

  • Q1. Compensation discussion

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)
Automotive Robotics (India) Interview Questions and Answers for Freshers
illustration image
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 - Technical 

(2 Questions)

  • Q1. GD&T - Symbols and Its usage. Manufacturing process of sheet metal, Casting
  • Ans. 

    GD&T symbols are used to specify tolerances in manufacturing processes such as sheet metal and casting.

    • GD&T symbols are used to communicate design intent and specify tolerances for manufacturing processes.

    • Sheet metal manufacturing involves cutting, bending, and forming sheet metal into various shapes and sizes.

    • Casting involves pouring molten metal into a mold to create a specific shape.

    • GD&T symbols commonly used in she...

  • Answered by AI
  • Q2. Welding process, weld size criteria, symbols

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer if you know otherwise frankly tell don't know

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)

Engineer 1 Interview Questions & Answers

user image Anonymous

posted on 21 Mar 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

This procedure only for freshers.

Round 2 - Technical 

(1 Question)

  • Q1. Basic is the key
Round 3 - Behavioral 

(1 Question)

  • Q1. Some technical questions along with some general discussion

Engineer 1 Interview Questions asked at other Companies

Q1. What is the slenderness ratio, and how does it relate to buckling?
View answer (1)

Automotive Robotics (India) interview questions for popular designations

 Design Engineer

 (6)

 Software Developer

 (3)

 Graduate Engineer Trainee (Get)

 (3)

 Senior Engineer

 (2)

 Lead Engineer

 (2)

 Software Engineer

 (2)

 Engineer III

 (2)

 Senior Software Engineer

 (1)

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

Round 1 - Technical 

(3 Questions)

  • Q1. Function pointers based code
  • Q2. Bitwise operations based cofe
  • Q3. Storage class explanation
  • Ans. 

    Storage classes in C specify the lifetime and visibility of variables.

    • auto: default storage class for local variables

    • register: stores variables in CPU registers for faster access

    • static: retains value between function calls

    • extern: used to declare variables that are defined in another file

    • typedef: creates a new name for an existing data type

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Package discussion and general questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication skill and coding to easy get the job

Skills evaluated in this interview

Firmware Engineer Interview Questions asked at other Companies

Q1. In DSA part, 1. Code for merge sort 2. Check if two trees are mirror 3. Find element in rotated sorted array 4. Check if linked list is palindrome 5. Detect a loop in linked list 6. Remove loop in linked list
View answer (1)

Get interview-ready with Top Automotive Robotics (India) Interview Questions

I applied via Naukri.com and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. OOPs concepts and program on linked list reversal and c pointer concepts
Round 2 - Technical 

(1 Question)

  • Q1. OOPs concepts,C basis, IPC and signals
Round 3 - Technical 

(1 Question)

  • Q1. OOPs concepts, c basics, data structures
Round 4 - HR 

(5 Questions)

  • Q1. Share details of your previous job.
  • Q2. What are your salary expectations?
  • Q3. What is your family background?
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have gone though 3 levels of technical interviews followed by manageral discussion and HR discussion

Top Automotive Robotics (India) Software Developer Interview Questions and Answers

Q1. What is the concept of virtual inheritance in relation to vtables and vptrs in object-oriented programming?
View answer (1)

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 (42)

Jobs at Automotive Robotics (India)

View all
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2022. 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 Resume tips
Round 2 - Technical 

(5 Questions)

  • Q1. What is copy constructor?
  • Ans. 

    Copy constructor is a special type of constructor which creates a new object as a copy of an existing object.

    • Copy constructor is used to initialize a new object as a copy of an existing object.

    • It takes an object of the same class as a parameter.

    • It is called automatically when a new object is created from an existing object.

    • Example: class MyClass { public: MyClass(const MyClass& obj) { // copy constructor logic } };

  • Answered by AI
  • Q2. Difference between copy constructor and assignment operator
  • Ans. 

    Copy constructor is used to create a new object as a copy of an existing object, while assignment operator is used to assign values from one object to another.

    • Copy constructor is called when a new object is created from an existing object, while assignment operator is called when an existing object is assigned values from another object.

    • Copy constructor creates a new object with its own memory space, while assignment o...

  • Answered by AI
  • Q3. What is static function
  • Ans. 

    A static function is a function that is associated with a class rather than an instance of the class.

    • Static functions can be called without creating an instance of the class.

    • Static functions are commonly used for utility functions that do not require access to instance-specific data.

    • Static functions are declared using the 'static' keyword in many programming languages.

    • Example: 'Math.max()' in JavaScript is a static fun

  • Answered by AI
  • Q4. Write Fibonacci series
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with 0 and 1 as the first two numbers in the series

    • Add the previous two numbers to get the next number in the series

    • Repeat this process to generate the Fibonacci series

  • Answered by AI
  • Q5. What is single ton design pattern
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Ensures a class has only one instance

    • Provides a global point of access to that instance

    • Commonly used in scenarios where only one instance of a class is needed, such as database connections or logging

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If ur c++ developer go through the c++ 11/14 concept

Skills evaluated in this interview

Top Automotive Robotics (India) Software Developer Interview Questions and Answers

Q1. What is the concept of virtual inheritance in relation to vtables and vptrs in object-oriented programming?
View answer (1)

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 (42)

Engineer III Interview Questions & Answers

user image Anonymous

posted on 13 May 2022

Round 1 - Technical 

(1 Question)

  • Q1. Basic in c language,automotive project’s experience
Round 2 - HR 

(2 Questions)

  • Q1. Our previous company’s details
  • Q2. Our strength and weekness
Round 3 - Coding Test 

Basic c

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s really good company to learn and explore our skills.

Engineer III Interview Questions asked at other Companies

Q1. different types of casting process, how will design the casting part, what will be manufacturing considerations for casting.
View answer (1)

I applied via LinkedIn and was interviewed in 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 Resume tips
Round 2 - HR 

(1 Question)

  • Q1. General questions about experience
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion about Technical, tools used, people management, skills we got
Round 4 - HR 

(1 Question)

  • Q1. Package & General discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident & honest and give your best

Training Manager Interview Questions asked at other Companies

Q1. How can a reduction be done in the time taken for trainees to achieve the targets set as per the BAU?
View answer (1)

Engineer III Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2021

I applied via Recruitment Consultant

Interview Questionnaire 

3 Questions

  • Q1. C++ questions from concepts like abstraction, virtual class , dynamic polymorphism, copy constructor, move constructor.
  • Q2. Some coding questions for reference pointers , const pointers , char pointers
  • Q3. Better to know about threads, IPC's, mutex, semaphores

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was mainly technical , but they also test the confidence levels.The attitude of the candidates.

Engineer III Interview Questions asked at other Companies

Q1. different types of casting process, how will design the casting part, what will be manufacturing considerations for casting.
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

Automotive Robotics (India) Interview FAQs

How many rounds are there in Automotive Robotics (India) interview?
Automotive Robotics (India) interview process usually has 2-3 rounds. The most common rounds in the Automotive Robotics (India) interview process are Technical, HR and Resume Shortlist.
How to prepare for Automotive Robotics (India) 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 Automotive Robotics (India). The most common topics and skills that interviewers at Automotive Robotics (India) expect are Python, Embedded C, Automotive, Linux and SQL.
What are the top questions asked in Automotive Robotics (India) interview?

Some of the top questions asked at the Automotive Robotics (India) interview -

  1. What is the concept of virtual inheritance in relation to vtables and vptrs in ...read more
  2. What is logic building/thinking & where we need to apply th...read more
  3. 1.Explain about GD &T 2. Tell some of the gear terminologies 3. What are the a...read more
How long is the Automotive Robotics (India) interview process?

The duration of Automotive Robotics (India) interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

JOBS

Sophos Technologies

No Jobs

SALARIES

Soliton Technologies

INTERVIEWS

KLA

No Interviews

DESIGNATION

SALARIES

KLA

SALARIES

Soliton Technologies

SALARIES

KLA

Tell us how to improve this page.

Automotive Robotics (India) Interview Process

based on 27 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 432 Interviews
Bosch Interview Questions
4.2
 • 334 Interviews
ABB Interview Questions
4.1
 • 232 Interviews
FANUC Interview Questions
3.9
 • 21 Interviews
Yaskawa India Interview Questions
4.2
 • 8 Interviews
View all

Automotive Robotics (India) Reviews and Ratings

based on 251 reviews

3.6/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.3

Salary

3.1

Job security

3.5

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 251 Reviews and Ratings
Python Tester

Chennai

4-8 Yrs

₹ 8-15 LPA

Vba Developer

Chennai,

Bangalore / Bengaluru

3-8 Yrs

₹ 3.5-8.5 LPA

Electrical Design Engineer- Bangalore

Bangalore / Bengaluru

4-9 Yrs

₹ 5-10 LPA

Explore more jobs
Design Engineer
157 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer 1
134 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

L2 Engineer
98 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
82 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Design Engineer
80 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Automotive Robotics (India) with

ABB

4.1
Compare

FANUC

4.0
Compare

KUKA Robotics

3.5
Compare

Yaskawa India

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