Upload Button Icon Add office photos

HARMAN

Compare button icon Compare button icon Compare

Filter interviews by

HARMAN Interview Questions, Process, and Tips

Updated 2 Mar 2025

Top HARMAN Interview Questions and Answers

View all 134 questions

HARMAN Interview Experiences

Popular Designations

260 interviews found

I applied via Approached by Company and was interviewed in Oct 2022. There were 2 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 Resume tips
Round 2 - Technical 

(5 Questions)

  • Q1. Write a method for deletion of a node from a Linked List.
  • Ans. 

    Method for deleting a node from a Linked List

    • Find the node to be deleted

    • Update the previous node's next pointer to skip the deleted node

    • Free the memory occupied by the deleted node

  • Answered by AI
  • Q2. A extends B, B extends C, C extends A. Us it possible in Java? Why?
  • Ans. 

    No, it is not possible in Java due to circular inheritance.

    • Circular inheritance is not allowed in Java.

    • It creates an infinite loop and leads to compile-time errors.

    • To avoid this, inheritance hierarchy should be designed carefully.

    • Example: Class A extends B, B extends C, and C extends D.

    • This creates a linear inheritance hierarchy and is allowed in Java.

  • Answered by AI
  • Q3. How to make a custom immutable class in java?
  • Ans. 

    Creating a custom immutable class in Java

    • Make the class final

    • Make all fields private and final

    • Do not provide any setter methods

    • Provide a constructor to initialize all fields

    • Override equals() and hashCode() methods

    • Prevent modification of mutable objects passed in constructor

  • Answered by AI
  • Q4. Write a code to check if two strings are anagrams of each other.
  • Ans. 

    Code to check if two strings are anagrams of each other.

    • Create two character arrays from the strings

    • Sort the arrays

    • Compare the sorted arrays

  • Answered by AI
  • Q5. Time complexity of linked lists operations
  • Ans. 

    Time complexity of linked list operations is O(n) for traversal, insertion and deletion.

    • Traversal, insertion and deletion in linked lists take linear time.

    • Insertion and deletion at the beginning of the list is faster than at the end.

    • Doubly linked lists have slightly higher time complexity due to maintaining two pointers.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for HARMAN Software Developer interview:
  • Java
  • DSA
  • Java 8
Interview preparation tips for other job seekers - Do good DSA, java concepts. Learn more on time complexity and space complexity.

Skills evaluated in this interview

Top HARMAN Software Developer Interview Questions and Answers

Q1. Write a method for deletion of a node from a Linked List.
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Jan 2025

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

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Everything was fine. The Hr was nice and the manager also.

Round 2 - Technical 

(2 Questions)

  • Q1. What is your experience from your previous work?
  • Ans. 

    I have 5 years of experience working as a Test Engineer in the software industry.

    • Developed and executed test cases to ensure software quality

    • Performed regression testing to identify bugs and issues

    • Collaborated with developers to resolve defects and improve product performance

  • Answered by AI
  • Q2. Mx experience from my previous work
  • Ans. 

    I have 5 years of experience working as a Test Engineer in the software industry.

    • Developed and executed test cases to ensure software quality

    • Performed regression testing to identify bugs and issues

    • Collaborated with developers to resolve issues and improve product quality

  • Answered by AI

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)
HARMAN Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Explain activity lifecycle
  • Ans. 

    Activity lifecycle refers to the series of states an activity goes through during its lifetime in an Android app.

    • onCreate() - activity is created

    • onStart() - activity becomes visible to the user

    • onResume() - activity is interacting with the user

    • onPause() - activity is partially visible but still running

    • onStop() - activity is no longer visible to the user

    • onDestroy() - activity is being destroyed

  • Answered by AI
  • Q2. MVVM Architecture explain
  • Ans. 

    MVVM is an architectural pattern used in software development, particularly in Android apps, to separate the user interface from the business logic.

    • MVVM stands for Model-View-ViewModel

    • Model represents the data and business logic

    • View is the UI component that displays the data and interacts with the user

    • ViewModel acts as a mediator between the Model and the View, handling user interactions and updating the Model

    • MVVM help...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Core Interview question

Top HARMAN Android Developer Interview Questions and Answers

Q1. What are SOLID principles in OOP languages?
View answer (1)

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement

Round 1 - Coding Test 

Basic string questions
duration 2hr

Round 2 - Technical 

(2 Questions)

  • Q1. About the project
  • Q2. Basics of c++ that make differ in c

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)

HARMAN interview questions for popular designations

 Senior Software Engineer

 (18)

 Software Engineer

 (15)

 Software Developer

 (12)

 Senior Engineer

 (10)

 Associate Software Engineer

 (10)

 Technical Lead

 (9)

 Associate Engineer

 (9)

 Senior Product Engineer

 (8)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Write a program to find the greatest from the list of elements within a window range, where window size is 3.
  • Ans. 

    Program to find greatest element in a window of size 3

    • Iterate through the list and maintain a window of size 3

    • Find the maximum element in each window and store it in a separate list

    • Return the list of maximum elements

  • Answered by AI
  • Q2. Write a pyspark code to create dataframe from multiple list.
  • Ans. 

    Creating a dataframe from multiple lists using PySpark code.

    • Import necessary libraries like pyspark.sql.

    • Create lists of data.

    • Create a SparkSession.

    • Convert lists to RDDs and then to a DataFrame.

    • Display the DataFrame.

  • Answered by AI

AWS Data Engineer Interview Questions asked at other Companies

Q1. libraries used in ur project and how do you import them
View answer (1)

Get interview-ready with Top HARMAN Interview Questions

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

I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is a structure, Macro and Function differences, Static and Global variables, Dangling Pointer, Storage Classes, Keywords, Preprocessor Directives, Compilation stages, Multithreading
  • Q2. Program - Convert integer into structure.
  • Ans. 

    Convert integer into structure in C programming.

    • Define a structure with the required fields.

    • Create a variable of the structure type.

    • Assign the integer value to the appropriate field of the structure.

  • Answered by AI

Embedded C Developer Interview Questions asked at other Companies

Q1. Program - Convert integer into structure.
View answer (1)

Jobs at HARMAN

View all

Accountant 2 Interview Questions & Answers

user image Anonymous

posted on 2 Mar 2025

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

I was interviewed before Mar 2024.

Round 1 - Technical 

(1 Question)

  • Q1. About your resume
Round 2 - One-on-one 

(1 Question)

  • Q1. About the job descriptions
Round 3 - HR 

(1 Question)

  • Q1. Personal and salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on your technical and what you mentioned in your resume.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Episode creation
  • Q2. Describe LOT rules
  • Ans. 

    LOT rules are a set of regulations governing the use of the London Overground Train services.

    • LOT rules include guidelines for ticketing, passenger behavior, and safety regulations.

    • Passengers must have a valid ticket to travel on the London Overground Train services.

    • LOT rules also cover restrictions on luggage size and alcohol consumption on trains.

    • Failure to comply with LOT rules may result in fines or penalties.

  • Answered by AI

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About my relevant experience and highlights
  • Q2. Achivement done in the past
  • Ans. 

    Implemented a new performance management system resulting in a 20% increase in employee productivity.

    • Developed and implemented a new performance management system

    • Collaborated with department heads to gather feedback and make improvements

    • Provided training and support to managers and employees on the new system

    • Analyzed data to track the impact of the new system on employee productivity

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How I can over come stakeholders challenge
  • Q2. HR System knowledge i have
Round 3 - One-on-one 

(2 Questions)

  • Q1. Explain your experience which is relevant for the job
  • Q2. Overcome changes in the organisation
Round 4 - Peer 

(1 Question)

  • Q1. How to partner with HR OPS

Director Human Resources Interview Questions asked at other Companies

Q1. Selected one topic and tell me few words about the topic ?
View answer (1)

Engineer 1 Interview Questions & Answers

user image Anonymous

posted on 1 Mar 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I was interviewed before Mar 2024.

Round 1 - Coding Test 

The coding test consisted of two questions, focusing on simple DP concept and hashing, along with multiple-choice questions.

Round 2 - Technical 

(1 Question)

  • Q1. One question was a brute force implementation and other one was related to heap.
Round 3 - HR 

(1 Question)

  • Q1. Genral HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Simply prepare according to the requirements of the job role, and the interview will be relatively easy to moderate.

Engineer 1 Interview Questions asked at other Companies

Q1. What is the slenderness ratio, and how does it relate to buckling?
View answer (1)

DSP Engineer Interview Questions & Answers

user image Anonymous

posted on 30 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Basics of C/C++, OOPs, Signal Processing, Leetcode Easy - 3 questions

Round 2 - HR 

(2 Questions)

  • Q1. Salary Expectation
  • Q2. Next 5 year plan

DSP Engineer Interview Questions asked at other Companies

Q1. Modulation and it's techniques
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

HARMAN Interview FAQs

How many rounds are there in HARMAN interview?
HARMAN interview process usually has 2-3 rounds. The most common rounds in the HARMAN interview process are Technical, Resume Shortlist and HR.
How to prepare for HARMAN 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 HARMAN. The most common topics and skills that interviewers at HARMAN expect are Automation, Staffing, Claims, Due Diligence and Technical Support.
What are the top questions asked in HARMAN interview?

Some of the top questions asked at the HARMAN interview -

  1. Which programming language do you use regular in w...read more
  2. What step do you take to ensure accurate estimates for proj...read more
  3. Write a method for deletion of a node from a Linked Li...read more
How long is the HARMAN interview process?

The duration of HARMAN interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Jupiter Money

No Interviews

INTERVIEWS

HARMAN

No Interviews

SALARIES

Jupiter Money

SALARIES

Jupiter Money

INTERVIEWS

TCS

No Interviews

INTERVIEWS

Classplus

No Interviews

INTERVIEWS

Jupiter Money

No Interviews

INTERVIEWS

Jupiter Money

No Interviews

INTERVIEWS

Jupiter Money

20 top interview questions

Tell us how to improve this page.

HARMAN Interview Process

based on 228 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 823 Interviews
Samsung Interview Questions
3.9
 • 545 Interviews
LG Electronics Interview Questions
4.0
 • 195 Interviews
Philips Interview Questions
3.9
 • 157 Interviews
Apple Interview Questions
4.3
 • 137 Interviews
Sony Interview Questions
4.2
 • 67 Interviews
Bose Interview Questions
3.8
 • 5 Interviews
Jbl Interview Questions
3.8
 • 3 Interviews
Sennheiser Interview Questions
4.9
 • 1 Interview
View all

HARMAN Reviews and Ratings

based on 2.8k reviews

3.7/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.6

Salary

3.5

Job security

3.6

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 2.8k Reviews and Ratings
Java Full Stack Developer with Spring Batch

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

AI-ML with LLM, Semantic Kernel and Agentic Frameworks

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Data Scientist

Pune,

Gurgaon / Gurugram

+1

8-11 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
1.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
931 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Product Engineer
904 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare HARMAN with

Bose

3.8
Compare

Jbl

3.8
Compare

Sennheiser

4.9
Compare

Sony

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