Upload Button Icon Add office photos

Filter interviews by

Unisys Software Engineer Interview Questions and Answers

Updated 11 Oct 2023

Unisys Software Engineer Interview Experiences

3 interviews found

Software Engineer Interview Questions & Answers

user image Vaishnavi Baswaraju

posted on 11 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

All multiple choices consisting of code output based questions and logical reasoning

Round 2 - Technical 

(2 Questions)

  • Q1. All about project
  • Q2. Explain in detail about your project
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2022.

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 - Technical 

(3 Questions)

  • Q1. C++ Opps in detailed STL Normal Data structures like linked list tree normal 1 question from linked list detect cycle Opps question overload [] operator Virtual function Templates Pointers
  • Q2. Few questions from operating systems
  • Q3. I didn’t answered the operating system questions properly but they were satisfied from my c++ and Dsa part.
Round 3 - Behavioral 

(1 Question)

  • Q1. Discussion over old projects worked on Your idea’s Agile methodology

Interview Preparation Tips

Interview preparation tips for other job seekers - Can give you better hike then you think if your interview went well
Gave me more than my expectations.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

I applied via Naukri.com 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 

Reasoning

Interview Preparation Tips

Topics to prepare for Unisys Software Engineer interview:
  • C
  • Javascript
Interview preparation tips for other job seekers - Fast Responseinng ,quick searches

Software Engineer Jobs at Unisys

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Dsa questions related to project
  • Q2. Project based q and a
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

5 sections in the aptitude

Round 2 - Coding Test 

Live coding test about sql and python

Round 3 - Technical 

(1 Question)

  • Q1. Advance coding round
Round 4 - HR 

(1 Question)

  • Q1. Proper HR discussions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Basics of Java OOPS
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

How to remove duplicates from an array

Round 2 - Technical 

(2 Questions)

  • Q1. Some basic questions on java
  • Q2. One coding question on Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not use mobile phone for interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. C++ fundamental
  • Q2. Reverse linked list
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write code of palindrome
  • Ans. 

    Code to check if a given string is a palindrome or not.

    • Create a function that takes a string as input

    • Remove all non-alphanumeric characters and convert to lowercase

    • Compare the original string with its reverse to check for palindrome

  • Answered by AI
  • Q2. How to pass data in angular from component to component
  • Ans. 

    Data can be passed in Angular from component to component using input properties, output properties, services, and state management libraries like NgRx.

    • Use @Input decorator to pass data from parent to child component

    • Use @Output decorator to emit events from child to parent component

    • Use services to share data between components

    • Use state management libraries like NgRx for complex data sharing scenarios

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program Binary Search?
  • Ans. 

    Binary search is a divide and conquer algorithm that efficiently finds the target value within a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the middle index and compare the target value with the middle element.

    • If the target value is less than the middle element, search the left subarray. If greater, search the right subarray.

    • Repeat the process until the target value is found or the s

  • Answered by AI
  • Q2. What isCICD flow?
  • Ans. 

    CI/CD flow stands for Continuous Integration/Continuous Deployment flow, which is a software development practice where code changes are automatically built, tested, and deployed.

    • CI/CD flow involves automating the process of integrating code changes into a shared repository, running automated tests, and deploying the changes to production.

    • Continuous Integration (CI) focuses on automating the build and testing of code c...

  • Answered by AI
  • Q3. How to handle Enum feature?
  • Ans. 

    Enums are a feature in programming languages that allow you to define a set of named constants.

    • Enums can be used to improve code readability by giving meaningful names to values

    • Enums can be used in switch statements to handle different cases

    • Enums can have associated values or raw values for more flexibility

  • Answered by AI
  • Q4. Singleton handles the Syncronized ?
  • Ans. 

    Yes, Singleton handles synchronization by ensuring only one instance of a class is created and providing global access to that instance.

    • Singleton pattern restricts the instantiation of a class to one object.

    • It provides a global point of access to the instance.

    • Synchronization can be implemented in the Singleton pattern to ensure thread safety.

    • Example: Singleton pattern is commonly used in database connections to ensure

  • Answered by AI
  • Q5. What are external Libraries are used in project?
  • Ans. 

    External libraries are pre-written code that can be imported and used in a project to provide additional functionality.

    • External libraries help in reducing development time by providing ready-made solutions for common tasks.

    • Examples include React for front-end development, NumPy for scientific computing in Python, and Retrofit for making network calls in Android apps.

  • Answered by AI

Skills evaluated in this interview

Unisys Interview FAQs

How many rounds are there in Unisys Software Engineer interview?
Unisys interview process usually has 2-3 rounds. The most common rounds in the Unisys interview process are Resume Shortlist, Aptitude Test and Technical.
How to prepare for Unisys Software Engineer 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 Unisys. The most common topics and skills that interviewers at Unisys expect are Information Technology, Debugging, HRIS, Financial Management and Design Development.
What are the top questions asked in Unisys Software Engineer interview?

Some of the top questions asked at the Unisys Software Engineer interview -

  1. C++ Opps in detailed STL Normal Data structures like linked list tree normal ...read more
  2. I didn’t answered the operating system questions properly but they were satis...read more
  3. Few questions from operating syst...read more

Tell us how to improve this page.

Unisys Software Engineer Interview Process

based on 2 interviews

1 Interview rounds

  • Resume Shortlist Round
View more
Unisys Software Engineer Salary
based on 315 salaries
₹3.6 L/yr - ₹16 L/yr
9% more than the average Software Engineer Salary in India
View more details

Unisys Software Engineer Reviews and Ratings

based on 36 reviews

3.1/5

Rating in categories

2.7

Skill development

3.8

Work-life balance

2.9

Salary

3.3

Job security

3.0

Company culture

2.3

Promotions

2.8

Work satisfaction

Explore 36 Reviews and Ratings
Senior ML Software Engineer

Bangalore / Bengaluru

4-11 Yrs

Not Disclosed

Explore more jobs
Software Engineer
315 salaries
unlock blur

₹3.6 L/yr - ₹16 L/yr

System Analyst
147 salaries
unlock blur

₹4.6 L/yr - ₹16.2 L/yr

Senior Software Engineer
139 salaries
unlock blur

₹6.7 L/yr - ₹27.2 L/yr

Technical Support Engineer
133 salaries
unlock blur

₹2.7 L/yr - ₹7.5 L/yr

Senior Enterprise Associate
130 salaries
unlock blur

₹4.1 L/yr - ₹11.6 L/yr

Explore more salaries
Compare Unisys with

IBM

4.0
Compare

Accenture

3.9
Compare

HCLTech

3.5
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview