Upload Button Icon Add office photos

HARMAN

Compare button icon Compare button icon Compare

Filter interviews by

HARMAN Senior Software Engineer Interview Questions and Answers for Freshers

Updated 29 Jan 2025

HARMAN Senior Software Engineer Interview Experiences for Freshers

2 interviews found

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

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. C questions- reverse a string and string pointers related questions,
  • Q2. Autosar concepts like comstack, dcm layers explanation, CanNm related questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Maps, linked list, Trees, Multidimensional Arrays
Round 3 - One-on-one 

(1 Question)

  • Q1. Previous Project related question. Problem analysis and solution code

Senior Software Engineer Interview Questions Asked at Other Companies for undefined

Q1. How do you create GQL server, directive in GQL, Fragments in GQL ... read more
Q2. Write an API to implement HTTP GET method to hit an external data ... read more
asked in LTIMindtree
Q3. Explain microservice architecture and how do we implement that us ... read more
asked in HCLTech
Q4. Find the second highest number by using Java Stream, What are the ... read more
Q5. How many projects or process you implemented in RE framework?

Senior Software Engineer Jobs at HARMAN

View all

Interview questions from similar companies

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

It's medium and leetcode questions.

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

(1 Question)

  • Q1. Code review questions about some unit tests

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions on Data Structures and Algorithms for the first two rounds.
  • Q2. Questions on System Design for some rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on DS Algo for coding rounds.
Prepare well for design-based questions for senior roles.

I applied via Company Website and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Given preorder and postorder traversal of a binary tree. Construct a binary tree and return inorder traversal.
  • Ans. 

    Construct binary tree from preorder and postorder traversal and return inorder traversal.

    • Create a root node with the first element of preorder traversal

    • Find the index of root node in postorder traversal

    • Divide the preorder and postorder traversals into left and right subtrees

    • Recursively construct left and right subtrees

    • Return inorder traversal of the constructed binary tree

  • Answered by AI
  • Q2. Given two strings return true if both are anagrams of each other
  • Ans. 

    Check if two strings are anagrams of each other

    • Create a character frequency map for both strings

    • Compare the maps to check if they are equal

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied through Microsoft careers page.
Got call from HR after 2 weeks.
They scheduled first round and i was not able clear that round.
Be well prepared with DSA

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Question related to my current work.
Round 3 - Technical 

(1 Question)

  • Q1. Design Memory Management system
  • Ans. 

    Design a memory management system for efficient allocation and deallocation of memory in software applications.

    • Implement a memory pool to pre-allocate a fixed amount of memory for frequent allocation and deallocation operations.

    • Use garbage collection to automatically reclaim memory that is no longer in use.

    • Implement memory segmentation to divide memory into different segments for better organization and management.

    • Use ...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. OS basics, locking mechanism, etc

Skills evaluated in this interview

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

(2 Questions)

  • Q1. System design round about ott
  • Q2. Leetcode rain water problem
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(10 Questions)

  • Q1. A scenario to create a new Android service
  • Ans. 

    Creating a new Android service

    • Define a class that extends Service class

    • Override onStartCommand() method to handle service logic

    • Register the service in AndroidManifest.xml file

  • Answered by AI
  • Q2. 2 puzzles. one was to find min no of weighs to find faulty item among 8 items and the other one was to min no of races required to find top three horses among 25 horses
  • Q3. How to manage gralloc buffers
  • Ans. 

    Managing gralloc buffers involves allocating, locking, and freeing memory for graphics rendering in Android.

    • Allocate gralloc buffer using gralloc_alloc() function

    • Lock buffer for reading or writing using gralloc_lock() function

    • Free buffer using gralloc_free() function

    • Example: gralloc_alloc(usage, width, height, format, &handle)

    • Example: gralloc_lock(handle, usage, left, top, width, height, &vaddr)

  • Answered by AI
  • Q4. What is HIDL vs AIDL
  • Ans. 

    HIDL stands for Hardware Interface Definition Language and is used for communication between HAL and framework. AIDL stands for Android Interface Definition Language and is used for inter-process communication in Android.

    • HIDL is used for communication between Hardware Abstraction Layer (HAL) and framework in Android

    • AIDL is used for inter-process communication in Android

    • HIDL is more efficient and faster than AIDL

  • Answered by AI
  • Q5. How Android buffers are passed from application to drivers.
  • Ans. 

    Android buffers are passed from application to drivers through shared memory and buffer queues.

    • Android applications communicate with drivers through the HAL (Hardware Abstraction Layer)

    • Buffers are typically passed using shared memory regions

    • Buffer queues are used to manage the flow of data between application and driver

    • Example: Camera application passing image data to camera driver for processing

  • Answered by AI
  • Q6. What happens if LINUX faces a hardware interrupt
  • Ans. 

    When LINUX faces a hardware interrupt, it stops executing the current code and jumps to a specific interrupt handler.

    • LINUX stops executing the current code and jumps to a specific interrupt handler

    • The interrupt handler processes the interrupt and resumes normal execution afterwards

    • Different hardware interrupts are handled by different interrupt handlers

  • Answered by AI
  • Q7. What is the challenge while creating multiple services in Android
  • Ans. 

    The challenge while creating multiple services in Android is managing communication between services and ensuring proper synchronization.

    • Managing communication between services can be complex and error-prone.

    • Ensuring proper synchronization between services to avoid race conditions and data inconsistencies.

    • Handling dependencies between services and coordinating their interactions.

    • Testing and debugging multiple services ...

  • Answered by AI
  • Q8. Boot up Android sequence
  • Ans. 

    The Android boot up sequence involves several stages including power on, bootloader, kernel initialization, system server startup, and app launch.

    • Power on the device

    • Bootloader loads the Android OS kernel

    • Kernel initializes the system and drivers

    • System server starts up and launches essential services

    • Apps are launched and user interface becomes accessible

  • Answered by AI
  • Q9. Describe about Permission files/SE Linux policy
  • Ans. 

    Permission files/SE Linux policy control access to resources based on rules set by administrators.

    • Permission files define who can access a file or directory and what actions they can perform.

    • SE Linux policy is a security mechanism that enforces rules on how processes interact with resources.

    • SE Linux policy is based on labels assigned to processes and resources, determining access permissions.

    • SE Linux policy can be cust...

  • Answered by AI
  • Q10. What is manifestation file and how is it used?
  • Ans. 

    A manifestation file is a configuration file used to define the properties and settings of a software application.

    • Manifestation files typically include information such as the application's name, version, dependencies, and permissions.

    • They are commonly used in software development to ensure that the application runs correctly and has access to necessary resources.

    • Examples of manifestation files include AndroidManifest....

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Questions from leetcode:
3-sum problem, extended to 4-sum
linkedlist problems

Round 2 - Assignment 

System design interview round:

1. Design a bookmarking application on web document.

Round 3 - Group Discussion 

Manager round with questions on project.

HARMAN Interview FAQs

How many rounds are there in HARMAN Senior Software Engineer interview for freshers?
HARMAN interview process for freshers usually has 2 rounds. The most common rounds in the HARMAN interview process for freshers are Technical, Resume Shortlist and One-on-one Round.
How to prepare for HARMAN Senior Software Engineer interview for freshers?
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.
What are the top questions asked in HARMAN Senior Software Engineer interview for freshers?

Some of the top questions asked at the HARMAN Senior Software Engineer interview for freshers -

  1. C++ basic, Linked list implementation using C++(Not C), Lambda Expression, Map ...read more
  2. Realtime Audio data handling, .wav format frame structu...read more
  3. Any Design patterns explaination if used in previous proj...read more
How long is the HARMAN Senior Software Engineer interview process?

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

Tell us how to improve this page.

HARMAN Senior Software Engineer Interview Process for Freshers

based on 2 interviews

Interview experience

3.5
  
Good
View more
HARMAN Senior Software Engineer Salary
based on 1.7k salaries
₹8 L/yr - ₹30.4 L/yr
17% more than the average Senior Software Engineer Salary in India
View more details

HARMAN Senior Software Engineer Reviews and Ratings

based on 148 reviews

3.9/5

Rating in categories

3.4

Skill development

4.0

Work-life balance

3.9

Salary

3.5

Job security

3.7

Company culture

3.4

Promotions

3.5

Work satisfaction

Explore 148 Reviews and Ratings
Sr Software Engineer

Bangalore / Bengaluru

3-10 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
929 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