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

Updated 6 Mar 2023

Mercedes-Benz Research and Development India Software Consultant Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Feb 2023. There were 5 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 - One-on-one 

(1 Question)

  • Q1. Java springboot related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Angular related questions
Round 4 - One-on-one 

(1 Question)

  • Q1. SQL related questions
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion and other details

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process is pretty much difficult to crack. It includes 4 levels . 3 are pure technical and the final one will be HR discussion

Interview questions from similar companies

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

(1 Question)

  • Q1. MVC aws and sql
Interview experience
2
Poor
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 4 interview rounds.

Round 1 - Aptitude Test 

Online test -math & quants,verbal,puzzle,computer programming,logical

Round 2 - Group Activity 

(1 Question)

  • Q1. They select everyone from this & nothing serious
Round 3 - Technical 

(3 Questions)

  • Q1. Any program which you know.
  • Ans. 

    One program I know is a simple calculator program written in Python.

    • The program takes user input for two numbers and an operator (+, -, *, /).

    • It then performs the operation and displays the result.

    • Example: input 5, +, 3 -> output 8

  • Answered by AI
  • Q2. About the projects in the resume
  • Q3. About the internship
Round 4 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Can you relocate yourself(your answer should be yes)

Interview Preparation Tips

Interview preparation tips for other job seekers - They are just taking the mass recuritments.Nothing to worry,if you clear 1st round & have good communication skills then 210% you will be selected.People who have 0 skills have been selected from our college.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Android interview asked about coroutines, flow, why we use MVVM instead of MVP, viewmodel pros and cons, security and how to hide keys in package
Round 2 - Group Discussion 

2nd round was about again Android but more focused on security features of android

Round 3 - Coding Test 

3rd round was live coding . I was asked to make an app from scratch in 1 hour without even using google.

Interview Preparation Tips

Interview preparation tips for other job seekers - Even after clearing all rounds I was rejected by HR because of salary issue. HR didn't communicated this before interviews and wasted our time and kept me as a backup plan. It is painful to get rejected after clearing all rounds and putting soo much efforts.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(3 Questions)

  • Q1. What are closures
  • Ans. 

    Closures are functions that have access to variables from their containing scope even after the scope has closed.

    • Closures allow functions to access variables from their outer function even after the outer function has finished executing.

    • They are commonly used in event handlers, callbacks, and asynchronous programming.

    • Closures help in maintaining state in functional programming.

  • Answered by AI
  • Q2. What is virtual DOM
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM used for efficient updates in web development.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing actual DOM manipulations.

    • When changes are made to the virtual DOM, a comparison is done with the actual DOM to determine the minimal updates needed.

    • This approach reduces the number of costly DOM operations, resulting in faster rende

  • Answered by AI
  • Q3. What are the data types in JS
  • Ans. 

    Data types in JavaScript include number, string, boolean, object, function, undefined, and null.

    • Number - represents numeric data, e.g. 10, 3.14

    • String - represents textual data, e.g. 'hello', '123'

    • Boolean - represents true or false values, e.g. true, false

    • Object - represents complex data structures, e.g. { key: 'value' }

    • Function - represents executable code, e.g. function() { }

    • Undefined - represents a variable that has ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Write react code for counter
  • Ans. 

    React code for a simple counter

    • Create a functional component for the counter

    • Use useState hook to manage the count state

    • Render the count value and buttons to increment and decrement the count

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - it was good

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I was interviewed before Mar 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Mostly asked c questions
  • Q2. Project related questions
Round 2 - Technical 

(1 Question)

  • Q1. Project related questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Technical discussion over how the microservices communicate internally.
  • Q2. Immutable class implementation
  • Q3. Singleton class implementation
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic MCQs on General aptitude, logical reasoning and programming questions

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is a constructor in C++?
  • Ans. 

    A constructor in C++ is a special member function that is automatically called when an object is created.

    • Constructors have the same name as the class and do not have a return type.

    • They can be used to initialize the object's data members.

    • Default constructors are automatically generated if no constructor is defined.

    • Parameterized constructors can be defined to accept arguments during object creation.

  • Answered by AI
  • Q2. What is copy assignment operator?
  • Ans. 

    Copy assignment operator is a special member function in C++ that allows one object to be assigned the values of another object of the same class.

    • Copy assignment operator is denoted by the = operator.

    • It is used to copy the values of one object into another object of the same class.

    • It is automatically generated by the compiler if not explicitly defined.

    • Example: MyClass obj1; MyClass obj2; obj2 = obj1; // Copy assignment

  • Answered by AI
  • Q3. What is virtualization in C++?
  • Ans. 

    Virtualization in C++ is the process of creating a virtual version of a class or function to allow for polymorphism and dynamic binding.

    • Virtualization in C++ is achieved through the use of virtual functions and inheritance.

    • Virtual functions are declared in a base class and overridden in derived classes to provide different implementations.

    • Virtualization allows for polymorphism, where a pointer to a base class can point...

  • Answered by AI
  • Q4. Implement String class
  • Ans. 

    Implement a custom String class in a programming language.

    • Define a class with necessary properties and methods to manipulate strings.

    • Include methods for concatenation, substring, length, etc.

    • Handle memory allocation and deallocation properly.

    • Example: class MyString { // implementation }

  • Answered by AI
  • Q5. What is smart pointers?
  • Ans. 

    Smart pointers are objects that act like pointers but provide automatic memory management.

    • Smart pointers help prevent memory leaks by automatically deallocating memory when no longer needed.

    • Examples include unique_ptr, shared_ptr, and weak_ptr in C++.

    • They provide better memory safety compared to raw pointers.

  • 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 applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

30 questions combination of Logical, numeric, verbal and 2 coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Self Introduction
  • Q2. Questions on core Java concepts
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies such as HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge of data structures and algorithms

    • Proficient in programming languages such as Java, Python, and C++

    • Familiar with Agile development methodolog

  • Answered by AI
  • Q2. Your strength and weakness
  • Ans. 

    Strength: Problem-solving skills. Weakness: Overthinking.

    • Strength: I have strong problem-solving skills which help me in finding efficient solutions to complex issues.

    • Weakness: Sometimes I tend to overthink situations, which can lead to unnecessary stress and delays in decision-making.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in you expertise and be confident of what you know.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Java and static method and why use java
  • Ans. 

    Java is a programming language used for developing applications. Static methods in Java are methods that belong to the class rather than an instance of the class.

    • Java is a popular programming language used for developing various types of applications.

    • Static methods in Java are methods that can be called without creating an instance of the class.

    • Static methods are commonly used for utility functions or methods that do n

  • Answered by AI
  • Q2. Write a program to print prime number
  • Ans. 

    Program to print prime numbers

    • Iterate through numbers and check if each number is prime

    • Use a nested loop to check divisibility by numbers less than the current number

    • Print the number if it is prime

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself
Give mock interview
Dp hard work

Skills evaluated in this interview

Mercedes-Benz Research and Development India Interview FAQs

How many rounds are there in Mercedes-Benz Research and Development India Software Consultant interview?
Mercedes-Benz Research and Development India interview process usually has 5 rounds. The most common rounds in the Mercedes-Benz Research and Development India interview process are One-on-one Round, Resume Shortlist and HR.
What are the top questions asked in Mercedes-Benz Research and Development India Software Consultant interview?

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

  1. Java springboot related questi...read more
  2. Angular related questi...read more
  3. SQL related questi...read more

Tell us how to improve this page.

Mercedes-Benz Research and Development India Software Consultant Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join Mercedes-Benz Research and Development India The best or nothing.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tata Motors Interview Questions
4.2
 • 995 Interviews
DXC Technology Interview Questions
3.7
 • 795 Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
NTT Data Interview Questions
3.9
 • 614 Interviews
View all
At par with the average Software Consultant Salary in India
View more details

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

based on 3 reviews

4.5/5

Rating in categories

3.7

Skill development

4.8

Work-life balance

3.8

Salary

4.5

Job security

4.2

Company culture

3.3

Promotions

3.7

Work satisfaction

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