AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Automotive Robotics (India)

Compare button icon Compare button icon Compare
3.5

based on 276 Reviews

Play video Play video Video summary
  • About
  • Reviews
    276
  • Salaries
    2.2k
  • Interviews
    35
  • Jobs
    12
  • Benefits
    21
  • Photos
    7
  • Posts
    1

Filter interviews by

Automotive Robotics (India) Software Developer Interview Questions and Answers

Updated 14 Dec 2024

8 Interview questions

A Software Developer was asked 6mo ago
Q. 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 c...

A Software Developer was asked 6mo ago
Q. How would you implement 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 {...

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
View answers (43)
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
View answers (7)
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
View answers (4)
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
View answers (5)
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
View answers (2)
View All
A Software Developer was asked 6mo ago
Q. Explain vptr and vtable initialization 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 vta...

A Software Developer was asked
Q. What is the singleton 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

A Software Developer was asked
Q. Write a program to generate the Fibonacci sequence.
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

A Software Developer was asked
Q. What is a 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 stati...

A Software Developer was asked
Q. What is a 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 } }...

Are these interview questions helpful?
A Software Developer was asked
Q. What is the difference between a copy constructor and an 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 assignm...

Automotive Robotics (India) Software Developer Interview Experiences

3 interviews found

Software Developer Interview Questions & Answers

user image Anonymous

posted on 14 Dec 2024

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
    Add your answer
  • 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
    Add your answer
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
    Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 14 Feb 2022

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
  • Add your answer
Round 2 - Technical 

(1 Question)

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

(1 Question)

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

(5 Questions)

  • Q1. Share details of your previous job.
  • Add your answer
  • Q2. What are your salary expectations?
  • Add your answer
  • Q3. What is your family background?
  • Ans. 

    I come from a close-knit family that values education and support, fostering my passion for technology and problem-solving.

    • My parents are both educators, which instilled a love for learning in me from a young age.

    • I have two siblings; my older brother is an engineer, and my younger sister is studying computer science.

    • Family gatherings often involve discussions about technology and innovation, inspiring my career choice.

    • ...

  • Answered by AI
    Add your answer
  • Q4. Why are you looking for a change?
  • Add your answer
  • Q5. Tell me about yourself.
  • Add your answer

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
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 22 Sep 2023

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 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer

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

Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about Automotive Robotics (India)?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Software Developer Interview Questions & Answers

Siemens user image Anonymous

posted on 15 May 2020

I applied via Recruitment Consultant and was interviewed in Nov 2019. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Basic C++, and Data structure focus on pointers and virtual function, vptr, vtable
  • Add your answer
  • Q2. Prepare about ur current project and process followed for entire development process thoroughly
  • Add your answer
  • Q3. Prepare common tools like. Linux, git, gdb
  • Add your answer
  • Q4. Prepare basics of data structures, OOPS, design patterns used
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep a steady approach, focus more and more on basics and working principle of concepts
Anonymous
company Logo

Software Developer Interview Questions & Answers

Addverb Technologies user image Anonymous

posted on 10 Apr 2022

I applied via Recruitment Consulltant and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Scenario-based questions. ex: how you will differentiate two different login 2. Remove duplicates from the array.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviews are simple if you are fresher and average/difficult for experienced.
3 to 4 rounds of interviews can take place.
Anonymous
company Logo

Software Developer Interview Questions & Answers

Addverb Technologies user image Anonymous

posted on 14 Nov 2024

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Resume Shortlist 

(1 Question)

  • Q1. Just based on resume
  • Add your answer
Round 2 - Interview 

(4 Questions)

  • Q1. Tell me about your projects
  • Ans. 

    I have worked on various projects including web development, mobile app development, and data analysis.

    • Developed a web application using React and Node.js for a client in the e-commerce industry

    • Created a mobile app using Flutter for tracking daily expenses

    • Performed data analysis on customer feedback data using Python and SQL

  • Answered by AI
    Add your answer
  • Q2. He gave me a DSA question.
  • Add your answer
  • Q3. Asked about oops concepts
  • Ans. 

    OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction, forming the foundation of object-oriented programming.

    • Encapsulation: Bundling data and methods in a class. Example: A class 'Car' with attributes like 'speed' and methods like 'accelerate()'.

    • Inheritance: Mechanism to create a new class from an existing class. Example: 'ElectricCar' inherits from 'Car'.

    • Polymorphism: Ability to process objec...

  • Answered by AI
    Add your answer
  • Q4. Asked about dbms
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - It was on campus drive, first round was resume shortlisting. Then I was selected and second round was technical interview round. They asked medium DSA questions, some basic cs fundamentals and brief about projects.
Anonymous
company Logo

Software Developer Interview Questions & Answers

Rockwell Automation user image Anonymous

posted on 18 Mar 2025

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Why do you want to join this company?
  • Ans. 

    I admire your company's innovative approach and commitment to quality, which aligns with my career goals and values as a developer.

    • Your company's focus on cutting-edge technology, like AI and machine learning, excites me as I want to work on impactful projects.

    • I appreciate your commitment to professional development, such as mentorship programs, which will help me grow my skills.

    • The collaborative culture here fosters c...

  • Answered by AI
    Add your answer
  • Q2. What are the sql constraints?
  • Ans. 

    SQL constraints are rules applied to table columns to enforce data integrity and validity.

    • PRIMARY KEY: Uniquely identifies each record in a table. Example: `CREATE TABLE Users (UserID INT PRIMARY KEY);`

    • FOREIGN KEY: Ensures referential integrity between two tables. Example: `FOREIGN KEY (UserID) REFERENCES Users(UserID)`.

    • UNIQUE: Ensures all values in a column are different. Example: `CREATE TABLE Users (Email VARCHAR(25...

  • Answered by AI
    Add your answer
Anonymous
Are these interview questions helpful?
company Logo

Software Developer Interview Questions & Answers

Wipro PARI user image Anonymous

posted on 23 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Good URI design
  • Add your answer
  • Q2. Accessing id parameter in URL
  • Ans. 

    Accessing id parameter in URL involves parsing the URL and extracting the id value.

    • Use the window.location object to access the URL of the current page.

    • Parse the URL using methods like split() or URLSearchParams to extract the id parameter.

    • Example: If the URL is 'http://example.com/page?id=123', you can access the id value by parsing the URL.

  • Answered by AI
    Add your answer
Round 2 - One-on-one 

(2 Questions)

  • Q1. Salary expectations
  • Add your answer
  • Q2. Plan of growing up technically
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in algorithms, Java 8 / 11

Skills evaluated in this interview

Anonymous
company Logo

Software Developer Interview Questions & Answers

Addverb Technologies user image Avantika Raina

posted on 4 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. About projects, how do they work, what all have you implemented
  • Add your answer
  • Q2. One simple question on average of array elements
  • Ans. 

    Calculating the average of array elements involves summing the elements and dividing by their count.

    • To find the average, sum all elements in the array. Example: [2, 4, 6] -> 2 + 4 + 6 = 12.

    • Count the number of elements in the array. Example: [2, 4, 6] has 3 elements.

    • Divide the total sum by the count of elements. Example: 12 (sum) / 3 (count) = 4 (average).

    • Ensure to handle edge cases, like an empty array, which should...

  • Answered by AI
    Add your answer
Anonymous
company Logo

Software Developer Interview Questions & Answers

Siemens user image Anonymous

posted on 23 Aug 2024

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

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Implementation of OOPS
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on the use of classes and objects to organize code and data

    • Encapsulation, inheritance, polymorphism, and abstraction are key principles of OOPS

    • Example: Inheritance allows a class to inherit properties and methods from another class

  • Answered by AI
    Add your answer
  • Q2. Cppy constructor implementation
  • Ans. 

    A C++ constructor initializes objects and can be overloaded for different initialization scenarios.

    • Constructors have the same name as the class.

    • They can be parameterized to allow different initialization: `ClassName(int x) { ... }`.

    • Default constructors have no parameters: `ClassName() { ... }`.

    • Copy constructors create a new object as a copy of an existing object: `ClassName(const ClassName &obj) { ... }`.

    • Destructor...

  • Answered by AI
    Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. Aspirations, goals
  • Add your answer
  • Q2. Background ques
  • Add your answer

Skills evaluated in this interview

Anonymous
More about working at Automotive Robotics (India)
  • HQ - East Peoria, Illinois, United States
  • Industrial Automation
  • 501-1k Employees (India)

Automotive Robotics (India) Interview FAQs

How many rounds are there in Automotive Robotics (India) Software Developer 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) Software Developer 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 C++, Embedded C, Linux, AUTOSAR and Automotive.
What are the top questions asked in Automotive Robotics (India) Software Developer interview?

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

  1. What is the concept of virtual inheritance in relation to vtables and vptrs in ...read more
  2. What is the implementation of a class for string operatio...read more
  3. Difference between copy constructor and assignment opera...read more
What are the most common questions asked in Automotive Robotics (India) Software Developer HR round?

The most common HR questions asked in Automotive Robotics (India) Software Developer 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

Tell us how to improve this page.

Automotive Robotics (India) Interviews By Designations

  • Automotive Robotics (India) Design Engineer Interview Questions
  • Automotive Robotics (India) Software Developer Interview Questions
  • Automotive Robotics (India) Graduate Engineer Trainee (Get) Interview Questions
  • Automotive Robotics (India) Senior Engineer Interview Questions
  • Automotive Robotics (India) Lead Engineer Interview Questions
  • Automotive Robotics (India) Software Engineer Interview Questions
  • Automotive Robotics (India) Engineer III Interview Questions
  • Automotive Robotics (India) Sales Manager Interview Questions
  • Show more
  • Automotive Robotics (India) Training Manager Interview Questions
  • Automotive Robotics (India) Associate Interview Questions

Interview Questions for Popular Designations

  • Senior Software Developer Interview Questions
  • Lead Software Engineer Interview Questions
  • Software Development Engineer II Interview Questions
  • Associate Software Developer Interview Questions
  • Software Development Engineer 1 Interview Questions
  • Software Engineer Interview Questions
  • Software Engineer Level 1 Interview Questions
  • Senior Software Engineer Interview Questions
  • Show more
  • Java Software Developer Interview Questions
  • Senior Software Development Engineer Interview Questions

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more

Software Developer Interview Questions from Similar Companies

Siemens
Siemens Software Developer Interview Questions
4.0
 • 28 Interviews
Utthunga Technologies
Utthunga Technologies Software Developer Interview Questions
3.3
 • 4 Interviews
Schneider Electric
Schneider Electric Software Developer Interview Questions
4.1
 • 3 Interviews
Addverb Technologies
Addverb Technologies Software Developer Interview Questions
3.7
 • 3 Interviews
Johnson Controls
Johnson Controls Software Developer Interview Questions
3.6
 • 1 Interview
Rockwell Automation
Rockwell Automation Software Developer Interview Questions
3.7
 • 1 Interview
Wipro PARI
Wipro PARI Software Developer Interview Questions
3.3
 • 1 Interview
View all
Automotive Robotics (India) Software Developer Salary
based on 22 salaries
₹3.5 L/yr - ₹12 L/yr
11% less than the average Software Developer Salary in India
View more details

Automotive Robotics (India) Software Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

3.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Automotive Robotics (India) Salaries in India
Design Engineer
165 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Engineer 1
140 salaries
unlock blur

₹2.8 L/yr - ₹8.4 L/yr

Senior Engineer
109 salaries
unlock blur

₹5.5 L/yr - ₹13.5 L/yr

L2 Engineer
103 salaries
unlock blur

₹4.2 L/yr - ₹13 L/yr

Senior Design Engineer
82 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Explore more salaries
Compare Automotive Robotics (India) with
Siemens

Siemens

4.0
Compare
Schneider Electric

Schneider Electric

4.1
Compare
Johnson Controls

Johnson Controls

3.6
Compare
Honeywell Automation

Honeywell Automation

3.8
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Automotive Robotics (India) Interview Questions >
  • Automotive Robotics (India) Software Developer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter