Upload Button Icon Add office photos

Filter interviews by

Automotive Robotics (India) Interview Questions and Answers

Updated 8 Mar 2025
Popular Designations

28 Interview questions

A Software Engineer was asked
Q. What is logic building/thinking, and where is it applicable?
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 pro...

View all Software Engineer interview questions
A Firmware Engineer was asked
Q. Explain bitwise operations with code examples.
Ans. 

Bitwise operations manipulate individual bits of binary numbers for efficient data processing and control in firmware development.

  • Bitwise AND (&): Compares each bit; results in 1 if both bits are 1. Example: 5 & 3 = 1 (0101 & 0011 = 0001).

  • Bitwise OR (|): Compares each bit; results in 1 if at least one bit is 1. Example: 5 | 3 = 7 (0101 | 0011 = 0111).

  • Bitwise XOR (^): Compares each bit; results in 1 if ...

View all Firmware Engineer interview questions
A Graduate Engineer Trainee (Get) was asked
Q. 1.Explain about GD &T 2. Tell some of the gear terminologies 3. What are the angle of projections
Ans. 

GD&T stands for Geometric Dimensioning and Tolerancing. It is a system used to define and communicate engineering tolerances.

  • GD&T is a symbolic language used to specify the dimensions, tolerances, and geometric characteristics of a part

  • It helps in ensuring that the parts are manufactured and assembled correctly

  • GD&T includes symbols, feature control frames, and datums to define the requirements

  • Some common GD&T symb...

View all Graduate Engineer Trainee (Get) interview questions
A Senior Software Engineer was asked 4mo ago
Q. What are the types of polymorphism in programming?
Ans. 

Types of polymorphism include compile-time polymorphism (method overloading) and runtime polymorphism (method overriding).

  • Compile-time polymorphism is achieved through method overloading, where multiple methods have the same name but different parameters.

  • Runtime polymorphism is achieved through method overriding, where a subclass provides a specific implementation of a method that is already defined in its supercl...

View all Senior Software Engineer interview questions
A Design Engineer was asked 6mo ago
Q. Sheetmetal operation?
Ans. 

Sheetmetal operation involves cutting, bending, and forming sheet metal to create various components.

  • Cutting: Using tools like shears, lasers, or plasma cutters to cut sheet metal into desired shapes.

  • Bending: Using press brakes to bend sheet metal at specific angles.

  • Forming: Using techniques like deep drawing or roll forming to shape sheet metal into complex geometries.

View all Design Engineer interview questions
A Graduate Engineer Trainee (Get) was asked
Q. Header file in c programming
Ans. 

Header files in C programming are used to declare functions, variables, and macros that can be used in multiple source files.

  • Header files typically have a .h extension and contain function prototypes, type definitions, and global variables.

  • They are included in source files using the #include directive.

  • Example: #include includes the standard input/output functions in the program.

View all Graduate Engineer Trainee (Get) interview questions
A Lead Engineer was asked
Q. 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 i...

View all Lead Engineer interview questions
Are these interview questions helpful?
A Firmware Engineer was asked
Q. 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

View all Firmware Engineer interview questions

Automotive Robotics (India) Interview Experiences

35 interviews found

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

I applied via Job Portal and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Ehat is sheetmetal?
  • Q2. Sheetmetal operation?
  • Ans. 

    Sheetmetal operation involves cutting, bending, and forming sheet metal to create various components.

    • Cutting: Using tools like shears, lasers, or plasma cutters to cut sheet metal into desired shapes.

    • Bending: Using press brakes to bend sheet metal at specific angles.

    • Forming: Using techniques like deep drawing or roll forming to shape sheet metal into complex geometries.

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Initializer list use cases
  • Ans. 

    Initializer lists in C++ allow for efficient member initialization and can improve code clarity and performance.

    • Used to initialize member variables in constructors: `MyClass(int a) : x(a), y(0) {}`.

    • Enables direct initialization of const and reference members: `const int value; MyClass() : value(42) {}`.

    • Facilitates initialization of base class members: `Derived() : Base(10) {}`.

    • Allows for initialization of STL container...

  • Answered by AI
  • Q2. Polymorphism and use cases
  • Q3. Types of polymorphism
  • Ans. 

    Types of polymorphism include compile-time polymorphism (method overloading) and runtime polymorphism (method overriding).

    • Compile-time polymorphism is achieved through method overloading, where multiple methods have the same name but different parameters.

    • Runtime polymorphism is achieved through method overriding, where a subclass provides a specific implementation of a method that is already defined in its superclass.

  • Answered by AI
  • Q4. Virtual functions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me the GD&T symbols
  • Ans. 

    Geometric Dimensioning and Tolerancing (GD&T) symbols are used to define the geometry of parts and assemblies in engineering drawings.

    • GD&T symbols include position, concentricity, symmetry, perpendicularity, parallelism, flatness, circularity, cylindricity, profile of a line, profile of a surface, etc.

    • Each symbol has a specific meaning and is used to communicate the required tolerances for manufacturing and inspection ...

  • Answered by AI
  • Q2. Difference between solid & sheetmetal design
  • Ans. 

    Solid design involves creating 3D models with volume, while sheetmetal design focuses on creating 2D models that can be bent or formed into 3D shapes.

    • Solid design is used for creating objects with volume and complex shapes.

    • Sheetmetal design is used for creating objects that can be easily bent or formed, typically used in manufacturing processes like metal fabrication.

    • Solid design often involves features like fillets, c...

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview in Aug 2024.

Round 1 - One-on-one 

(3 Questions)

  • Q1. During my interview i have very pleasant interview with my interview panel on my profile and previous experience and what role i am going to handle .
  • Q2. How soon i can join
  • Q3. 30 days I can join
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. What is sheetmetal?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Numby detailed and implementation
  • Q2. Pandas structures and processes
Round 2 - HR 

(1 Question)

  • Q1. Django framework architecture
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic questions in online test

Round 2 - Group Discussion 

One min about one topic

Round 3 - Technical 

(3 Questions)

  • Q1. Asked about basic questions in c programming and python
  • Q2. Header file in c programming
  • Ans. 

    Header files in C programming are used to declare functions, variables, and macros that can be used in multiple source files.

    • Header files typically have a .h extension and contain function prototypes, type definitions, and global variables.

    • They are included in source files using the #include directive.

    • Example: #include includes the standard input/output functions in the program.

  • Answered by AI
  • Q3. Pass, break and continue diffrence
  • Ans. 

    Pass, break, and continue are control flow statements in Python that manage loop execution differently.

    • Pass: A null operation; it does nothing when executed. Example: 'if condition: pass' means do nothing if the condition is true.

    • Break: Exits the nearest enclosing loop immediately. Example: 'for i in range(5): if i == 3: break' stops the loop when i is 3.

    • Continue: Skips the current iteration and moves to the next one i...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Will check about the communication

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the concept of virtual inheritance in relation to vtables and vptrs in object-oriented programming?
  • Ans. 

    Virtual inheritance allows a derived class to inherit from a base class without creating duplicate base class subobjects.

    • Virtual inheritance is used to resolve the Diamond Problem in C++ where a class inherits from two classes that have a common base class.

    • It ensures that only one copy of the base class is inherited by the derived class.

    • Virtual inheritance introduces a virtual base class subobject to the derived class,...

  • Answered by AI
  • Q2. Explained about vtptr and vtable initialisation and structure
  • Ans. 

    vtptr and vtable are key components of C++'s dynamic polymorphism, enabling method resolution at runtime.

    • vtable (virtual table) is a static table created for each class with virtual functions, containing pointers to the virtual functions.

    • vtptr (virtual table pointer) is a pointer in each object of a class that points to the vtable of its class.

    • When an object is created, its vtptr is initialized to point to the vtable o...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is the implementation of a class for string operations?
  • Ans. 

    A class for string operations can include methods for concatenation, substring extraction, length calculation, etc.

    • Create a class with methods like concatenateStrings, extractSubstring, calculateLength, etc.

    • Use string manipulation functions like substring, concat, length, etc. within the class methods.

    • Ensure error handling for edge cases like empty strings or out-of-bounds indices.

    • Example: class StringOperations { conc...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain HIL steup
  • Ans. 

    HIL setup stands for Hardware-in-the-Loop setup, which is a testing method that uses real components to simulate real-world conditions.

    • HIL setup involves connecting a real-time simulation model to physical hardware components.

    • It allows for testing of complex systems in a controlled environment.

    • HIL setup is commonly used in automotive, aerospace, and industrial applications.

    • Example: Using HIL setup to test a car's elect...

  • Answered by AI
  • Q2. HIL components
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions
  • Q2. Experience about questions
Round 2 - HR 

(2 Questions)

  • Q1. Salary package negotiable
  • Q2. General information about you

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Automotive Robotics (India)?
Ask anonymously on communities.

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. 1.Explain about GD &T 2. Tell some of the gear terminologies 3. What are the a...read more
  3. What is logic building/thinking & where we need to apply th...read more
What are the most common questions asked in Automotive Robotics (India) HR round?

The most common HR questions asked in Automotive Robotics (India) interview are -

  1. Why are you looking for a chan...read more
  2. What is your family backgrou...read more
  3. What are your salary expectatio...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.

Overall Interview Experience Rating

3.6/5

based on 28 interview experiences

Difficulty level

Easy 6%
Moderate 88%
Hard 6%

Duration

Less than 2 weeks 81%
2-4 weeks 19%
View more

Interview Questions from Similar Companies

Siemens Interview Questions
4.0
 • 456 Interviews
Johnson Controls Interview Questions
3.6
 • 276 Interviews
Wipro PARI Interview Questions
3.3
 • 51 Interviews
Falcon Autotech Interview Questions
3.9
 • 48 Interviews
View all

Automotive Robotics (India) Reviews and Ratings

based on 279 reviews

3.5/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

3.2

Salary

3.1

Job security

3.4

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 279 Reviews and Ratings
Matlab Developer - Bangalore

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Explore more jobs
Design Engineer
159 salaries
unlock blur

₹3.3 L/yr - ₹8.5 L/yr

Engineer 1
143 salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

Senior Engineer
111 salaries
unlock blur

₹7.7 L/yr - ₹13.5 L/yr

L2 Engineer
108 salaries
unlock blur

₹4.9 L/yr - ₹11.6 L/yr

Senior Design Engineer
95 salaries
unlock blur

₹5.5 L/yr - ₹12 L/yr

Explore more salaries
Compare Automotive Robotics (India) with

Siemens

4.0
Compare

Schneider Electric

4.1
Compare

Johnson Controls

3.5
Compare

Honeywell Automation

3.7
Compare
write
Share an Interview