Upload Button Icon Add office photos

Filter interviews by

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

Updated 9 Feb 2025

Top Automotive Robotics (India) Interview Questions and Answers

View all 20 questions

Automotive Robotics (India) Interview Experiences

Popular Designations

33 interviews found

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)
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 - 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 important of optical fiber for communication
View answer (3)

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)

Automotive Robotics (India) interview questions for popular designations

 Design Engineer

 (6)

 Graduate Engineer Trainee (Get)

 (3)

 Software Developer

 (3)

 Engineer III

 (2)

 Lead Engineer

 (2)

 Senior Engineer

 (2)

 Software Engineer

 (2)

 Asst.Marketing Manager

 (1)

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

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

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:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all 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 (39)

Jobs at Automotive Robotics (India)

View all

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:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all 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)
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 Apr 2022. There were 3 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 

(3 Questions)

  • Q1. Testing Technical Skill mentioned in Resume & Which ever need for the project we are going to work on
  • Q2. What is Python and its data types
  • Ans. 

    Python is a high-level, interpreted programming language with dynamic semantics.

    • Python has several built-in data types including integers, floats, strings, booleans, and complex numbers.

    • It also has built-in data structures like lists, tuples, and dictionaries.

    • Python supports object-oriented programming and has a rich standard library.

    • Examples: x = 5 (integer), y = 3.14 (float), z = 'hello' (string), a = True (boolean),...

  • Answered by AI
  • Q3. What is logic building/thinking & where we need to apply this?
  • Ans. 

    Logic building/thinking is the process of analyzing and solving problems using reasoning and critical thinking skills.

    • It involves breaking down complex problems into smaller, more manageable parts

    • Identifying patterns and relationships between different pieces of information

    • Using deductive and inductive reasoning to draw conclusions

    • Applying logical principles to solve problems in various fields such as computer programm...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary Expectations and Negotiations
  • Q2. What do you think about your growth after joining to our organisation?
  • Ans. 

    I believe that joining your organization will provide me with ample opportunities for growth and development.

    • I am confident that I will be able to learn and acquire new skills in a dynamic and challenging environment.

    • I am excited about the potential for career advancement and the chance to work on innovative projects.

    • I look forward to collaborating with talented colleagues and mentors who can guide and inspire my profe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Best company to explore your skills independently and stressless environment to work

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (185)

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.

Tell us how to improve this page.

Automotive Robotics (India) Interview Process

based on 26 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
Salesforce Technical Lead

Chennai

7-12 Yrs

₹ 15-27.5 LPA

Opening with Inside Sales - US Shift

Hyderabad / Secunderabad

3-6 Yrs

₹ 7-12 LPA

Opening with Inside Sales Representative -Domestic

Hyderabad / Secunderabad

3-6 Yrs

₹ 6-11 LPA

Explore more jobs
Design Engineer
157 salaries
unlock blur

₹2.6 L/yr - ₹10 L/yr

Engineer 1
135 salaries
unlock blur

₹2.5 L/yr - ₹8.4 L/yr

L2 Engineer
98 salaries
unlock blur

₹3.8 L/yr - ₹11.8 L/yr

Senior Engineer
82 salaries
unlock blur

₹5.5 L/yr - ₹13.5 L/yr

Senior Design Engineer
80 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Explore more salaries
Compare Automotive Robotics (India) with

ABB

4.1
Compare

FANUC

3.9
Compare

KUKA Robotics

3.5
Compare

Yaskawa India

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