Upload Button Icon Add office photos

HARMAN

Compare button icon Compare button icon Compare

Filter interviews by

HARMAN Java Developer Interview Questions and Answers

Updated 13 Sep 2024

HARMAN Java Developer Interview Experiences

3 interviews found

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

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Part1 aptitude questions and part2 checking multiple programming language syntax such as python c#
java js shell script
part 3 on testing and devops
all are 10 qns from each part 30 mcqs

Interview Preparation Tips

Topics to prepare for HARMAN Java Developer interview:
  • aptitude
  • Testing
  • Devops
  • programming language
  • IT Projects
Interview preparation tips for other job seekers - study whatever you know thoroughly

Java Developer Interview Questions & Answers

user image Sailekha Pabba

posted on 12 Apr 2024

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

(1 Question)

  • Q1. Oops concepts in java
  • Ans. 

    Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding the imp...

  • Answered by AI

Skills evaluated in this interview

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

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:
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. Singleton pattern and example for singleton class Find the frequency of chars in given strings
  • Ans. 

    Singleton pattern is a design pattern that restricts the instantiation of a class to one object. Frequency of chars can be found using a hashmap.

    • Singleton pattern ensures that only one instance of a class is created and provides a global point of access to it.

    • Example of singleton class is java.lang.Runtime, which represents the runtime environment of the current application.

    • To find frequency of chars in a string, we ca...

  • Answered by AI
  • Q2. Explain your current projects and role & responsibility.

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare before attending the interview. practice some leetcode coding questions on array and strings.

Skills evaluated in this interview

Java Developer Jobs at HARMAN

View all

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 Jan 2025.

Round 1 - One-on-one 

(5 Questions)

  • Q1. What is your introduction?
  • Ans. 

    I am a passionate software developer with expertise in various programming languages and technologies.

    • Experienced in Java, Python, and JavaScript

    • Proficient in web development using HTML, CSS, and React

    • Familiar with database management systems like MySQL and MongoDB

  • Answered by AI
  • Q2. What is your technology
  • Ans. 

    I specialize in web development using JavaScript, HTML, and CSS.

    • Proficient in JavaScript, HTML, and CSS

    • Experience with front-end frameworks like React and Angular

    • Knowledge of back-end technologies like Node.js and Express

  • Answered by AI
  • Q3. What is html and what is block and inline function?
  • Ans. 

    HTML is a markup language used for creating web pages. Block and inline elements are two types of HTML elements with different display behaviors.

    • HTML stands for HyperText Markup Language and is used to create the structure of web pages.

    • Block elements take up the full width available and start on a new line, while inline elements only take up as much width as necessary and do not start on a new line.

    • Examples of block el...

  • Answered by AI
  • Q4. What is css ? And what is client side and server side ?
  • Ans. 

    CSS is a styling language used to design the layout and appearance of web pages. Client side refers to actions performed on the user's device, while server side refers to actions performed on the server.

    • CSS stands for Cascading Style Sheets and is used to control the visual presentation of web pages.

    • Client side refers to actions performed on the user's device, such as running scripts in the browser.

    • Server side refers t...

  • Answered by AI
  • Q5. What is javascript? And what is use in framework
  • Ans. 

    JavaScript is a programming language commonly used for web development. It is used in frameworks like React and Angular.

    • JavaScript is a high-level, interpreted programming language.

    • It is commonly used for client-side web development.

    • JavaScript can be used in frameworks like React, Angular, and Vue.

    • It allows for dynamic content on websites and interactive user experiences.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Array topics - 2 question from this topic
  • Q2. Linkedlist coding problem - 1 problem from this topic
Round 2 - Coding Test 

Sql problem solving - 2 problem from this topic

Round 3 - Behavioral 

(1 Question)

  • Q1. Project discussion - projects you worked on
  • Ans. 

    I have worked on various projects including a web application for a retail company and a mobile app for a fitness tracker.

    • Developed a web application for a retail company to manage inventory and sales

    • Created a mobile app for a fitness tracker to track workouts and progress

    • Collaborated with team members to design and implement features

    • Utilized technologies such as React, Node.js, and MongoDB

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is your weakness
  • Q2. What is pn junction diode
  • Ans. 

    A pn junction diode is a semiconductor device that allows current to flow in one direction only.

    • Consists of p-type and n-type semiconductor materials

    • When forward biased, allows current to flow easily

    • When reverse biased, blocks current flow

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at SRM university (SRMU) and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning, quantitative

Round 2 - Technical 

(2 Questions)

  • Q1. Java basics and intermediate
  • Q2. What is recursion
  • Ans. 

    Recursion is a programming technique where a function calls itself in order to solve a problem.

    • Recursion involves breaking down a problem into smaller subproblems and solving them recursively.

    • It requires a base case to stop the recursive calls.

    • Examples include factorial calculation, Fibonacci sequence generation, and tree traversal.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - java
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Difficult Coding question.

Round 2 - Technical 

(3 Questions)

  • Q1. Architecture design
  • Q2. Dont remember question
  • Q3. Explained desig

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

About ai
today generation

Interview Preparation Tips

Interview preparation tips for other job seekers - find well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude duration One hours
Level moderate

Round 2 - Coding Test 

Coding Test Duration 3 hours
Level moderate to hard

HARMAN Interview FAQs

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

Some of the top questions asked at the HARMAN Java Developer interview -

  1. Singleton pattern and example for singleton class Find the frequency of chars ...read more
  2. Oops concepts in j...read more

Tell us how to improve this page.

HARMAN Java Developer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 822 Interviews
Samsung Interview Questions
3.9
 • 545 Interviews
Dell Interview Questions
4.0
 • 385 Interviews
OPPO Interview Questions
4.0
 • 209 Interviews
LG Electronics Interview Questions
4.0
 • 194 Interviews
Vivo Interview Questions
4.1
 • 193 Interviews
Philips Interview Questions
3.9
 • 157 Interviews
Daikin Interview Questions
4.2
 • 144 Interviews
View all
HARMAN Java Developer Salary
based on 21 salaries
₹3.9 L/yr - ₹14 L/yr
35% more than the average Java Developer Salary in India
View more details

HARMAN Java Developer Reviews and Ratings

based on 3 reviews

4.4/5

Rating in categories

4.6

Skill development

4.4

Work-life balance

4.8

Salary

3.5

Job security

4.4

Company culture

4.4

Promotions

4.4

Work satisfaction

Explore 3 Reviews and Ratings
Java Developer

Bangalore / Bengaluru

2-4 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.7k salaries
unlock blur

₹8 L/yr - ₹30.4 L/yr

Technical Lead
1.5k salaries
unlock blur

₹10.5 L/yr - ₹37 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3.7 L/yr - ₹14 L/yr

Senior Engineer
933 salaries
unlock blur

₹6.5 L/yr - ₹24.3 L/yr

Senior Product Engineer
908 salaries
unlock blur

₹6 L/yr - ₹20 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