Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Hewlett Packard Enterprise Team. If you also belong to the team, you can get access from here

Hewlett Packard Enterprise Verified Tick

Compare button icon Compare button icon Compare
4.2

based on 3.8k Reviews

Filter interviews by

Hewlett Packard Enterprise Interview Questions, Process, and Tips

Updated 26 Jan 2025

Top Hewlett Packard Enterprise Interview Questions and Answers

View all 177 questions

Hewlett Packard Enterprise Interview Experiences

Popular Designations

230 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

General Aptitude and one program to solve

Round 2 - Technical 

(1 Question)

  • Q1. Mostly from my resume only.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just clarify the job role during the interview and tell them weather you are interested or not
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 4 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 

(1 Question)

  • Q1. Oracle DBA questions
Round 3 - Technical 

(1 Question)

  • Q1. Oracle DBA questions
Round 4 - Behavioral 

(1 Question)

  • Q1. General Management questions

Top Hewlett Packard Enterprise Technical Solutions Consultant Interview Questions and Answers

Q1. What is difference between switch and bus?
View answer (1)

Technical Solutions Consultant Interview Questions asked at other Companies

Q1. What is difference between switch and bus?
View answer (1)

I applied via Recruitment Consulltant and was interviewed in Jul 2022. There were 3 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 tips
Round 2 - Aptitude Test 

Basic email writing, and grammar test

Round 3 - Technical 

(1 Question)

  • Q1. Related to my syllabus

Interview Preparation Tips

Interview preparation tips for other job seekers - They will check communication level. Be confident and ready to flexibility to any shift hours

Sales ops Interview Questions & Answers

user image Esther Suji

posted on 13 Oct 2022

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yoursefl
Round 3 - One-on-one 

(1 Question)

  • Q1. What is your passion

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing much about myself for searching the jjob also we will not be able to intervine

Hewlett Packard Enterprise interview questions for popular designations

 Technical Solutions Consultant

 (13)

 Software Engineer

 (12)

 Software Developer

 (11)

 Intern

 (9)

 Technical Support Engineer

 (8)

 System Software Engineer

 (5)

 Consultant

 (3)

 Data Engineer

 (3)

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Just asking for interduce about your self and basic salary details for previous company

Interview Preparation Tips

Interview preparation tips for other job seekers - U have a referral u can easily go for this company for contract employee

Get interview-ready with Top Hewlett Packard Enterprise Interview Questions

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

I was interviewed before Mar 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Previous work and responsibilities
  • Q2. Ci/cd, kubernetes, aws

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the StringYou are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string. For example: If the given string is: STR = "abcde". You have to print the string "edcba... read more
View answer (3)

Jobs at Hewlett Packard Enterprise

View all

I applied via Recruitment Consulltant and was interviewed in Aug 2022. 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 - Assignment 

Health management information system

Round 3 - Group Discussion 

Information details

Interview Preparation Tips

Interview preparation tips for other job seekers - I'm glad to share my details of how o work with a company desktop support Associate like as a part of hp in medd health management information system.

Desktop Support Engineer Interview Questions asked at other Companies

Q1. What is APIPA? WHAT IS SUBNETMASK? DIFFERENCE BETWEEB IPv4 and IPv6. How many types of os installation? What is BIOS AND what is use of CMOS BATTARY? WHST IS HDD and how many types of HDD? How to shot SMPS AND HOW TO UPDRADE RAM? DIFFERENCE... read more
View answer (3)

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 100 minutes
Round difficulty - Hard

The test had 3 parts:
1. Aptitude - 20 questions to be done in 25 minutes. (Medium level)
2. Technical MCQs - 25 questions to be done in 35 minutes. (Medium-Hard level) (HTML, JS, CSS, SQL)
3. Coding - 2 out of 3 questions to be done in 40 minutes. 20 minutes were allotted for each question. No switching between the codes was allowed. (1-easy, 2-medium in total)

  • Q1. Count Set Bits

    You are given a positive integer ‘N’. Your task is to find the total number of ‘1’ in the binary representation of all the numbers from 1 to N.

    Since the count of ‘1’ can be huge, you are ...

  • Ans. Brute Force

    The key idea is to count the number of set bits in each number from 1 to n and return the sum of all set bits.

     

    The algorithm will be -

     

    • For each i from 1 to N -
      • We find the number of set bits for each i.
      • This can be done using a built-in function (for eg builtin_popcount in c++) or by simply using a loop and left shifting the number and finding if the last place is set or not.
    • Finally we store the coun...
  • Answered Anonymously
  • Q2. Smallest number whose digits multiplication is ‘N’

    You are given a positive integer ‘N’. The task is to find and return the smallest number, ‘M’, such that the multiplication of all the digits in ‘M’ is eq...

  • Ans. Brute force

    A simple approach will be to iterate through all possible ‘M’ values, i.e., from ‘1’ to ‘2147483647’ (the largest value that a signed 32-bit integer field can hold), and check if their digit multiplication is equal to ‘N’.

     

    Algorithm:

    • Run a loop where ‘i’ ranges from ‘1’ to ‘2147483647’:
      • Set ‘CUR = i’. The current ‘M’ value.
      • Set ‘MUL = 1’. Use it to store the digit multiplication of ‘M’.
      • Run a loop until ‘cu...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was the first face-to-face technical round. The medium was ModernHire. There was only 1 member in the interview panel. This round tested me on C fundaments, Operating System basics, and problem-solving skills.
Questions asked:
What are the TRUNCATE, DELETE and DROP statements?
What are void elements in HTML?
Define multipart form data?
1. How does the C compiler works?
2. What are deadlocks and why does it happen?
3. How to resolve deadlock?
4. What is a kernel?
5. How to dynamically allocate memory in C?
6. What is makefile?
7. What is multi-threading and why is it useful?
8. What is the need for synchronization in OS?
9. How do you run a program of 10 GB using 2 GB memory?
10. What are semaphores and mutex?
11. How is HashMap implemented?
12. Difference between linker and loader.
13. Importance of header files.
14. What is Dynamic binding?
15. What type of database should you use where transactions are involved?
16. Brief discussion on the Internship experience.

  • Q1. Merge Sort

    Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

    Example :

    Merge Sort Algorithm -
    
    Merge sor...
  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

This was a managerial cum technical round. I was asked to introduce myself (both technical details and hobbies). Then I was asked about my internship experiences and what I learnt from them. After that, he asked me questions about the projects mentioned in my resume. He tested my in-depth knowledge of the technologies that I used. He also asked me about the alternative solutions and the drawbacks of my solution.
After that, he asked me to speak about Operating Systems for 5 minutes without giving a pause. Then he asked me to speak about the OSI model and the TCP/IP model for the next 5-10 minutes again without giving a pause. He appreciated my perfomance and gave me a coding question.
What is User-defined function? What are its various types in SQL. What is an Alias in SQL?
Then he asked me whether I had any questions.

  • Q1. Find a Node in Linked List

    You have been given a singly linked list of integers. Write a function that returns the index/position of integer data denoted by 'N' (if it exists). Return -1 otherwise.

    ...
  • Ans. Recursive Approach

    The steps are as follows:

     

    1. If the head is null, return -1 since an empty list will obviously not contain the element that we need to look for.
    2. Check whether the head’s data is equal to the element we want to search. Return 0 if it is.
    3. Then recurse on the next node from the head and get its answer.
    4. If the answer from the recursive call is -1, your answer is also -1 since you already check the head’s d...
  • Answered Anonymously
Round 4 - HR 

Round duration - 15 minutes
Round difficulty - Easy

Typical HR questions were asked in this round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vellore Institute of Technology. I applied for the job as Fullstack Developer in BangaloreEligibility criteria7 CGPA and 70% in boardsHewlett Packard Enterprise interview preparation:Topics to prepare for the interview - Data Structures, Operating Systems, Computer Networks, SQL Queries, Dynamic ProgrammingTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Revise data structures and operating systems very well.
Tip 2 : Have a good resume with self-made projects and internship experiences as they add value to the candidature.
Tip 3 : Be confident and know the basics well.

Application resume tips for other job seekers

Tip 1 : Have some good projects and know the tech stack well enough.
Tip 2 : Never include anything which you are not confident about.

Final outcome of the interviewSelected

Skills evaluated in this interview

Full Stack Developer Interview Questions asked at other Companies

Q1. Query And MatrixYou are given a binary matrix with ‘M’ rows and ‘N’ columns initially consisting of all 0s. 'Q' queries follow. The queries can be of 4 types: Query 1: 1 R index Query 2: 1 C index Query 3: 2 R index Query 4: 2 C index In ea... read more
View answer (1)

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed before Jun 2021. There were 4 interview rounds.

Round 1 - Coding Test 

There were 2 coding questions that were to be done in 40 minutes. Toggling between the questions was NOT allowed and there was 20 minutes timer for each question. The codes were of easy-medium difficulty level. Also, 50 MCQs of core CSE topics were asked which were to be completed in 60 minutes. The difficulty level was high.
Sectional cutoffs was there to qualify for the next round. Time to completion was also taken into account.

Round 2 - Technical 

(2 Questions)

  • Q1. This round consisted of an in-depth discussion on C/Java, OS, and cloud computing. The discussion was also done on personal projects. The difficulty was of medium level. The round was of approx 40 minutes...
  • Q2. A coding question on merge sort was asked which had to be done in notepad.
Round 3 - Technical 

(2 Questions)

  • Q1. This round consisted of an in-depth discussion on OS and computer networking questions. The discussion was also done on previous internship experiences. Also, some behavioral questions were asked. The dif...
  • Q2. A coding question on linked list was asked which had to be done in notepad.
Round 4 - HR 

(1 Question)

  • Q1. Normal HR questions were asked.

Interview Preparation Tips

Topics to prepare for Hewlett Packard Enterprise System Software Engineer interview:
  • OS
  • Computer Networking
  • DSA
  • Cloud Computing
  • Linux
Interview preparation tips for other job seekers - Knowledge of core CSE fundamentals are very important and its also very crucial to explain the code well.

Top Hewlett Packard Enterprise System Software Engineer Interview Questions and Answers

Q1. How will you select a particular hardware / vendor for a system
View answer (1)

System Software Engineer Interview Questions asked at other Companies

Q1. Reverse a string in following format If the string is Have a good day The resulting string should be day good a Have
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Personal and academic questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. Personal opinions and philosophy and work expectations.
Round 4 - One-on-one 

(1 Question)

  • Q1. Work ethics and philosophy.

Interview Preparation Tips

Topics to prepare for Hewlett Packard Enterprise Service Planner interview:
  • General interview questions.
Interview preparation tips for other job seekers - Be spontaneous. Be honest. Be confident.

Service Planner Interview Questions asked at other Companies

Q1. Mobile phone usage is good or bad for children?
View answer (1)

Hewlett Packard Enterprise Interview FAQs

How many rounds are there in Hewlett Packard Enterprise interview?
Hewlett Packard Enterprise interview process usually has 2-3 rounds. The most common rounds in the Hewlett Packard Enterprise interview process are Technical, HR and One-on-one Round.
How to prepare for Hewlett Packard Enterprise 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 Hewlett Packard Enterprise. The most common topics and skills that interviewers at Hewlett Packard Enterprise expect are Python, Computer science, Analytical, Career Development and Project Management.
What are the top questions asked in Hewlett Packard Enterprise interview?

Some of the top questions asked at the Hewlett Packard Enterprise interview -

  1. 1) Qn on multithreading, execute 2threads to show concurrent modification & to ...read more
  2. How well can you adapt when there is a change in technology used for a project?...read more
  3. 1) Case scenario with microservices. 2) Use of elastic search & kafka to stream...read more
How long is the Hewlett Packard Enterprise interview process?

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

Tell us how to improve this page.

Hewlett Packard Enterprise Interview Process

based on 95 interviews in last 1 year

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 895 Interviews
Cisco Interview Questions
4.1
 • 395 Interviews
Dell Interview Questions
4.0
 • 387 Interviews
Intel Interview Questions
4.2
 • 220 Interviews
View all

Hewlett Packard Enterprise Reviews and Ratings

based on 3.8k reviews

4.2/5

Rating in categories

3.9

Skill development

4.2

Work-life balance

3.6

Salary

4.0

Job security

4.2

Company culture

3.4

Promotions

3.9

Work satisfaction

Explore 3.8k Reviews and Ratings
Senior Director, Cost Accounting & Controls - Supply Chain Finance

Bangalore / Bengaluru

15-19 Yrs

Not Disclosed

Hardware Director Engineering

Bangalore / Bengaluru

18-29 Yrs

Not Disclosed

Global Support Operations Director - Field & Channel Delivery

Gurgaon / Gurugram,

Bangalore / Bengaluru

10-16 Yrs

Not Disclosed

Explore more jobs
Technical Support Engineer
890 salaries
unlock blur

₹1.8 L/yr - ₹9 L/yr

Process Associate
648 salaries
unlock blur

₹1.1 L/yr - ₹5.5 L/yr

Technical Solutions Consultant
603 salaries
unlock blur

₹4.1 L/yr - ₹16.5 L/yr

Software Engineer
561 salaries
unlock blur

₹9.8 L/yr - ₹18.1 L/yr

Financial Analyst
424 salaries
unlock blur

₹3.6 L/yr - ₹13.1 L/yr

Explore more salaries
Compare Hewlett Packard Enterprise with

Dell

4.0
Compare

IBM

4.0
Compare

Cisco

4.1
Compare

Oracle

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