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 Developer Interview Questions and Answers

Updated 27 Oct 2024

Mercedes-Benz Research and Development India Software Developer Interview Experiences

3 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Write a program for linear search

Round 2 - Behavioral 

(2 Questions)

  • Q1. Write cpp program for linear search
  • Ans. 

    A C++ program for linear search in an array of strings

    • Declare an array of strings

    • Take input from user for the element to search

    • Iterate through the array to find the element

    • Return the index if found, otherwise return -1

  • Answered by AI
  • Q2. OOPs basics concepts asked

Interview Preparation Tips

Topics to prepare for Mercedes-Benz Research and Development India Software Developer interview:
  • C++
  • Python
  • Machine Learning
Interview preparation tips for other job seekers - Interview is way too easy, and this reflects in the work quality in company.

Skills evaluated in this interview

I applied via campus placement at Manipal University and was interviewed in Nov 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was an online test which basically tests your basics

Round 2 - One-on-one 

(2 Questions)

  • Q1. He asked to explain my resume
  • Q2. And questions related to the projects which I did

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s better to crack the interview during campus placements than to search a job later

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 Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Two rounds of coding which was medium to hard

Round 2 - Assignment 

I was assigned to develop a software on car automation

Round 3 - HR 

(2 Questions)

  • Q1. About yourself and my education
  • Q2. Why mercedes and what you expect from us
  • Ans. 

    I chose Mercedes because of its reputation for luxury, innovation, and quality. I expect a challenging and rewarding work environment.

    • Chose Mercedes for its reputation for luxury and innovation

    • Expect a challenging and rewarding work environment

    • Impressed by Mercedes' commitment to quality and cutting-edge technology

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep trying

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions on dotnet core
  • Q2. Basic questions on angular
Round 2 - Coding Test 

MCQ asked for css,js etx

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Prev job work and project details , roles and responsibility

Round 2 - Technical 

(2 Questions)

  • Q1. What is SDLC process
  • Ans. 

    SDLC process is a structured approach to software development that defines tasks performed at each stage of the software development life cycle.

    • SDLC stands for Software Development Life Cycle

    • It includes stages like planning, analysis, design, implementation, testing, and maintenance

    • Each stage has specific goals and deliverables to ensure the quality and success of the software project

  • Answered by AI
  • Q2. What is the ASp.net mean for ?
  • Ans. 

    ASP.NET stands for Active Server Pages .NET, a web application framework developed by Microsoft.

    • ASP.NET is a server-side web application framework used for building dynamic web pages and web applications.

    • It allows developers to create web applications using languages like C# or VB.NET.

    • ASP.NET provides tools and libraries for building web forms, MVC (Model-View-Controller) applications, and Web API services.

    • It is part o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on tech round

Skills evaluated in this interview

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

I applied via campus placement at Easwari Engineering College, Chennai and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Includes basic concepts of computer networks, computer architecture and technical MCQ questions. First round also includes 3 coding questions of easy level. Those who solved 2 coding questions got selected for next round.

Round 2 - Technical 

(4 Questions)

  • Q1. Question from oops concept, c++ and JAVA were asked.
  • Q2. Questions data structures like how to reverse a linked list were asked.
  • Q3. Explain packages in java
  • Ans. 

    Packages in Java are used to organize classes and interfaces into namespaces for better code organization and reusability.

    • Packages help in avoiding naming conflicts by grouping related classes together.

    • Packages can be nested within each other to create a hierarchical structure.

    • Packages are declared using the 'package' keyword at the beginning of a Java file.

    • Example: 'package com.example.myapp;' declares a package named

  • Answered by AI
  • Q4. Explain the use of public static void main
  • Ans. 

    The public static void main method is the entry point of a Java program.

    • It is a mandatory method in Java programs, as it is the starting point of execution.

    • The 'public' keyword allows the main method to be accessed from outside the class.

    • The 'static' keyword allows the main method to be called without creating an instance of the class.

    • The 'void' keyword indicates that the main method does not return any value.

    • The 'main...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Questions about the awards and certification i mentioned in my resume
  • Q2. Common HR questions like location....salary......why tata elxsi ect..

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice coding in gfg platform, it helped a lot.....have atleast basic knowledge on concepts you mentioned in your resuem.

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Read java oops and basiscs of spring well, and if you had done thesis there can be questions on that
  • Q2. Lambda expressions
  • Q3. Stream filtering
Round 2 - HR 

(1 Question)

  • Q1. Why are you looking for job change
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Brief introduction
  • Q2. Toggle Bitwise operator programs in c
  • Ans. 

    Bitwise operators in C are used to perform operations at the bit level.

    • Bitwise AND operator (&) - performs a bitwise AND operation on two operands.

    • Bitwise OR operator (|) - performs a bitwise OR operation on two operands.

    • Bitwise XOR operator (^) - performs a bitwise XOR operation on two operands.

    • Bitwise NOT operator (~) - inverts the bits of the operand.

    • Bitwise left shift operator (<<) - shifts the bits of the left ope...

  • Answered by AI
  • Q3. Write a program on function pointers for array of 10 elements in c
  • Ans. 

    A program on function pointers for an array of 10 elements in C.

    • Declare an array of function pointers with a size of 10.

    • Assign different functions to each element of the array.

    • Invoke the functions using the function pointers.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Great interview it was

Round 2 - Technical 

(2 Questions)

  • Q1. What is android?
  • Ans. 

    Android is a mobile operating system developed by Google, based on the Linux kernel.

    • Developed by Google

    • Based on Linux kernel

    • Used in smartphones, tablets, smartwatches, etc.

  • Answered by AI
  • Q2. What is kotlin?
  • Ans. 

    Kotlin is a statically typed programming language that runs on the Java Virtual Machine (JVM) and can also be compiled to JavaScript source code.

    • Kotlin is interoperable with Java, meaning you can use Java libraries and frameworks in Kotlin code.

    • Kotlin is concise, reducing boilerplate code compared to Java.

    • Kotlin supports functional programming features like higher-order functions and lambdas.

    • Kotlin is officially suppor

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Whats is current ctc?
  • Ans. 

    Current CTC refers to the current salary package of the candidate.

    • Current CTC is the total amount of money a candidate is currently earning from their job.

    • It includes the basic salary, bonuses, incentives, and any other monetary benefits.

    • Candidates may choose to disclose their current CTC during job interviews to negotiate a better salary package.

    • Example: If a candidate's current CTC is $50,000 per year, they may expec

  • Answered by AI
  • Q2. What is expected ctc?
  • Ans. 

    Expected CTC is the salary range that the candidate is looking for in a new job.

    • Research the average salary for Software Developers in your area

    • Consider your experience, skills, and the company's size and industry

    • Be prepared to negotiate based on the job responsibilities and benefits offered

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic Spirnnboot question

Mercedes-Benz Research and Development India Interview FAQs

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

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

  1. Write cpp program for linear sea...read more
  2. OOPs basics concepts as...read more

Tell us how to improve this page.

Mercedes-Benz Research and Development India Software Developer Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more
Join Mercedes-Benz Research and Development India The best or nothing.
60% more than the average Software Developer Salary in India
View more details

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

based on 20 reviews

4.0/5

Rating in categories

3.7

Skill development

4.4

Work-life balance

3.5

Salary

4.0

Job security

4.1

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 20 Reviews and Ratings
Senior Engineer
1.1k salaries
unlock blur

₹10.3 L/yr - ₹32.4 L/yr

Senior Technical Lead
856 salaries
unlock blur

₹13.5 L/yr - ₹42.5 L/yr

Senior Consultant
750 salaries
unlock blur

₹9.2 L/yr - ₹26 L/yr

Principal Consultant
524 salaries
unlock blur

₹12 L/yr - ₹37.9 L/yr

Senior Software Engineer
516 salaries
unlock blur

₹10.4 L/yr - ₹34 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