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 Recruitment Consulltant and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is copy constructor? Write Syntax? Why there's const and & in the syntax of copy constructor.
  • Ans. 

    Copy constructor creates a new object by copying an existing object.

    • Copy constructor is used to create a new object by copying an existing object.

    • Syntax: ClassName(const ClassName& obj)

    • The const keyword ensures that the original object is not modified.

    • The & symbol is used to pass the object by reference, which is more efficient than passing by value.

    • Copy constructor is automatically called when a new object is created

  • Answered by AI
  • Q2. Major Pillar of OOPS, Abstraction vs Encapsulation
  • Ans. 

    Abstraction and Encapsulation are two major pillars of OOPS.

    • Abstraction is the process of hiding complex implementation details and showing only the necessary information to the user.

    • Encapsulation is the process of wrapping data and methods into a single unit and restricting access to the data from outside the unit.

    • Abstraction is achieved through abstract classes and interfaces.

    • Encapsulation is achieved through access ...

  • Answered by AI
  • Q3. Casting Operators in C++, dynamic_cast when it is used?
  • Ans. 

    dynamic_cast is used in C++ to perform safe downcasting of polymorphic types.

    • dynamic_cast is used to convert a pointer/reference of a base class to a pointer/reference of a derived class.

    • It is used when we want to access a derived class member function or variable using a base class pointer/reference.

    • If the conversion is not possible, dynamic_cast returns a null pointer for pointers or throws a bad_cast exception for r

  • Answered by AI
Round 2 - Client Interview 

(3 Questions)

  • Q1. What platform you worked on? Linux, Windows? System configuration?
  • Ans. 

    I have worked on both Linux and Windows platforms with various system configurations.

    • Proficient in Linux command line interface and shell scripting

    • Experience in Windows Server administration and Active Directory management

    • Familiarity with virtualization technologies such as VMware and VirtualBox

    • Knowledge of system configuration management tools like Ansible and Puppet

  • Answered by AI
  • Q2. What is Q_Object Macro in Qt?
  • Ans. 

    Q_Object Macro is a Qt macro used to declare a class as a QObject.

    • Q_Object Macro is used to enable signals and slots mechanism in a class.

    • It is used to declare a class as a QObject and to inherit from QObject.

    • It is used to enable the use of Qt's meta-object system in a class.

    • It is used to enable dynamic properties and object names in a class.

  • Answered by AI
  • Q3. Connect statement in Qt qnd it's parameters? MOC compiler in Qt?
  • Ans. 

    Connect statement is used to connect signals and slots in Qt. MOC compiler generates meta-object code for Qt classes.

    • Connect statement connects a signal to a slot or a signal to another signal.

    • Parameters of connect statement include sender object, signal name, receiver object, slot name, and optional connection type.

    • MOC compiler generates meta-object code for Qt classes which enables features like signals and slots, in

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Reason to leave your current company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of the questions asked were on basics of C++.

Skills evaluated in this interview

Top HARMAN Senior Engineer Product Development Interview Questions and Answers

Q1. What is copy constructor? Write Syntax? Why there's const and & in the syntax of copy constructor.
View answer (1)

Senior Engineer Product Development Interview Questions asked at other Companies

Q1. What is copy constructor? Write Syntax? Why there's const and & in the syntax of copy constructor.
View answer (1)

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)
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
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)

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)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Moderate Level
Mathematical
Logic Reasoning
English Grammar
Technical questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. What are your strengths
  • Q2. Where do see in next 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Good environment to begin carrer

Database Admin Interview Questions asked at other Companies

Q1. What is the difference between classification and clustering in the context of database management systems?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Question related to Position Specific
Round 2 - Technical 

(1 Question)

  • Q1. Question Related to position specific
Round 3 - One-on-one 

(1 Question)

  • Q1. Question related to Position Specific

Top HARMAN Technical Lead Interview Questions and Answers

Q1. 1. How mutex works 2. Howe do you share information between threads? 3. Questions inCompletableFuture? 4. Write a program to show the deadlock condition? 5.
View answer (1)

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

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.

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