Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Hyundai Motor India Limited Team. If you also belong to the team, you can get access from here

Hyundai Motor India Limited Verified Tick

Compare button icon Compare button icon Compare
4.3

based on 3.7k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Hyundai Motor India Limited Senior Engineer Interview Questions and Answers

Updated 25 Nov 2024

Interview questions from similar companies

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

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What is UF SYSTEM
  • Ans. 

    UF SYSTEM stands for Ultrafiltration System, a process used to remove impurities from water by pushing it through a semipermeable membrane.

    • UF SYSTEM is a water treatment process that uses a semipermeable membrane to remove particles, bacteria, and other impurities from water.

    • It is commonly used in wastewater treatment, drinking water purification, and industrial processes.

    • UF SYSTEM operates on the principle of size exc...

  • Answered by AI
  • Q2. What full fom of ED AND PTED

Interview Preparation Tips

Interview preparation tips for other job seekers - Good attitude for all and hard work.respect for individual.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2022. There were 3 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 

(2 Questions)

  • Q1. Frf measurements
  • Q2. Structural vibrations
Round 3 - HR 

(2 Questions)

  • Q1. Resonance and modal shapes
  • Q2. Real time application
  • Ans. 

    Real time application refers to software that processes data as it is received, providing immediate results.

    • Real time applications require fast processing and low latency

    • Examples include stock trading platforms, traffic monitoring systems, and online gaming

    • Real time applications often rely on event-driven architecture and streaming data processing

    • Real time applications can be challenging to develop and require careful

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Kurukshetra and was interviewed before Apr 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Simple Aptitude contains all topic through campus placement

Round 2 - Technical 

(1 Question)

  • Q1. Describe the final year project. Basic understanding of the subject .
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join Mahindra

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear the basics concepts of your core subjects and also practice the aptitude.

I applied via Recruitment Consultant and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about problem solving tools.
  • Ans. 

    Problem solving tools are techniques used to identify, analyze and solve problems.

    • Root cause analysis

    • Fishbone diagram

    • SWOT analysis

    • Pareto chart

    • Brainstorming

    • 5 Whys

    • Flowchart

    • Decision matrix

  • Answered by AI
  • Q2. How you deal with problem.
  • Q3. What you done best in last 6 months.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepared.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Project Related Questions
  • Q2. 1 DSA and System Design Problem
  • Ans. 

    Implement a function to reverse a linked list

    • Create a new linked list to store the reversed elements

    • Traverse the original linked list and insert each node at the beginning of the new linked list

    • Update the head of the new linked list as the last node of the original linked list

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. More Technical Questions on Project
Round 3 - Culture Round 

(2 Questions)

  • Q1. Scenario Based Questions
  • Q2. Checking to fit in culture

Interview Preparation Tips

Interview preparation tips for other job seekers - Please discuss about expected CTC multiple times with HR.
I received the offer but declined due to significant gap in the compensation package which falls below my current CTC and well short of my expectations. While recruiter was very supportive and engaged ,it seemed that there wasn't a strong commitment from hiring manager to retain or align on this.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(11 Questions)

  • Q1. Difference between IOC and DI?
  • Ans. 

    IOC is a design pattern where control is inverted, while DI is a technique to achieve IOC by injecting dependencies into a class.

    • IOC stands for Inversion of Control, where the control of flow is inverted from the traditional top-down approach.

    • DI stands for Dependency Injection, a technique used to implement IOC by injecting dependencies into a class from an external source.

    • IOC is a design principle, while DI is a techn...

  • Answered by AI
  • Q2. Exception handling in the spiring Boot?
  • Ans. 

    Exception handling in Spring Boot allows developers to gracefully handle errors and provide meaningful responses to users.

    • Use @ControllerAdvice to handle exceptions globally

    • Use @ExceptionHandler to handle specific exceptions

    • Return custom error messages or responses to users

  • Answered by AI
  • Q3. @RequestBody annotation?
  • Ans. 

    Annotation used in Spring framework to bind the HTTP request body to a method parameter.

    • Used in Spring MVC to indicate that a method parameter should be bound to the body of the web request.

    • Can be used with various data types like JSON, XML, etc.

    • Helps in simplifying the process of handling request data in Spring applications.

  • Answered by AI
  • Q4. Function and BiFunction?
  • Q5. Equals and Hashcode ?
  • Q6. Type casting in the Java?
  • Ans. 

    Type casting in Java is the process of converting one data type into another.

    • Type casting can be done implicitly or explicitly in Java.

    • Implicit type casting is done when a smaller data type is converted to a larger data type, while explicit type casting is done when a larger data type is converted to a smaller data type.

    • Example of implicit type casting: int num = 10; double result = num;

    • Example of explicit type casting

  • Answered by AI
  • Q7. Intermediate and terminal operators in Java?
  • Ans. 

    Intermediate and terminal operators are used in Java streams to perform intermediate and terminal operations on elements.

    • Intermediate operators are used to transform, filter, or manipulate elements in a stream before passing them to the next operation. Examples include map(), filter(), and sorted().

    • Terminal operators are used to trigger the processing of elements in a stream and produce a result. Examples include forEa

  • Answered by AI
  • Q8. Functional interface in java?
  • Ans. 

    Functional interface in Java is an interface with only one abstract method. It can have multiple default or static methods.

    • Functional interfaces can be annotated with @FunctionalInterface to ensure they have only one abstract method.

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

    • Lambda expressions can be used to implement functional interfaces concisely.

  • Answered by AI
  • Q9. Various methods in the RestApi?
  • Ans. 

    Various methods in RestApi include GET, POST, PUT, DELETE.

    • GET - Used to retrieve data from the server. Example: GET /users

    • POST - Used to send data to the server to create a new resource. Example: POST /users

    • PUT - Used to update an existing resource on the server. Example: PUT /users/1

    • DELETE - Used to delete a resource on the server. Example: DELETE /users/1

  • Answered by AI
  • Q10. Coding question find the first non repeting char in the string using java 8.
  • Ans. 

    Using Java 8, find the first non-repeating character in a string.

    • Use Java 8 streams to convert the string to a character array.

    • Use Collectors.groupingBy to group characters by count.

    • Filter out characters with count > 1 and find the first character with count 1.

  • Answered by AI
  • Q11. Find the sum of all even numbers without using inbuild methods using stream api.
  • Ans. 

    Sum of all even numbers without using inbuild methods using stream api

    • Create an array of numbers

    • Use stream to filter out even numbers

    • Use stream to sum up the filtered even numbers

  • Answered by AI

Skills evaluated in this interview

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

60 minutes mechanical engineering topic thermal, som, heat transfer

Round 2 - Group Discussion 

Ev in day today life

Round 3 - Technical 

(1 Question)

  • Q1. Liner and terbulant flow
Round 4 - HR 

(1 Question)

  • Q1. General question

Interview Preparation Tips

Interview preparation tips for other job seekers - study well
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Some objective type question, One easy question on string, REsT API design in hackerank

Round 2 - Technical 

(1 Question)

  • Q1. Most of the questions was from my primary skils, Be prepared with you have mentioned in your resume.
Round 3 - HR 

(1 Question)

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

(1 Question)

  • Q1. Questions about resume and about yourself.
Round 2 - Coding Test 

Online coding test, 2 questions

Round 3 - One-on-one 

(4 Questions)

  • Q1. Two interviews with managers. All behavioral questions.
  • Q2. Tell me about yourself?
  • Q3. Explain a time where you had a difficult team member.
  • Q4. Explain projects you have worked on and the difficulties you faced?

Hyundai Motor India Limited Interview FAQs

How many rounds are there in Hyundai Motor India Limited Senior Engineer interview?
Hyundai Motor India Limited interview process usually has 1 rounds. The most common rounds in the Hyundai Motor India Limited interview process are Technical.
What are the top questions asked in Hyundai Motor India Limited Senior Engineer interview?

Some of the top questions asked at the Hyundai Motor India Limited Senior Engineer interview -

  1. Robot troubleshoot...read more
  2. Mechanical knowle...read more

Tell us how to improve this page.

Hyundai Motor India Limited Senior Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Hyundai Motor India Limited Senior Engineer Salary
based on 63 salaries
₹6.8 L/yr - ₹15 L/yr
34% more than the average Senior Engineer Salary in India
View more details

Hyundai Motor India Limited Senior Engineer Reviews and Ratings

based on 7 reviews

3.9/5

Rating in categories

4.3

Skill development

4.1

Work-life balance

4.2

Salary

4.2

Job security

4.1

Company culture

4.2

Promotions

4.2

Work satisfaction

Explore 7 Reviews and Ratings
Manager
673 salaries
unlock blur

₹10 L/yr - ₹28.5 L/yr

Assistant Manager
583 salaries
unlock blur

₹7 L/yr - ₹19.5 L/yr

Trainee
443 salaries
unlock blur

₹1.2 L/yr - ₹3.8 L/yr

Diploma Mechanical Engineer
329 salaries
unlock blur

₹1.1 L/yr - ₹4.5 L/yr

Hyundai Diploma Trainee
261 salaries
unlock blur

₹1.5 L/yr - ₹4 L/yr

Explore more salaries
Compare Hyundai Motor India Limited with

Maruti Suzuki

4.2
Compare

Tata Motors

4.2
Compare

Mahindra & Mahindra

4.1
Compare

Toyota Kirloskar Motor

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