Upload Button Icon Add office photos

Filter interviews by

HARMAN Data Engineer Interview Questions and Answers

Updated 17 Aug 2021

HARMAN Data Engineer Interview Experiences

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - HR 

(2 Questions)

  • Q1. Why do you apply for this position
  • Ans. 

    I am passionate about leveraging data to drive insights and make informed decisions.

    • Passionate about working with data and analytics

    • Excited about the opportunity to contribute to data-driven decision making

    • Interested in the challenges and opportunities in the field of data engineering

  • Answered by AI
  • Q2. What is your current salay
  • Ans. 

    I am currently earning a competitive salary based on my experience and skills.

    • My current salary is in line with industry standards for data engineers.

    • I have received raises and bonuses based on my performance.

    • I am open to discussing salary expectations for this role.

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

(1 Question)

  • Q1. Data engineering related
Round 2 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Expectations
Round 3 - Final selection 

(1 Question)

  • Q1. Offers and benefits
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - project submission 

(1 Question)

  • Q1. No questions just project submission
Round 2 - Technical 

(1 Question)

  • Q1. Basic ques on python and sql
Round 3 - Technical 

(1 Question)

  • Q1. Basic ques on resume and sql
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Online python test. 2 to 3 problems. more focused on optimize solution.

Round 3 - Case Study 

A case study provided based graph DB

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to present in better way.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

Tell about AC industry

Round 2 - Technical 

(3 Questions)

  • Q1. Move zeros to end?
  • Ans. 

    Move all zeros in an array of strings to the end while maintaining the order of non-zero elements.

    • Iterate through the array and move all zeros to the end while keeping the order of non-zero elements.

    • Use two pointers approach to swap elements in-place.

    • Example: Input: ['a', 'b', 'c', '0', 'd', '0'], Output: ['a', 'b', 'c', 'd', '0', '0']

  • Answered by AI
  • Q2. WHat are AWS services?
  • Ans. 

    AWS services are cloud computing services provided by Amazon Web Services.

    • Compute services (e.g. EC2, Lambda)

    • Storage services (e.g. S3, EBS)

    • Database services (e.g. RDS, DynamoDB)

    • Networking services (e.g. VPC, Route 53)

    • Machine learning services (e.g. SageMaker)

    • Analytics services (e.g. Redshift, Athena)

  • Answered by AI
  • Q3. What is dynamodb?
  • Ans. 

    DynamoDB is a fully managed NoSQL database service provided by AWS.

    • Fully managed NoSQL database service

    • Scalable and high-performance

    • Supports key-value and document data models

    • Automatically replicates data across multiple Availability Zones for high availability

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. How good are you at stress handling situations?
  • Ans. 

    I am very good at handling stress situations, remaining calm and focused under pressure.

    • I have experience working on high-pressure projects with tight deadlines.

    • I am able to prioritize tasks effectively and stay organized during stressful situations.

    • I have developed strong problem-solving skills that help me navigate stressful scenarios.

    • I am able to communicate effectively with team members and stakeholders to manage s...

  • Answered by AI
  • Q2. Why daikin eloaborate this?
  • Ans. 

    Daikin may elaborate on a topic to provide more detailed information or explanation.

    • To provide a better understanding of a complex concept or product

    • To address potential questions or concerns from customers

    • To showcase the company's expertise and knowledge in the industry

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Scenerio based coding

Round 2 - One-on-one 

(2 Questions)

  • Q1. K8s mode of authentication
  • Ans. 

    Kubernetes supports multiple modes of authentication, including X.509 certificates, bearer tokens, and service accounts.

    • Kubernetes supports X.509 client certificates for authentication.

    • Bearer tokens can be used for authentication in Kubernetes.

    • Service accounts are another mode of authentication in Kubernetes.

  • Answered by AI
  • Q2. Cluster upgrade

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Bdd framework oops
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. OOPS concepts with DSA in java
  • Ans. 

    OOPS concepts in Java are principles like Inheritance, Encapsulation, Polymorphism, and Abstraction. DSA involves data structures and algorithms.

    • OOPS concepts in Java include Inheritance, where a class inherits properties and behaviors from another class.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances of their parent cla...

  • Answered by AI
  • Q2. Questions related to resume projects and tech stacks used.
Round 2 - HR 

(1 Question)

  • Q1. Questions related to previous experiences in team oriented internships

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have good basics of DSA and OOPS in JAVA

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(4 Questions)

  • Q1. Why to join WD?
  • Ans. 

    WD offers exciting opportunities for growth and innovation in the software engineering field.

    • Opportunity to work on cutting-edge technologies

    • Collaborative and supportive work environment

    • Career development and growth opportunities

    • Strong company culture and values

    • Global presence and diverse projects

  • Answered by AI
  • Q2. Detect loop in linked list
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect loop in linked list.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at any point, there is a loop in the linked list.

  • Answered by AI
  • Q3. What are different product of WD?
  • Ans. 

    WD offers a variety of products including external hard drives, internal hard drives, SSDs, and network attached storage devices.

    • External hard drives

    • Internal hard drives

    • SSDs

    • Network attached storage devices

  • Answered by AI
  • Q4. Do you want to ask any questions?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't know result yet

Skills evaluated in this interview

HARMAN Interview FAQs

How to prepare for HARMAN Data Engineer 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 Python, Automation, Staffing, Claims and Due Diligence.
What are the top questions asked in HARMAN Data Engineer interview?

Some of the top questions asked at the HARMAN Data Engineer interview -

  1. Google Cloud Platf...read more
  2. SQL basic questi...read more
  3. Python,pan...read more

Tell us how to improve this page.

HARMAN Data Engineer Salary
based on 37 salaries
₹4.9 L/yr - ₹17.2 L/yr
At par with the average Data Engineer Salary in India
View more details

HARMAN Data Engineer Reviews and Ratings

based on 3 reviews

3.1/5

Rating in categories

3.6

Skill development

3.1

Work-life balance

4.1

Salary

3.1

Job security

3.1

Company culture

3.6

Promotions

3.1

Work satisfaction

Explore 3 Reviews and Ratings
AI Data Engineer

Hyderabad / Secunderabad

5-10 Yrs

Not Disclosed

Data Engineer - GCP

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Data Engineer

Bangalore / Bengaluru

4-7 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.7k salaries
unlock blur

₹8 L/yr - ₹31.2 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
971 salaries
unlock blur

₹7.5 L/yr - ₹30 L/yr

Senior Product Engineer
905 salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Explore more salaries
Compare HARMAN with

Bose

3.7
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