Premium Employer

i

This company page is being actively managed by Mercedes-Benz Research and Development India Team. If you also belong to the team, you can get access from here

Filter interviews by

Mercedes-Benz Research and Development India Software Engineer Interview Questions and Answers

Updated 27 Jun 2024

Mercedes-Benz Research and Development India Software Engineer Interview Experiences

7 interviews found

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

I applied via Company Website and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding questions on Java

Round 2 - Technical 

(1 Question)

  • Q1. More on Java, Spring Boot and SQL quieries
Round 3 - Behavioral 

(1 Question)

  • Q1. Questions related to Agile
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Dynamic casting
  • Q2. Create string class
  • Ans. 

    Implement a custom string class in C++

    • Create a class with private member variable for storing the string data

    • Implement constructors, destructor, copy constructor, assignment operator

    • Overload operators like +, +=, ==, !=, [], <<, >> for string manipulation

    • Include methods for string manipulation like length(), substr(), find()

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep hustling

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Technical Questions related to software and hardware with a small case study.
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round with 2 levels of managers. Semi technical.
Round 4 - HR 

(1 Question)

  • Q1. General Discussion. Salary Discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - They need confident and loyal employees. Learn of the system/software that you are working on in detail and then the technical questions will be easy. Managerial round mostly look for your confidence. Try to get a referral, will some what ease out the process.

Software Engineer Interview Questions & Answers

user image jainendra kumar

posted on 29 Mar 2023

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed before Mar 2022.

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 

(2 Questions)

  • Q1. ML related questions
  • Q2. Data cleaning questions

Interview Preparation Tips

Interview preparation tips for other job seekers - After all the rounds they put the profile on hold.

Mercedes-Benz Research and Development India interview questions for designations

 Senior Software Engineer

 (6)

 Software Engineer Trainee

 (1)

 Software Developer

 (3)

 Software Consultant

 (1)

 Software Quality Analyst

 (1)

 Data Engineer

 (2)

 System Engineer

 (1)

 Senior Data Engineer

 (2)

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

I was interviewed before Mar 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. - OOPs concepts in C++
  • Ans. 

    OOPs concepts in C++ include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class). Example: class Car { private: int speed; public: void accelerate() { speed += 10; } };

    • Inheritance: Creating new classes based on existing classes. Example: class ElectricCar : public Car { public: void chargeBattery() { // code } };

    • Polymorph...

  • Answered by AI
  • Q2. Multi threading

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

Merge sort, find if it's a bst or not

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on Ds Algo well

Software Engineer Jobs at Mercedes-Benz Research and Development India

View all

I applied via Approached by Company and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

Design question related to past work experience and infotainment application

  • Q1. C++ basic questions
  • Q2. Basic fundamentals

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. What is abstraction and how can we achieve it?
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary features to the outside world.

    • Abstraction allows us to focus on what an object does rather than how it does it

    • Achieved through abstract classes and interfaces in object-oriented programming

    • Example: A car dashboard abstracts the internal workings of the car and provides only essential information to the driver

  • Answered by AI
  • Q2. Difference between hashtable and hashmap
  • Ans. 

    Hashtable is synchronized, while hashmap is not. Hashtable does not allow null keys or values, while hashmap does.

    • Hashtable is synchronized, while hashmap is not

    • Hashtable does not allow null keys or values, while hashmap does

    • Hashtable is a legacy class, while hashmap is a newer class

  • Answered by AI
  • Q3. How get() works insterally in hashmap
  • Ans. 

    The get() method in HashMap retrieves the value associated with a specified key.

    • get() method takes a key as input and returns the value associated with that key in the HashMap.

    • Internally, get() uses the hash code of the key to find the corresponding bucket in the HashMap.

    • If multiple keys have the same hash code, get() uses the equals() method to find the correct key-value pair.

  • Answered by AI
  • Q4. What is normalization?
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization helps in minimizing data redundancy by dividing the database into multiple tables and defining relationships between them.

    • It ensures data integrity by avoiding update anomalies and inconsistencies.

    • There are different normal forms such as 1NF, 2NF, 3NF, BCNF, and 4NF, each with specific rules to fo...

  • Answered by AI
  • Q5. What are constraints?
  • Ans. 

    Constraints are limitations or restrictions placed on a system or process.

    • Constraints define the boundaries within which a system must operate.

    • They can include limitations on resources, time, or functionality.

    • Examples of constraints in software engineering include memory limitations, processing speed, and input/output requirements.

  • Answered by AI
  • Q6. Write a query to get 3rd highest salary from the employee table
  • Ans. 

    Query to retrieve the 3rd highest salary from the employee table

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to retrieve the 3rd highest salary

  • Answered by AI
  • Q7. Write a code to get 2nd last node and its value from the singly linked list.
  • Ans. 

    Traverse the linked list to find the 2nd last node and return its value.

    • Traverse the linked list while keeping track of the current and previous nodes.

    • Once at the end of the list, return the value of the previous node.

  • Answered by AI
  • Q8. You have an array of integer and retrieve the 2 smallest number from it without sorting the array.
  • Ans. 

    Use two variables to keep track of the smallest and second smallest numbers in the array.

    • Iterate through the array and update the variables accordingly.

    • Initialize the variables with the maximum possible integer value to start with.

    • Example: array = [5, 2, 8, 1, 3], smallest = 1, secondSmallest = 2.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Kyndryl Software Engineer interview:
  • java basics
  • Data Structures
  • OOPS
  • SQL
  • SQL Queries
  • Algorithms
Interview preparation tips for other job seekers - Prepare problem sets mostly based on data structure and algorithm.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mechanism of Opps Concept
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts,interface and abstract class

Mercedes-Benz Research and Development India Interview FAQs

How many rounds are there in Mercedes-Benz Research and Development India Software Engineer interview?
Mercedes-Benz Research and Development India interview process usually has 2 rounds. The most common rounds in the Mercedes-Benz Research and Development India interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Mercedes-Benz Research and Development India Software Engineer 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 Mercedes-Benz Research and Development India. The most common topics and skills that interviewers at Mercedes-Benz Research and Development India expect are C++, AUTOSAR, Android, C and Compilers.
What are the top questions asked in Mercedes-Benz Research and Development India Software Engineer interview?

Some of the top questions asked at the Mercedes-Benz Research and Development India Software Engineer interview -

  1. - OOPs concepts in ...read more
  2. Create string cl...read more
  3. Technical Questions related to software and hardware with a small case stu...read more

Tell us how to improve this page.

Mercedes-Benz Research and Development India Software Engineer Interview Process

based on 7 interviews

2 Interview rounds

  • Resume Shortlist Round
  • Technical Round
View more
Join Mercedes-Benz Research and Development India The best or nothing.
Mercedes-Benz Research and Development India Software Engineer Salary
based on 363 salaries
₹6.5 L/yr - ₹22.6 L/yr
78% more than the average Software Engineer Salary in India
View more details

Mercedes-Benz Research and Development India Software Engineer Reviews and Ratings

based on 27 reviews

3.6/5

Rating in categories

3.1

Skill development

4.0

Work-life balance

3.3

Salary

4.0

Job security

3.6

Company culture

2.8

Promotions

3.2

Work satisfaction

Explore 27 Reviews and Ratings
Senior Engineer
1k salaries
unlock blur

₹10.3 L/yr - ₹32.4 L/yr

Senior Technical Lead
862 salaries
unlock blur

₹13 L/yr - ₹42.5 L/yr

Senior Consultant
748 salaries
unlock blur

₹9.2 L/yr - ₹28 L/yr

Principal Consultant
556 salaries
unlock blur

₹12 L/yr - ₹37.9 L/yr

Senior Software Engineer
517 salaries
unlock blur

₹10 L/yr - ₹32.2 L/yr

Explore more salaries
Compare Mercedes-Benz Research and Development India with

Bosch Global Software Technologies

3.9
Compare

Qualcomm

3.8
Compare

Tata Motors

4.2
Compare

BMW

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