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

I applied via Naukri.com and was interviewed in Aug 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Ask some REDHAT os troubleshooting questions,

Interview Preparation Tips

Interview preparation tips for other job seekers - REDhat certificate is take advantage to crack the interview

Linux System Administrator Interview Questions asked at other Companies

Q1. What are the causes of user not able to login application
View answer (9)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy questions to be cleared. Nothing to worry.

Round 2 - One-on-one 

(1 Question)

  • Q1. Simple logical questions asked from college science background, fresher level
Round 3 - HR 

(1 Question)

  • Q1. Communication/Relocation/Training/Degree Certificates

Interview Preparation Tips

Interview preparation tips for other job seekers - Extremely easy to crack interview with fresher level entry.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Intern Interview Questions & Answers

user image Anonymous

posted on 25 Jul 2022

I applied via Campus Placement and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

General Aptitude and Logical Questions

Round 2 - Technical 

(1 Question)

  • Q1. Interview with Line manager
Round 3 - HR 

(1 Question)

  • Q1. General round that included self introduction and similar topics

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay confident and be sure with what you mention on your resume. Be truthful and honest

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Project Lead Interview Questions & Answers

user image Anonymous

posted on 22 Feb 2022

Round 1 - Technical 
Round 2 - One-on-one 
Round 3 - HR 

(1 Question)

  • Q1. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Project Lead Interview Questions asked at other Companies

Q1. PowerBuilder 1. How to build app in one click? 2. How to read data from web page? 3. Have you used any PDF tools 4. How to save data from datawindow to XML 5. How to read mail from Outlook 6. How you migrate to new version.net SQL 1. Perfor... read more
View answer (1)

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 Questionnaire 

1 Question

  • Q1. In-depth basic questions on Apex, Lightning, Asynchronous Process, Permissions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident when you are answering, and show them you are ready to learn and work on new things.

Information Technology Specialist Interview Questions asked at other Companies

Q1. How does cloud computing help to manufacturer industry? And their features?
View answer (1)

Get interview-ready with Top Hewlett Packard Enterprise Interview Questions

I was interviewed in Nov 2020.

Round 1 - Video Call 

Round duration - 50 Minutes
Round difficulty - Easy

OOPs concept

Round 2 - Video Call 

(5 Questions)

Round duration - 80 Minutes
Round difficulty - Medium


OOPs concept.

Polymorphism and its types.

Compile-time polymorphism

Write a code to show operator overloading.

Difference between method overloading and method overriding.

Threading, multilevel scheduling, and its drawbacks and how it can be overcome.

DBMS -sql queries, same data but write using IN instead of WHERE
 

  • Q1. Bubble Sort

    For a given a string(str) and a character X, write a function to remove all the occurrences of X from the given string.

    The input string will remain unchanged if the given character(X) doesn&...

  • Ans. Space Complexity: O(1)Explanation: Time Complexity: O(1)Explanation:
  • Answered Anonymously
  • Q2. Subarray With Given Sum

    Given an array ARR of N integers and an integer S. The task is to find whether there exists a subarray(positive length) of the given array such that the sum of elements of the subar...

  • Ans. Bruteforce Approach
    • In this approach, we will traverse all the subarrays and for each subarray, we will check whether the sum of the elements of the subarray matches with the given sum.
    • To traverse all the subarrays we will use two nested loops.
    • The outer loop will select the start index and the inner loop will fix the end index of the subarray. While incrementing the inner pointer(inner loop pointer) we will also maintai...
  • Answered Anonymously
  • Q3. Count Frequency

    You are given a string 'S' of length 'N', you need to find the frequency of each of the characters from ‘a’ to ‘z’ in the given string.

    Example :

    Given 'S' : abcd...
  • Ans. Count Frequency

    Since there are just 26 lower case characters, we can use an array of size 26 to store the result.

     

    Here is the algorithm : 

     

    1. Create an array (say, ‘FREQ’), where 0-th index stores the frequency of ‘a’, 1st index stores the frequency of ‘b’ and so on. So the last index i.e. 25th index stores the frequency of ‘z’.
    2. Run a for loop from 0 to ‘N’ - 1 (say, iterator ‘i’), on the string and do the f...
  • Answered Anonymously
  • Q4. Find Duplicate

    You have been given an integer array/list(ARR) of size N which contains numbers from 0 to (N - 2). Each number is present at least once. That is, if N = 5, the array/list constitutes values ...

  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered Anonymously
  • Q5. Remove character

    For a given string(str) and a character X, write a function to remove all the occurrences of X from the given string and return it.

    The input string will remain unchanged if the given ch...

  • Ans. Iterative Solution
    • We create an empty string that will store our final result. We will return it at the end.
    • We iterate from 0 to the length of the string. Say, our loop variable is i. We can then access the ith character as input[i]
    • If the ith character equals the character c i.e input[i] == c, then we skip this character and do nothing.
    • Else we need to append the character to the output string.
    • We finally return the outpu...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Kalinga Institute of Industrial Technology. Eligibility criteria7 CGPAHewlett Packard Enterprise interview preparation:Topics to prepare for the interview - data stuctures, algorithms, operating system, database management system, computer networksTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Study about the company
Tip 2 : Go through interview questions and experiences
 

Application resume tips for other job seekers

Tip 1 : Know your resume thoroughly
Tip 2 : Mention good projects on which you can talk about and explain properly

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Hewlett Packard Enterprise Software Developer Interview Questions and Answers

Q1. Find DuplicateYou have been given an integer array/list(ARR) of size N which contains numbers from 0 to (N - 2). Each number is present at least once. That is, if N = 5, the array/list constitutes values ranging from 0 to 3 and among these,... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Jobs at Hewlett Packard Enterprise

View all

I applied via Referral and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How you clear interview at Hewlett Packard Pvt ltd

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong knowledge of hardware and networking ,
Knowledge of networking devices
Previous Working experience
Knowledge of installation of OS and software

Engineer- Customer Support Interview Questions asked at other Companies

Q1. If the customer is very irate and he is speaking profanity,how will you deal with them?
View answer (3)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2021. 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 - HR 

(1 Question)

  • Q1. Profile screening to find the relevance
  • Ans. 

    Profile screening is a process of evaluating a candidate's qualifications and experience to determine their relevance to a job position.

    • Profile screening involves reviewing resumes, cover letters, and job applications.

    • Employers use profile screening to identify candidates who meet the job requirements.

    • Screening criteria may include education, work experience, skills, and certifications.

    • Applicant tracking systems (ATS) ...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. In detail discussion about previous job experiences.
Round 4 - HR 

(1 Question)

  • Q1. Package discussion and joining formalities

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the job description completely before applying for the job. This will save you and the recruiter a lot of time.

Content Strategist Interview Questions asked at other Companies

Q1. How would you differentiate content strategy for B2B and B2C clients?
View answer (1)

Specialist Interview Questions & Answers

user image Anonymous

posted on 27 Oct 2021

Interview Questionnaire 

1 Question

  • Q1. Restful api, Django, general questions on how stateful and stateless protocol works.

Interview Preparation Tips

Interview preparation tips for other job seekers - just have your basics strong

Specialist Interview Questions asked at other Companies

Q1. 1. Solid principles implementation in a given scenario, how can we apply and improve the problem shared by interviewer. 2. C# coding questions on strings and arrays. 3. Rest API methods and it's implementation. 4. Basic questions on Jquery,... read more
View answer (1)

Supervisor Interview Questions & Answers

user image Anonymous

posted on 19 Aug 2021

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

Interview Questionnaire 

1 Question

  • Q1. About myself/ assignment test/troubleshoot.

Interview Preparation Tips

Interview preparation tips for other job seekers - It all needs your experience and the knowledge of computer.

Supervisor Interview Questions asked at other Companies

Q1. Self introduction? & what is mean by eCommerce ? How it can do
View answer (10)

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
Global Support Operations Director - Field & Channel Delivery

Gurgaon / Gurugram,

Bangalore / Bengaluru

10-16 Yrs

Not Disclosed

Hardware Director Engineering

Bangalore / Bengaluru

18-29 Yrs

Not Disclosed

Senior Director, Cost Accounting & Controls - Supply Chain Finance

Bangalore / Bengaluru

15-19 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