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.7k Reviews

Filter interviews by

Hewlett Packard Enterprise Software Engineer Level 1 Interview Questions and Answers

Updated 25 Jul 2024

Hewlett Packard Enterprise Software Engineer Level 1 Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Reverse a linked List
  • Ans. 

    Reverse a linked list by changing the pointers direction

    • Start with three pointers: current, previous, and next

    • Iterate through the linked list, updating the pointers to reverse the direction

    • Return the new head of the reversed linked list

  • Answered by AI
  • Q2. Question on queue

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. OOPs concepts and c# questions
  • Q2. Sql and database functions and stored proc
  • Q3. Some project related questions also

Interview Preparation Tips

Interview preparation tips for other job seekers - Try giving interviews till you succeed everytime you give interview make sure you pick up the questions from interview and study on them.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test held on Hipro platform which had 3 coding questions including mcqs

Round 2 - One-on-one 

(1 Question)

  • Q1. Interviewer was very friendly first he started with his introduction and experience and tech later he asked to introduce yourself and he started with basic data structures and algorithms later he asked me ...

Interview Preparation Tips

Topics to prepare for CGI Group Software Engineer Level 1 interview:
  • Data Structures
  • DBMS
  • Operating Systems
  • Computer Networking
Interview experience
4
Good
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 - Aptitude Test 

90 questions in 90 mins on maths, programming, and debugging

Round 3 - Coding Test 

2 basic coding questions on strings and array, you can use any language

Round 4 - One-on-one 

(2 Questions)

  • Q1. My Strenghts and how I use them
  • Q2. What is my expected CTC
  • Ans. 

    Expected CTC for Software Engineer Level 1 depends on company, location, experience, and negotiation skills.

    • Expected CTC can vary based on company policies and budget.

    • Location plays a significant role in determining CTC due to cost of living differences.

    • Experience level can impact the salary offered, with more experienced candidates typically receiving higher CTC.

    • Negotiation skills can also influence the final CTC offe...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Osmania University and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple questions, easy to clear

Round 2 - One-on-one 

(2 Questions)

  • Q1. Related to domain
  • Q2. Simple questions related to projects
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Lovely Professional University (LPU) and was interviewed before Mar 2022. There were 4 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 

20-30 aptitude questions like direction, time and speed, calculating intrest

Round 3 - Coding Test 

It consists 2-3 coding questions there is no language barrier so you can code in any language

Round 4 - HR 

(2 Questions)

  • Q1. Where do you see yourself in next 5 year
  • Q2. What projects you have work on till now

Interview Preparation Tips

Topics to prepare for Wipro Software Engineer Level 1 interview:
  • Geeks for Geeks
Interview preparation tips for other job seekers - Prepare hard on coding question. Mostly focus on database ,data structure, and be clear during HR round don't panic . Be relax and answer him
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. What improvements to interfaces were introduced in Java 8 that were missing in Java 7, specifically regarding static and default methods?
  • Q2. Explain internal working of HashMap ? How to synchronize it ?
  • Q3. Given a list of employees with their ratings, how can you sort the employees based on their ratings using the Java 8 Streaming API?
  • Q4. Will the program compile if the parent class throws a runtime exception while the child class throws an arithmetic exception?
  • Q5. In a Spring Boot application with two databases, how can you configure JDBC to specify which database to use?
  • Q6. How to use a jetty server in your spring boot application ?
  • Q7. Difference between @RequestParam and @PathVariable ?
  • Q8. How would you handle a scenario where one microservice is awaiting a response from another microservice that is taking an extended time to respond?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the basics about Java 8 , Core Java , Springboot , Microservices and MySql.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency Injection?
  • Ans. 

    Dependency Injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q2. How to handle exception in java
  • Ans. 

    In Java, exceptions can be handled using try-catch blocks to catch and handle specific exceptions.

    • Use try-catch blocks to catch exceptions and handle them gracefully

    • Use multiple catch blocks to handle different types of exceptions

    • Use finally block to execute code regardless of whether an exception is thrown or not

    • Throw custom exceptions using throw keyword

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. In Java8, different between flatmap and map
  • Ans. 

    map transforms each element in a stream, while flatMap transforms each element into multiple elements

    • map applies a function to each element in a stream and returns a new stream of the results

    • flatMap applies a function that returns a stream for each element in the original stream, then flattens the streams into a single stream

    • Example: map - stream.map(x -> x * x), flatMap - stream.flatMap(str -> Arrays.stream(str.split(

  • Answered by AI
  • Q2. How to handle the ConcureentModificationException
  • Ans. 

    ConcurrentModificationException occurs when a collection is modified while iterating over it.

    • Use Iterator to iterate over the collection instead of foreach loop.

    • If modification is necessary, use Iterator's remove() method instead of collection's remove() method.

    • Consider using synchronized collections or ConcurrentHashMap to avoid ConcurrentModificationException.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

Easy Question on String manipulation and Patterns, series programs.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare All fundamental concepts of your desired programming language.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about your self? How your add values to our organisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard

Hewlett Packard Enterprise Interview FAQs

How many rounds are there in Hewlett Packard Enterprise Software Engineer Level 1 interview?
Hewlett Packard Enterprise interview process usually has 1 rounds. The most common rounds in the Hewlett Packard Enterprise interview process are Technical.
What are the top questions asked in Hewlett Packard Enterprise Software Engineer Level 1 interview?

Some of the top questions asked at the Hewlett Packard Enterprise Software Engineer Level 1 interview -

  1. Reverse a linked L...read more
  2. Question on qu...read more

Tell us how to improve this page.

Hewlett Packard Enterprise Software Engineer Level 1 Salary
based on 31 salaries
₹6.8 L/yr - ₹17.5 L/yr
48% more than the average Software Engineer Level 1 Salary in India
View more details

Hewlett Packard Enterprise Software Engineer Level 1 Reviews and Ratings

based on 2 reviews

1.2/5

Rating in categories

1.1

Skill development

1.2

Work-Life balance

1.1

Salary & Benefits

1.2

Job Security

1.2

Company culture

1.1

Promotions/Appraisal

1.2

Work Satisfaction

Explore 2 Reviews and Ratings
Technical Support Engineer
904 salaries
unlock blur

₹1.8 L/yr - ₹8 L/yr

Process Associate
653 salaries
unlock blur

₹1.1 L/yr - ₹5.3 L/yr

Technical Solutions Consultant
597 salaries
unlock blur

₹4.1 L/yr - ₹15.8 L/yr

Software Engineer
556 salaries
unlock blur

₹9.7 L/yr - ₹18.1 L/yr

Senior Process Associate
419 salaries
unlock blur

₹1.7 L/yr - ₹7.1 L/yr

Explore more salaries
Compare Hewlett Packard Enterprise with

Dell

4.1
Compare

IBM

4.1
Compare

Cisco

4.2
Compare

Oracle

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview