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

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Hewlett Packard Enterprise Full Stack Developer Interview Questions and Answers

Updated 23 Mar 2022

Hewlett Packard Enterprise Full Stack Developer Interview Experiences

1 interview found

I appeared for an interview 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

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Hewlett Packard Enterprise?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed in Sep 2021. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell us about Reliability?
  • Ans. 

    Reliability refers to the ability of a system or component to perform its required functions under stated conditions for a specified period of time.

    • Reliability is a measure of how often a system or component fails and how quickly it can be restored to normal operation.

    • It is important to design systems with redundancy and failover mechanisms to ensure high reliability.

    • Reliability can be improved through regular maintena...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have got selected by Interviewer Rajib Das.

Full Stack Developer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Query and Matrix Problem Statement You are given a binary matrix ... read more
asked in MakeMyTrip
Q2. Tower of Hanoi Problem Statement You have three rods numbered fro ... read more
Q3. Maximum Difference Problem Statement Given an array ARR of N elem ... read more
asked in Samsung
Q4. LCA of Binary Tree Problem Statement You are given a binary tree ... read more
Q5. Count Set Bits Problem Statement Given a positive integer N, comp ... read more

I applied via Monster and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell me a little bit about yourself
  • Q2. Which knowledge are you gain your career

Interview Preparation Tips

Interview preparation tips for other job seekers - Speaker clarity an impartial, one-to-one meeting between yourself and a professionally qualified careers adviser.

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

1 CODING ROUND CONSISTING OF 2 CODING QUESTIONS.
1 MCQ ROUND CONTAINING TECHNICAL AND APTITUDE QUESTIONS.

  • Q1. 

    Ninja and Candies Problem

    Ninja, a boy from Ninjaland, receives 1 coin every morning from his mother. He wants to purchase exactly 'N' candies. Each candy usually costs 2 coins, but it is available for 1 ...

  • Ans. 

    Calculate the earliest day on which Ninja can buy all candies with special offers.

    • Iterate through each day and check if any special offer is available for candies Ninja wants to buy

    • Keep track of the minimum day on which Ninja can buy all candies

    • Consider both regular price and sale price of candies

  • Answered by AI
  • Q2. 

    Replace Character Problem Statement

    Given an input string S and two characters 'c1' and 'c2', your task is to replace every occurrence of the character 'c1' with the character 'c2' in the given string.

    I...

  • Ans. 

    Replace every occurrence of a character in a string with another character.

    • Iterate through the input string and replace 'c1' with 'c2' using string manipulation functions.

    • Return the updated string as the output.

  • Answered by AI
Round 2 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

HR round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BengaluruEligibility criteriaABOVE 6.5 CGPAAccenture interview preparation:Topics to prepare for the interview - DBMS, ALGORITHM, DATA SCIENCE, C++, JAVA, PYTHONTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : CLEAR YOUR BASICS.
Tip 2 : PRACTICE BASIC CODING QUESTIONS
Tip 3 : BE CLEAR ON YOUR PROJECTS

Application resume tips for other job seekers

Tip 1 : HAVE INTERNSHIPS
Tip 2 : HAVE PROJECTS(ATLEAST 1)

Final outcome of the interviewSelected

I applied via Recruitment Consultant and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I had job Complete graduated with 80 per

Interview Preparation Tips

Interview preparation tips for other job seekers - I'm a fresher present I'm training for the java developer...

I applied via Naukri.com and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Why want you change your previous company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be sapacific don't give chance to bad word about previous company or offerd entity you don't like ,just be cool with your answers like I haven't seen any carrier growth in my previous work how ever find it in our organization Little bit that's that's why

I applied via LinkedIn and was interviewed in Feb 2022. There were 2 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 

Time keeping

Interview Preparation Tips

Interview preparation tips for other job seekers - iam always keep in puntuvality
Are these interview questions helpful?

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

Interview Questionnaire 

2 Questions

  • Q1. Explain yourself?
  • Q2. I am soujanya i have complted my btech in 2020 passed out.

Interview Preparation Tips

Interview preparation tips for other job seekers - I want to start my carrer with IT company.I need this job to become an a independent girl.

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 100 Minutes
Round difficulty - Medium

  • Q1. 

    Change Start Node Problem Statement

    You are provided with a singly linked list and an integer K. The objective is to make the Kth node from the end of the linked list the starting node of the linked list.

    ...
  • Ans. 

    Given a singly linked list and an integer K, rearrange the list such that the Kth node from the end becomes the starting node.

    • Traverse the linked list to find the length and the Kth node from the end.

    • Update the pointers to rearrange the list accordingly.

    • Handle edge cases like K being equal to 1 or the length of the list.

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    Check if given strings containing parentheses are balanced or not.

    • Use a stack to keep track of opening parentheses

    • Iterate through the string and push opening parentheses onto the stack

    • When a closing parentheses is encountered, pop from the stack and check if it matches the corresponding opening parentheses

    • If stack is empty at the end and all parentheses are matched, the string is balanced

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

  • Q1. 

    Alien Dictionary Problem Statement

    You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of the alien language from this dictiona...

  • Ans. 

    Given a sorted alien dictionary in an array of strings, determine the character order of the alien language.

    • Iterate through the dictionary to build a graph of character dependencies based on adjacent words.

    • Perform a topological sort on the graph to determine the character order.

    • Return the character array representing the order of characters in the alien language.

  • Answered by AI
  • Q2. 

    Chocolate Distribution Problem

    You are given an array/list CHOCOLATES of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M'...

  • Ans. 

    Distribute chocolates among students to minimize the difference between the largest and smallest number of chocolates.

    • Sort the array of chocolates in ascending order.

    • Iterate through the array and find the minimum difference between the elements by considering 'M' elements at a time.

    • Return the minimum difference found as the result.

  • Answered by AI
Round 3 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

  • Q1. 

    Inplace Rotate Matrix 90 Degrees Anti-Clockwise

    You are provided with a square matrix of non-negative integers of size 'N x N'. The task is to rotate this matrix by 90 degrees in an anti-clockwise directi...

  • Ans. 

    Rotate a square matrix by 90 degrees anti-clockwise without using extra space.

    • Iterate through each layer of the matrix from outer to inner layers

    • Swap elements in groups of 4 to rotate them in place

    • Handle odd-sized matrices separately by adjusting the loop boundaries

  • Answered by AI
  • Q2. 

    Flip The Bits Problem Statement

    Given a binary string S of length N where initially all characters are '1', perform exactly M operations, choosing from four specific operations, and determine how many dis...

  • Ans. 

    Count the number of distinct final strings possible after performing a given number of operations on a binary string.

    • Iterate through all possible combinations of operations to determine the final string after each operation.

    • Use bitwise operations to efficiently flip the bits based on the chosen operation.

    • Keep track of distinct final strings using a set data structure.

    • Return the size of the set as the number of distinct...

  • Answered by AI
Round 4 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Medium

  • Q1. 

    Next Greater Element Problem Statement

    Given a list of integers of size N, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X is the firs...

  • Ans. 

    Find the Next Greater Element for each element in a list of integers.

    • Iterate through the list of integers from right to left.

    • Use a stack to keep track of elements for which the Next Greater Element is not yet found.

    • Pop elements from the stack until a greater element is found or the stack is empty.

    • Assign the Next Greater Element as the top element of the stack or -1 if the stack is empty.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology, Manipur. I applied for the job as SDE - 1 in BengaluruEligibility criteriaAbove 7 CGPALarsen & Toubro Infotech (LTI) interview preparation:Topics to prepare for the interview - Data Structures, DBMS, OOPS, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice Medium level question.
Tip 2 : Do atleast 2 projects
Tip 3 : More Focus on your Communication skill

Application resume tips for other job seekers

Tip 1 : Full Command on your resume and make short atleast 1 page with normal color and font.
Tip 2 : Have mentioned some good projects on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduce yourself, on java,sql,oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't talk very fast. Speak with confidence

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 23 salaries
₹6.5 L/yr - ₹21.6 L/yr
60% 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.7/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
860 salaries
unlock blur

₹2.4 L/yr - ₹8.1 L/yr

Process Associate
671 salaries
unlock blur

₹1.8 L/yr - ₹5.5 L/yr

Technical Solutions Consultant
609 salaries
unlock blur

₹6.4 L/yr - ₹23.8 L/yr

Software Engineer
541 salaries
unlock blur

₹9.6 L/yr - ₹17.5 L/yr

Financial Analyst
431 salaries
unlock blur

₹5.2 L/yr - ₹13.6 L/yr

Explore more salaries
Compare Hewlett Packard Enterprise with

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare
write
Share an Interview