Upload Button Icon Add office photos

Filter interviews by

Hewlett Packard Globalsoft Software Engineer Interview Questions and Answers

Updated 14 May 2024

Interview questions from similar companies

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. 1) OOPS in java, and told to explain abstraction, encapsulation, inheritance with practical code 2) Exception handling(globally), Authentication and authorization 3) SOLID principles and factory design pat...
  • Ans. 

    Interview questions for Software Engineer position covering OOPS concepts, exception handling, SOLID principles, Java 8 features, and Streams.

    • Abstraction in OOPS: Hiding implementation details. Example: Abstract class Shape with method draw().

    • Encapsulation in OOPS: Bundling data and methods that operate on the data. Example: Class Employee with private fields and public getters/setters.

    • Inheritance in OOPS: Reusing code...

  • Answered by AI
  • Q2. 1) Advantage of springboot over spring 2) Tell me all the anotations you know in spring 3) What are CRUD operations, write controller layer and use validating annotations like @NotNull, @valid etc. how to ...
  • Ans. 

    The interview questions cover various topics related to Spring framework, REST vs SOAP, JPA repository, Feign client, circuit breaker, and Spring Security.

    • Spring Boot provides a simpler and faster way to set up and run Spring applications compared to traditional Spring.

    • Common annotations in Spring include @Controller, @Service, @Repository, @Autowired, @Component, @RequestMapping, @GetMapping, @PostMapping, @PutMapping...

  • Answered by AI
  • Q3. 1) ACID properties 2) DBMS commands 3) inner queries 4) Joins 5) S3 bucket congif and how to handle file and upload and retrieve in s3 6) Ci/Cd basic flow and docker explaination

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare resume well and keep applying to jobs

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. Questions about OOPS includes inheritence, interface, abstract classes, access specifiers
  • Q2. Coding question: given a vector, return a vector where each entry in the resultant vector is the product of the remaining elements in the given vector.
  • Q3. Coding question: given a vector numbers, return the index of the vector which has the longest length palindrome
  • Ans. 

    Return the index of the vector with the longest length palindrome

    • Iterate through each string in the vector

    • Check if the string is a palindrome

    • Track the index of the longest palindrome string

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Oracle Software Engineer interview:
  • oops
  • C++
  • Java
  • Python
  • DSA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Standard process in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. Standard interview with live coding
  • Q2. Find the second largest element in an array
Round 3 - HR 

(1 Question)

  • Q1. Describe yourself in 3 words
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I was interviewed in Nov 2024.

Round 1 - Coding Test 

It was codility test with 2 questions

Round 2 - One-on-one 

(1 Question)

  • Q1. One codility question
Round 3 - One-on-one 

(1 Question)

  • Q1. Design system like uber eats
Round 4 - One-on-one 

(1 Question)

  • Q1. Design system like youtube
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic question on probablity and reasoing and some more presence of mind relates question

Round 2 - Coding Test 

Program on find duplicate on array and rever the string

Round 3 - Technical 

(2 Questions)

  • Q1. Difference between linked list and array list
  • Ans. 

    Linked list is a data structure where elements are stored in nodes with pointers to the next node, while array list is a dynamic array that can grow or shrink in size.

    • Linked list allows for efficient insertion and deletion of elements at any position, while array list has slower insertion and deletion times due to shifting elements.

    • Linked list uses more memory than array list because of the additional pointers, while a...

  • Answered by AI
  • Q2. What is hashmap and when it is used
  • Ans. 

    HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap is used when fast retrieval of values based on keys is required.

    • It is commonly used in scenarios where a large amount of data needs to be stored and accessed efficiently.

    • Example: Storing user information where the key is the user ID and the value is the user details.

  • 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 Amity University and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There will be aptitude questions related to surface area, time and distance, as well as profit and loss.

Round 2 - Coding Test 

There will be questions related to arrays, linked lists, stacks, queues, and binary search.

Interview Preparation Tips

Topics to prepare for Deloitte Software Engineer interview:
  • Data Structures
Interview preparation tips for other job seekers - Learn data structures thoroughly.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance allows a child class to override a method from its parent class, exhibiting polymorphic b

  • Answered by AI
  • Q2. How abstraction is implemented?
  • Ans. 

    Abstraction is implemented in software engineering by hiding unnecessary details and exposing only relevant information.

    • Abstraction is achieved through the use of abstract classes and interfaces in object-oriented programming.

    • It allows developers to focus on the essential aspects of a concept without getting bogged down in implementation details.

    • For example, in a car simulation program, the Car class may have abstract ...

  • Answered by AI
  • Q3. What is the difference between abstraction and Interface?
  • Ans. 

    Abstraction is hiding the implementation details while Interface is a contract that defines the methods that a class must implement.

    • Abstraction focuses on hiding the internal implementation details of a class, allowing the user to only see the necessary details.

    • Interface defines a contract that specifies the methods a class must implement, without providing the implementation details.

    • Abstraction can be achieved through...

  • Answered by AI
Round 2 - Behavioral interview 

(1 Question)

  • Q1. What is your motivation when you are working on same project alone for long period?
  • Ans. 

    My motivation when working on a project alone for a long period is the satisfaction of seeing my hard work come to fruition.

    • Setting small achievable goals to keep myself motivated

    • Taking breaks to avoid burnout and maintain productivity

    • Seeking feedback from others to stay motivated and improve my work

    • Reminding myself of the end goal and the impact my project will have

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is your salary expectation?
  • Ans. 

    My salary expectation is based on my experience, skills, and the market rate for Software Engineers in this region.

    • Research the average salary range for Software Engineers in the specific region or industry

    • Consider your level of experience, skills, and qualifications when determining your salary expectation

    • Be prepared to negotiate based on the company's offer and benefits package

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and give interview as many as possible

Software Engineer Interview Questions & Answers

HSBC Group user image sri sai subramanyam davanam

posted on 1 Nov 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Not Selected

I applied via campus placement at Nitte Meenakshi Institute of Technology, Bangalore and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions from java
  • Q2. Questions from basic CS Topics,aptitude
Round 2 - Coding Test 

Questions were on basic arrays and strings

Round 3 - HR 

(1 Question)

  • Q1. Personality assessment round

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont neglect personality assesment round which is of 3rd round.take this as serious
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There are 2 coding questions came in round 1 with time duration of 1 hr. Coding question is related with bitwise operator,array,string

Round 2 - Technical 

(5 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a passionate software engineer with 5 years of experience in developing web applications using various technologies.

    • Experienced in full stack web development

    • Proficient in languages such as JavaScript, Python, and Java

    • Familiar with frameworks like React, Node.js, and Django

    • Strong problem-solving and analytical skills

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. Tell me about your Project
  • Ans. 

    Developed a web application for tracking personal fitness goals and progress

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

    • Incorporated chart.js for visualizing progress data

  • Answered by AI
  • Q3. What is Strength
  • Ans. 

    Strength is the ability to overcome challenges and obstacles, both physically and mentally.

    • Physical strength refers to the ability to exert force or lift heavy objects.

    • Mental strength involves resilience, determination, and the ability to stay focused under pressure.

    • Strength can also refer to emotional resilience and the ability to cope with difficult situations.

    • Examples: Weightlifters demonstrate physical strength, wh...

  • Answered by AI
  • Q4. Tell about your weakness?
  • Ans. 

    I tend to be overly critical of my own work, which can sometimes lead to perfectionism.

    • I have a tendency to spend too much time on a task to ensure it is perfect

    • I struggle with delegating tasks to others because I want to make sure they are done correctly

    • I am working on finding a balance between striving for excellence and accepting that perfection is not always attainable

  • Answered by AI
  • Q5. Journey of collage
  • Ans. 

    My journey through college was filled with challenges, growth, and memorable experiences.

    • Started as a freshman with excitement and nervousness

    • Balanced academics, extracurricular activities, and social life

    • Learned to manage time effectively and prioritize tasks

    • Participated in internships and projects to gain practical experience

    • Graduated with valuable skills and knowledge for my career

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare and attentive during interveiw but coding round is simple and it is conducted online without any monitoring.

Hewlett Packard Globalsoft Interview FAQs

How many rounds are there in Hewlett Packard Globalsoft Software Engineer interview?
Hewlett Packard Globalsoft interview process usually has 1 rounds. The most common rounds in the Hewlett Packard Globalsoft interview process are Coding Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 Hewlett Packard Globalsoft interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Hewlett Packard Globalsoft Software Engineer Salary
based on 17 salaries
₹2.1 L/yr - ₹11.1 L/yr
25% less than the average Software Engineer Salary in India
View more details

Hewlett Packard Globalsoft Software Engineer Reviews and Ratings

based on 7 reviews

1.2/5

Rating in categories

1.1

Skill development

2.1

Work-Life balance

1.6

Salary & Benefits

1.2

Job Security

2.1

Company culture

1.1

Promotions/Appraisal

1.2

Work Satisfaction

Explore 7 Reviews and Ratings
Technical Support Engineer
48 salaries
unlock blur

₹2.5 L/yr - ₹6.2 L/yr

Technology Consultant
38 salaries
unlock blur

₹3.4 L/yr - ₹15.8 L/yr

Technical Consultant
27 salaries
unlock blur

₹5 L/yr - ₹14.1 L/yr

Senior Software Engineer
23 salaries
unlock blur

₹7 L/yr - ₹10.2 L/yr

Software Developer
21 salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Explore more salaries
Compare Hewlett Packard Globalsoft with

IBM

4.1
Compare

Accenture

3.9
Compare

TCS

3.7
Compare

Infosys

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