Upload Button Icon Add office photos

Filter interviews by

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

Updated 14 Dec 2024

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?
  • Q2. What is the implementation of a class for string operations?
  • Q3. Difference between copy constructor and assignment operator
View all 7 questions

Automotive Robotics (India) Software Developer Interview Experiences

3 interviews found

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
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

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

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
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
  • 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

Interview questions from similar companies

I applied via Referral and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Do you know anything about cloud computing?
  • Ans. 

    Yes, cloud computing refers to the delivery of computing services over the internet.

    • Cloud computing allows users to access data and applications from anywhere with an internet connection.

    • It offers scalability, flexibility, and cost-effectiveness compared to traditional on-premises computing.

    • Examples of cloud computing services include Amazon Web Services, Microsoft Azure, and Google Cloud Platform.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very chill interview on the basis of profile.
Learn about new technology like cloud etc.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Basic OOPs concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics.

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
  • Q2. Prepare about ur current project and process followed for entire development process thoroughly
  • Q3. Prepare common tools like. Linux, git, gdb
  • Q4. Prepare basics of data structures, OOPS, design patterns used

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

Interview Questionnaire 

1 Question

  • Q1. C++ Basic , malloc, calloc
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

Profit loss, directions, all basic aptitude.

Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. What do you know about cloud
  • Ans. 

    Cloud computing is the delivery of computing services over the internet.

    • Cloud computing allows users to access and store data and applications on remote servers.

    • It offers scalability, flexibility, and cost-effectiveness compared to traditional on-premises solutions.

    • Examples of cloud services include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud Platform.

  • Answered by AI
Round 4 - Leadership Round 

(1 Question)

  • Q1. Where do you see yourself in 5 years
Round 5 - HR 

(1 Question)

  • Q1. Do you want to do foreign studies

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Apr 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 

(2 Questions)

  • Q1. How do you handle dynamic sharepoint permission through flows
  • Ans. 

    Dynamic SharePoint permissions can be handled through flows using the 'Grant Access to an Item or a Folder' action.

    • Use the 'Grant Access to an Item or a Folder' action in the flow

    • Set the 'Site Address' and 'List Name' for the SharePoint site and list

    • Set the 'Item ID' for the specific item you want to grant access to

    • Set the 'User or Group' field to the user or group you want to grant access to

    • Set the 'Permissions' field...

  • Answered by AI
  • Q2. How do you handle casaded dropdown
  • Ans. 

    Cascaded dropdowns are handled by populating the second dropdown based on the selection made in the first dropdown.

    • Create an event listener for the first dropdown to detect changes

    • Use AJAX to retrieve data for the second dropdown based on the selected value of the first dropdown

    • Populate the second dropdown with the retrieved data

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Asked about Powerapps and Sharepoint technologies.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Jul 2023. There were 5 interview rounds.

Round 1 - Coding Test 

Hackerrank online assessment

Round 2 - Case Study 

Case study with a little bit of math for scenario based questions

Round 3 - Coding Test 

2 questions of coding with a live interviewer

Round 4 - Coding Test 

Behavioral and coding with a senior engineer

Round 5 - Behavioral interview 

(2 Questions)

  • Q1. How do you handle conflicts
  • Ans. 

    I handle conflicts by actively listening, seeking common ground, and finding mutually beneficial solutions.

    • Actively listen to all parties involved to understand their perspectives

    • Seek common ground and areas of agreement to build upon

    • Find mutually beneficial solutions that address the concerns of all parties

    • Communicate openly and transparently to resolve conflicts effectively

  • Answered by AI
  • Q2. What was the most challenging problem you had to solve so far
  • Ans. 

    Developing a real-time data synchronization system across multiple servers

    • Designing a scalable architecture to handle high volume of data

    • Implementing efficient algorithms for data synchronization

    • Handling conflicts and ensuring data consistency

    • Testing the system under various load conditions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA, do a little bit of case studies with back of the envelope estimations and prepare thoroughly for behavioral interviews as they could be tricky

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

Tell us how to improve this page.

Automotive Robotics (India) Software Developer Interview Process

based on 2 interviews

1 Interview rounds

  • Technical Round
View more
Automotive Robotics (India) Software Developer Salary
based on 23 salaries
₹3.5 L/yr - ₹12 L/yr
10% more 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
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

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