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

Updated 2 Jul 2023

Mercedes-Benz Research and Development India Backend Developer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Jun 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 - Coding Test 

Basic MCQs(SQL, Java Output, Spring) and 2 simple coding with no logic involved

Round 3 - Technical 

(1 Question)

  • Q1. Very through based on Resume
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial Round with basic discussion
Round 5 - HR 

(1 Question)

  • Q1. Information about company culture etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the Technology mentioned in resume with depth.

Backend Developer Jobs at Mercedes-Benz Research and Development India

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java,Spring,hibernate,SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - They waste candidate's time. They take interviews, you get selected, by the time they should release offer letter, they say that you have to attend one more round to another client, they take again interview and say you are selected. Again by the time they should release offer letter, they say you another 2 more round are there and if you clear them them they will release offer letter. They will never release offer letter. Giving interviews to Mphasis is never ending process and they will never release offer letter. You will get better offers from other companies. Don't waste time giving interviews to Mphasis.
Interview experience
1
Bad
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 - Coding Test 

MCQ'S on Core Java, Java8, SQL, Microservices and Coding question in Java.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Java 8 concepts, Multi threading, Collections, Microservices, SOLID PRINCIPLES, Design Patterns and Java 8 coding and SQL queries
  • Q2. Take a list and find the list containing prime numbers in list, Find the highest salary of employees using streams and also basic SQL queries on joins
  • Ans. 

    Use Java streams to filter prime numbers from a list, find highest employee salary, and demonstrate basic SQL joins.

    • Use Java streams to filter prime numbers from the list

    • Use streams to find the highest salary of employees

    • Demonstrate basic SQL queries for joins

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on Java 8, Multi threading, Core Java, Solid principles and Design patterns.
Anyhow how much you prepare they will reject straight away by finding some silly reasons they don't have intentions to hire just conducting interviews for sake and publicity, finally ghosting candidates.
Don't attend and apply for this company

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

SQl, Spring, Spring BOOT< hibernate, JPA

Interview Preparation Tips

Interview preparation tips for other job seekers - Only study Java and spring frameworks, NO DSA, NO system design
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Why should we hire you. ?
  • Q2. Why you want this job.?

Interview Preparation Tips

Interview preparation tips for other job seekers - We have to prepare for any Concivenc in interview. And we have to be confident , on our answer's .

I was interviewed in Oct 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round that lasted for around 60 minutes. Questions were based on Node JS concepts.

  • Q1. Node Js Question

    How does Node JS work?

  • Ans. 

    Node.js is lightweight and efficient because it is built on an event-driven design with asynchronous I/O. It uses uses JavaScript as its scripting language and runs Chrome’s V8 JavaScript engine. It's used in desktop programs and with a popular framework called electron because it has APIs for accessing OS-level functionality like file systems, networks, and so on.

  • Answered Anonymously
  • Q2. Technical Question

    What are middlewares?

  • Ans. 

    Middleware are basically just functions that have full access to both request and response objects.

    var app = express();

    app.use(cookieParser());
    app.use(bodyParser());
    app.use(logger());
    app.use(authentication());

    app.get('/', function (req, res) {
    // ...
    });

    app.listen(3000);

    Whether you wish to design your own middleware or use the framework's built-in middlewares, an Express application is simply Node.js with a host of middl...

  • Answered Anonymously
  • Q3. Node Js Question

    What is Event Emitter?

  • Ans. 

    EventEmitter is a Node.js class that includes all the objects that are basically capable of emitting events. This can be done by attaching named events that are emitted by the object using an eventEmitter.on() function. Thus whenever this object throws an even the attached functions are invoked synchronously.
    Example:
    const EventEmitter = require('events');
    class MyEmitter extends EventEmitter {}
    const myEmitter = new MyEm...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABirlasoft Ltd. interview preparation:Topics to prepare for the interview - Node JS, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Explain Node Js architecture.
  • Ans. 

    Node Js architecture is based on event-driven, non-blocking I/O model.

    • Event loop handles all I/O operations asynchronously

    • Single-threaded event loop allows for high scalability

    • Modules and packages can be easily added through NPM

    • Uses V8 engine for efficient JavaScript execution

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

    Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Hoisting applies to variable declarations and function declarations

    • Variable declarations are hoisted but not their values

    • Function declarations are fully hoisted

    • Function expressions are not hoisted

    • Hoisting can lead to unexpected behavior and bugs

  • Answered by AI
  • Q3. Async Queue
  • Q4. Event Emitter
  • Q5. Middle-ware in node js
  • Ans. 

    Middleware is a software layer that sits between the application and the server, allowing for additional functionality to be added.

    • Middleware functions are executed sequentially, and can modify the request and response objects.

    • Common middleware includes body-parser, cookie-parser, and express-session.

    • Custom middleware can be created to add specific functionality to an application.

    • Middleware can be used for authenticati

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - What you say be confident. If you explain more then you explain with examples.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java,Spring,hibernate,SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - They waste candidate's time. They take interviews, you get selected, by the time they should release offer letter, they say that you have to attend one more round to another client, they take again interview and say you are selected. Again by the time they should release offer letter, they say you another 2 more round are there and if you clear them them they will release offer letter. They will never release offer letter. Giving interviews to Mphasis is never ending process and they will never release offer letter. You will get better offers from other companies. Don't waste time giving interviews to Mphasis.

Mercedes-Benz Research and Development India Interview FAQs

How many rounds are there in Mercedes-Benz Research and Development India Backend Developer 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 Resume Shortlist, Coding Test and Technical.
How to prepare for Mercedes-Benz Research and Development India Backend 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 Application Development, Backend, Bonds, CCTV Monitoring and Computer Science.
What are the top questions asked in Mercedes-Benz Research and Development India Backend Developer interview?

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

  1. Managerial Round with basic discuss...read more
  2. Very through based on Res...read more

Tell us how to improve this page.

Join Mercedes-Benz Research and Development India The best or nothing.
39% more than the average Backend Developer Salary in India
View more details

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

based on 1 review

2.0/5

Rating in categories

2.0

Skill development

3.0

Work-life balance

2.0

Salary

3.0

Job security

1.0

Company culture

2.0

Promotions

2.0

Work satisfaction

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

₹10.3 L/yr - ₹32.4 L/yr

Senior Technical Lead
849 salaries
unlock blur

₹13 L/yr - ₹42.5 L/yr

Senior Consultant
752 salaries
unlock blur

₹9.1 L/yr - ₹28 L/yr

Principal Consultant
563 salaries
unlock blur

₹13.6 L/yr - ₹37.9 L/yr

Senior Software Engineer
514 salaries
unlock blur

₹10.4 L/yr - ₹32 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
Did you find this page helpful?
Yes No
write
Share an Interview