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

Filter interviews by

Hewlett Packard Enterprise Full Stack Developer Interview Questions, Process, and Tips

Updated 23 Mar 2022

Hewlett Packard Enterprise Full Stack Developer Interview Experiences

1 interview found

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 Problem Statement

    Given a positive integer N, compute the total number of '1's in the binary representation of all numbers from 1 to N. Return this count modulo 1e9+7 because the result can...

  • Ans. 

    Count the total number of set bits in the binary representation of numbers from 1 to N modulo 1e9+7.

    • Iterate through numbers from 1 to N and count the set bits in their binary representation

    • Use bitwise operations to count the set bits efficiently

    • Return the count modulo 1e9+7 for each test case

  • Answered by AI
  • Q2. 

    Smallest Number with Given Digit Product

    Given a positive integer 'N', find and return the smallest number 'M', such that the product of all the digits in 'M' is equal to 'N'. If such an 'M' is not possib...

  • Ans. 

    Find the smallest number whose digits multiply to a given number N.

    • Iterate through possible digits to form the smallest number with product equal to N

    • Use a priority queue to keep track of the smallest possible number

    • Check constraints to ensure the number fits in a 32-bit signed integer

  • Answered by AI
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 Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Understand the Merge Sort algorithm which involves dividing the array into two halves, sorting each half, and then merging them back together.

    • Recursively apply the Merge Sort algorithm until the size of each array is 1.

    • Merge the sorted halves to produce the final sorted array.

    • Ensure to handle the input constraints such as the number of...

  • Answered by AI
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

    Given a singly linked list of integers, your task is to implement a function that returns the index/position of an integer value 'N' if it exists in the linked list. Return -1 i...

  • Ans. 

    Implement a function to find the index of a given integer in a singly linked list.

    • Traverse the linked list while keeping track of the index of each element.

    • Compare each element with the target integer 'N'.

    • Return the index if the element is found, otherwise return -1.

    • Handle cases where the target integer is not found in the linked list.

  • Answered by AI
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

Interview questions from similar companies

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles, Psychometric Test

Round 2 - One-on-one 

(1 Question)

  • Q1. Some water in 3 Jars question, you had to measure out 5L correctly

Interview Preparation Tips

Interview preparation tips for other job seekers - Make the interview interactive, I got this input from another Senior. Before i went into the interview room the volunteers were telling all those who goes into Room No 1 is screwed. I was praying i don't get room no 1. But fortunately for me I got room no 1 because when the interviewer gave me the puzzle and handed over pen and paper he went back to relax his posture and when i explained i will fill the 5L Jar first, he immediately came forward to listen to me, at that moment i knew i got the job because i felt the previous candidates never made their interview interactive and that's why he went back to relax his posture.

I was interviewed in Sep 2016.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills and ability to work in a team

    • Completed multiple projects including a web-based inventory management system

  • Answered by AI
  • Q2. Simple coding questions..Basically pattern.
  • Q3. And also they will ask about your projects.

Interview Preparation Tips

Round: Test
Experience: 60 multiple choice questions so have to manage time carefully.
Tips: Have to give equal importance to all the sections..So try to do well in all section.
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical + HR Interview
Experience: Don't panic...Only write those things that you know in your resume.

Skills: Smart Coding
College Name: Jaypee Institute Of Information Technology, Noida

I was interviewed in May 2017.

Interview Preparation Tips

Round: Test
Total Questions: 20

Round: Group Discussion
Duration: 1 hour

Skills: Coding Skills And Knowledge On Data Structures

I was interviewed in Jun 2017.

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes

Skills: Engineering Basics

I was interviewed in May 2017.

Interview Preparation Tips

Round: Group Discussion
Duration: 7 hours

College Name: Andhra university

I was interviewed in Aug 2017.

Interview Preparation Tips

Round: Test
Tips: Practice e litmus questions and also give mock tests on placement season
Duration: 2 hours

Round: Technical + HR Interview
Experience: The interviewer asked me questions from the subjects I mentioned in my CV and also asked so many situational questions like what will you do in this situation etc.

Skills: Presence Of Mind, Technical Skill

I was interviewed before Aug 2016.

Interview Questionnaire 

1 Question

  • Q1. Only introduction and project questions

Interview Preparation Tips

Round: aptitude
Experience: around 70 questions with sectional cutoff.
Tips: average questions keep watch on timer

Round: HR Interview
Experience: he was so friendly and it went on cool.
Tips: easy round.

Skills: Personality
College Name: Mnm Jain Engineering College

I was interviewed before Aug 2016.

Interview Questionnaire 

3 Questions

  • Q1. Questions from the resume submitted
  • Q2. Write a java program to find the palindrome
  • Q3. HR questions were at the end

Interview Preparation Tips

Round: Test
Experience: Need to solve the general aptitude question, general verbal questions like paragraphs and sentence completion.
Duration: 3 hours
Total Questions: 80

Skills: Programming, Coming Up With Efficient Solutions, Manage A Difficult Situation

Skills evaluated in this interview

I was interviewed before Nov 2016.

Interview Questionnaire 

2 Questions

  • Q1. Project related questions and questions from your stream that you had in Btech.
  • Q2. Basic questions about yourself and your aspirations in life.

Interview Preparation Tips

Round: Test
Experience: English, Quant, Reasoning basic MCQ
Tips: English strong and time management
Duration: 1 hour
Total Questions: 100

Round: Technical Interview
Experience: I was from electronics and comm background so was asked about Signals Analog and Digital, Also was asked about my project that i did in my final year and some of the DBMS and C programming questions asked.
Tips: Must know basic about your own stream first of all , what ever you did in 4 years of your engineering must have a idea about it.

Round: HR Interview
Experience: Tell me something about yourself, where do you see yourself after 5 years,
Your likes dislikes .
Tips: Basically they what to check how confident are you in answering the questions and how frequently do you talk to strangers and how do you talk what is your attitude and behavior , so be the best that you can and be what you are.

Hewlett Packard Enterprise Interview FAQs

How to prepare for Hewlett Packard Enterprise Full Stack 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 Hewlett Packard Enterprise. The most common topics and skills that interviewers at Hewlett Packard Enterprise expect are Javascript, HTML, Python, Oracle and Coding.

Tell us how to improve this page.

Hewlett Packard Enterprise Full Stack Developer Salary
based on 21 salaries
₹7.5 L/yr - ₹28.1 L/yr
90% more than the average Full Stack Developer Salary in India
View more details

Hewlett Packard Enterprise Full Stack Developer Reviews and Ratings

based on 3 reviews

4.6/5

Rating in categories

3.8

Skill development

5.0

Work-life balance

3.5

Salary

4.2

Job security

3.8

Company culture

3.8

Promotions

3.3

Work satisfaction

Explore 3 Reviews and Ratings
Technical Support Engineer
881 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Process Associate
637 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Solutions Consultant
587 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
559 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Financial Analyst
431 salaries
unlock blur

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