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
3.9

based on 1.5k Reviews

Filter interviews by

Mercedes-Benz Research and Development India Java Developer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced Java Developer with a passion for creating efficient and scalable applications.

    • Over 5 years of experience in Java development

    • Strong knowledge of object-oriented programming principles

    • Proficient in Spring framework and Hibernate

    • Experience with RESTful web services and microservices architecture

    • Familiar with Agile methodologies and version control systems like Git

  • Answered by AI
  • Q2. Explain Spring Boot flow in your project
  • Ans. 

    Spring Boot simplifies the development of Java applications by providing a set of tools and conventions.

    • Spring Boot eliminates the need for manual configuration by providing defaults and auto-configuration.

    • It includes embedded servers like Tomcat, Jetty, or Undertow for easy deployment.

    • Spring Boot starters help in quickly setting up dependencies and configurations.

    • Annotations like @SpringBootApplication and @RestContro

  • Answered by AI
  • Q3. Explain Spring Security flow in your project
  • Ans. 

    Spring Security is used for authentication and authorization in Java projects.

    • Spring Security provides authentication and authorization support out of the box.

    • It can be configured using XML or Java configuration.

    • It supports various authentication mechanisms like form-based, basic, and OAuth.

    • Roles and permissions can be defined using annotations or configuration.

    • Example: @EnableWebSecurity annotation enables Spring Secu

  • Answered by AI
  • Q4. What is @SpringBootApplication
  • Ans. 

    Annotation used to mark a class as a Spring Boot application

    • Main annotation in Spring Boot to indicate the starting point of the application

    • Combines @Configuration, @EnableAutoConfiguration, and @ComponentScan annotations

    • Used to enable the auto-configuration feature in Spring Boot

    • Reduces the need for XML configuration in Spring applications

  • Answered by AI
  • Q5. Coding Question - Find frequency of all the all the elements in Given String
  • Ans. 

    Find frequency of all elements in a given string

    • Create a HashMap to store the frequency of each element in the string

    • Iterate through the string and update the frequency in the HashMap

    • Convert the HashMap to an array of strings for the final result

  • Answered by AI
Round 2 - HR 

(5 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a Java Developer with 5 years of experience in developing web applications and implementing software solutions.

    • 5 years of experience in Java development

    • Proficient in developing web applications

    • Skilled in implementing software solutions

  • Answered by AI
  • Q2. What is Success according to you
  • Ans. 

    Success is achieving personal goals, feeling fulfilled, and making a positive impact on others.

    • Success is subjective and can vary from person to person.

    • It is not just about achieving wealth or fame, but also about personal growth and happiness.

    • Success can be measured by the impact one has on others and the legacy they leave behind.

    • Examples of success include reaching career milestones, maintaining healthy relationships...

  • Answered by AI
  • Q3. What are your strengths and weekness
  • Ans. 

    My strengths include strong problem-solving skills and attention to detail. My weakness is sometimes being too critical of my own work.

    • Strength: Strong problem-solving skills - I enjoy tackling complex problems and finding efficient solutions.

    • Strength: Attention to detail - I take pride in producing high-quality work and ensuring accuracy.

    • Weakness: Being too critical of my own work - I strive for perfection and sometim...

  • Answered by AI
  • Q4. Tell me about your Family Background
  • Ans. 

    I come from a close-knit family with a strong emphasis on education and hard work.

    • Family is supportive and values education

    • Parents are both professionals

    • Have a sibling who is also in the tech industry

  • Answered by AI
  • Q5. How do you solve any problem
  • Ans. 

    I approach problem-solving by breaking down the issue, researching possible solutions, and testing different approaches.

    • Identify the problem and gather all relevant information

    • Brainstorm potential solutions and evaluate their feasibility

    • Implement the chosen solution and test it to ensure it resolves the problem

    • Iterate on the solution if needed to improve its effectiveness

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Use of functional interface
  • Ans. 

    Functional interfaces in Java are interfaces with only one abstract method, used for lambda expressions and method references.

    • Functional interfaces can be used with lambda expressions and method references to provide implementation for the single abstract method.

    • Examples of functional interfaces in Java include Runnable, Callable, and Comparator.

    • Functional interfaces can also have default and static methods in addition

  • Answered by AI
  • Q2. Can you use same static method in two different interface
  • Ans. 

    No, static methods cannot be overridden in interfaces.

    • Static methods in interfaces are implicitly public and abstract, so they cannot be overridden.

    • If two interfaces have the same static method signature, it will not cause any conflict.

    • Implementing classes will have to provide their own implementation of the static method.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. I have added the questions below
  • Q2. I have added thebelow

Interview Preparation Tips

Interview preparation tips for other job seekers - 1) Write controller class and logic for getting list of employees for the given url:

URL given - http://localhost:8080/employees/salaryRange?=50000

2)Write sql query to find out the employees whose salary falls between a particular salary range.

3)How do we handle exceptions in controller class in springboot.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Based on the resume
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based questions
Round 3 - HR 

(1 Question)

  • Q1. Package discussion
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good coding questions related array and string

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Custom exception?
  • Ans. 

    Custom exception is a user-defined exception that extends the functionality of the built-in exceptions in Java.

    • Custom exceptions are created by extending the Exception class or one of its subclasses.

    • They allow developers to define their own exception types for specific scenarios.

    • Custom exceptions can include additional methods and fields to provide more information about the exception.

    • Example: public class CustomExcept...

  • Answered by AI
  • Q2. What is roles and responsibilities in your project?
  • Q3. Find out duplicate element in array?
  • Ans. 

    Use a HashSet to find duplicate elements in an array of strings.

    • Create a HashSet to store unique elements.

    • Iterate through the array and check if the element is already in the HashSet.

    • If it is, then it is a duplicate element.

    • Example: String[] array = {"apple", "banana", "apple", "orange"};

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Oct 2023.

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 

(3 Questions)

  • Q1. Mostly questions were on core java and multitasking Difference between wait() and sleep()
  • Q2. Synchronization, implementation of HashMap
  • Q3. Array questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Core java and Multithreading
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

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

Theory plus coding questions

Round 3 - Technical 

(5 Questions)

  • Q1. Core Java , spring boot questions, project
  • Q2. Project challenges how resolved
  • Ans. 

    Resolved project challenges through effective problem-solving techniques.

    • Identified the root cause of the challenges

    • Collaborated with team members to brainstorm solutions

    • Implemented appropriate strategies to overcome obstacles

    • Tested and validated the implemented solutions

    • Documented the resolution process for future reference

  • Answered by AI
  • Q3. Difficult situation in project while working with team how resolved
  • Q4. Core string concept in depth
  • Ans. 

    Core string concepts include immutability, string manipulation, and string comparison.

    • Strings in Java are immutable, meaning they cannot be changed once created.

    • String manipulation can be done using various methods like concatenation, substring, and replace.

    • String comparison can be done using equals() method for content comparison and == operator for reference comparison.

  • Answered by AI
  • Q5. Soft skills questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation level is good
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Naukri.com and was interviewed in Jan 2023. There were 3 interview rounds.

Round 1 - Group Discussion 

Stark from Java developer kidea

Round 2 - Group Discussion 

Java developer kidas he GD kidas using from java developer kidas

Round 3 - Case Study 

Java ful stops developer kidas iñ conding language

Interview Preparation Tips

Topics to prepare for eClerx Java Developer interview:
  • English Typing
Interview preparation tips for other job seekers - Java developer kidas acha he
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Aptitude, Reasoning and verbal.

Round 3 - Coding Test 

OOPS based two simple coding question.

Round 4 - HR 

(2 Questions)

  • Q1. 1.Question related my college life.
  • Q2. 2. What Difficulty I faced in my life and how I overcome it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in interview and give attention to your communication skills.

Mercedes-Benz Research and Development India Interview FAQs

How to prepare for Mercedes-Benz Research and Development India Java 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 Javascript, MySQL, Agile, Android and Application Development.

Tell us how to improve this page.

Join Mercedes-Benz Research and Development India The best or nothing.
Mercedes-Benz Research and Development India Java Developer Salary
based on 20 salaries
₹6.2 L/yr - ₹18 L/yr
108% more than the average Java Developer Salary in India
View more details

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

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

3.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

2.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Senior Engineer
1k salaries
unlock blur

₹8.5 L/yr - ₹32.4 L/yr

Senior Technical Lead
845 salaries
unlock blur

₹13 L/yr - ₹42 L/yr

Senior Consultant
750 salaries
unlock blur

₹9 L/yr - ₹26 L/yr

Principal Consultant
556 salaries
unlock blur

₹12.7 L/yr - ₹37.9 L/yr

Senior Software Engineer
489 salaries
unlock blur

₹10.2 L/yr - ₹34 L/yr

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

Bosch Global Software Technologies

4.0
Compare

Qualcomm

3.8
Compare

Tata Motors

4.2
Compare

BMW

4.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview