Upload Button Icon Add office photos

Unisys

Compare button icon Compare button icon Compare

Filter interviews by

Unisys Application Developer Interview Questions, Process, and Tips

Updated 15 Jan 2025

Top Unisys Application Developer Interview Questions and Answers

Unisys Application Developer Interview Experiences

3 interviews found

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

(1 Question)

  • Q1. React js, javascript and html css

Application Developer Interview Questions & Answers

user image Hinanshu Kumar

posted on 11 Jun 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. DSA medium questions and oops concept

Application Developer Interview Questions Asked at Other Companies

asked in Oracle
Q1. Minimum Cost to Connect All Points Problem Statement Given an arr ... read more
asked in Fujitsu
Q2. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Oracle
Q3. Puzzle: – Two persons X and Y are sitting side by side with a coi ... read more
asked in Oracle
Q4. Count Subsequences Problem Statement Given an integer array ARR o ... read more
asked in Oracle
Q5. Remove the Kth Node from the End of a Linked List You are given a ... read more

Interview Questionnaire 

10 Questions

  • Q1. Tell something about yourself
  • Ans. 

    I am a highly motivated individual with a passion for learning and problem-solving.

    • I have a degree in computer science and have worked as a software engineer for 3 years.

    • I am proficient in programming languages such as Java, Python, and C++.

    • I enjoy working in a team and collaborating with others to achieve common goals.

    • In my free time, I like to read books on technology and watch documentaries on science and history.

  • Answered by AI
  • Q2. Difference between Stack and Queue with real time example
  • Ans. 

    Stack is LIFO and Queue is FIFO data structure. Stack is like a stack of plates and Queue is like a queue of people.

    • Stack is Last In First Out (LIFO) and Queue is First In First Out (FIFO)

    • Stack is like a stack of plates where the last plate added is the first one to be removed

    • Queue is like a queue of people where the first person to enter is the first one to leave

    • Stack is used in undo-redo functionality in text editors

  • Answered by AI
  • Q3. According to you, which sorting algorithm is best and why?
  • Ans. 

    It depends on the use case. QuickSort is generally the fastest, but MergeSort is more stable and efficient for larger datasets.

    • QuickSort is generally the fastest sorting algorithm, but can be unstable for certain datasets.

    • MergeSort is more stable and efficient for larger datasets, but can be slower than QuickSort for smaller datasets.

    • InsertionSort is efficient for small datasets, but can be slow for larger datasets.

    • Hea...

  • Answered by AI
  • Q4. Difference between semaphore and mutex with real time example
  • Ans. 

    Semaphore and mutex are synchronization mechanisms used in multi-threaded environments.

    • Semaphore allows multiple threads to access a shared resource simultaneously, while mutex allows only one thread at a time.

    • Semaphore is used to control access to a pool of resources, while mutex is used to protect a single resource.

    • Semaphore uses a counter to keep track of the number of available resources, while mutex uses a lock to...

  • Answered by AI
  • Q5. Array problem:- Find the repeating number in an array.
  • Ans. 

    Find the repeating number in an array.

    • Iterate through the array and store each element in a hash table or set.

    • If an element is already present in the hash table, it is a repeating number.

    • Alternatively, sort the array and check for adjacent elements with the same value.

    • Time complexity: O(n) or O(nlogn) depending on the approach used.

  • Answered by AI
  • Q6. About deadlock
  • Q7. Difference between paging and segmentation
  • Ans. 

    Paging and segmentation are memory management techniques used by operating systems.

    • Paging divides memory into fixed-size pages and stores data in these pages.

    • Segmentation divides memory into logical segments and stores data in these segments.

    • Paging is simpler and more efficient, but can lead to external fragmentation.

    • Segmentation is more flexible, but can lead to internal fragmentation.

    • Both techniques are used to manag

  • Answered by AI
  • Q8. Basic oops concepts
  • Q9. About dining philospher problem
  • Q10. Explain your best project which you did in college
  • Ans. 

    Developed a smart irrigation system using IoT

    • Used Arduino and Raspberry Pi to collect data on soil moisture, temperature, and humidity

    • Developed a web application to display real-time data and control the irrigation system remotely

    • Implemented machine learning algorithms to predict optimal watering times based on weather forecasts

    • Reduced water usage by 30% and increased crop yield by 20%

    • Presented the project at a nationa

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Initially, there was an online test which consisted of both general  and technical section . If  one  know's the basics this can get clear easily.

Round: Test
Experience: In this round they played an audio ,which comprised of listening the audio carefully and had to answer the certain question. secondly skill writing involved writing on either one i.e precise or essay writing.
screening test involved solving of technical puzzle.

Round: Technical Interview
Experience: In the end of the interview, HR was satisfied and asked me to come again next day for another interview. Although questions were simple like what is Fabonacci and little about project , but i guess my explanations were not uptu the mark.

Skills:
College Name: Anna University Chennai

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself?
  • Ans. 

    I am a software developer with experience in Java and Python.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on various projects involving web development and data analysis.

    • I am proficient in Java and Python programming languages.

    • I am a quick learner and enjoy working in a team environment.

  • Answered by AI
  • Q2. Do you know anything about DBMS? Where is it used?
  • Ans. 

    DBMS stands for Database Management System. It is used to manage and organize data in a structured manner.

    • DBMS is used in various industries such as healthcare, finance, education, and more.

    • It helps in creating, modifying, and deleting data in a database.

    • DBMS provides security features to protect data from unauthorized access.

    • Examples of DBMS include MySQL, Oracle, Microsoft SQL Server, and PostgreSQL.

  • Answered by AI
  • Q3. Practical example of object
  • Ans. 

    An object is a self-contained entity that contains data and behavior.

    • Objects are instances of classes

    • They have attributes (data) and methods (behavior)

    • Objects can interact with each other through method calls

    • Example: A car object has attributes like color, make, and model, and methods like start and stop

  • Answered by AI
  • Q4. Practical implementation of sorting
  • Ans. 

    Sorting is the process of arranging data in a particular order.

    • Sorting can be done in ascending or descending order.

    • Common sorting algorithms include bubble sort, insertion sort, and quicksort.

    • Sorting can be done on various data types, including strings, numbers, and objects.

    • Sorting can be done using built-in functions in programming languages such as sort() in JavaScript.

    • Sorting can be optimized for performance by cho...

  • Answered by AI
  • Q5. Difference between C and C++
  • Ans. 

    C is a procedural programming language while C++ is an object-oriented programming language.

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance than C.

    • C++ has a larger standard library than C.

    • C++ allows function overloading while C does not.

    • C++ supports exception handling while C does not.

  • Answered by AI
  • Q6. Tell me about yourself
  • Ans. 

    I am a software developer with experience in Java and Python. I am passionate about coding and always eager to learn new technologies.

    • Experienced in Java and Python

    • Passionate about coding

    • Eager to learn new technologies

  • Answered by AI
  • Q7. Will your family allow you to move to Hyderabad
  • Ans. 

    Yes, my family is supportive of my career and relocation decisions.

    • My family understands the importance of career growth and is supportive of my decisions.

    • We have discussed the possibility of relocation and they are willing to make the necessary adjustments.

    • They trust my judgment and believe that this move will be beneficial for my career.

    • We have also considered the quality of life in Hyderabad and believe that it will...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Level was pretty high in case of Quant. You not only need a lot of practice but also practice of some really good questions.
Other than quant all the other sections are easy and direct.
Duration: 60 minutes
Total Questions: 45

Round: Group Discussion
Experience: They give 10 mins to think about the topic and 20 mins for discussion. Main purpose is to check your communication skills so keep on discussing . Even if you can't think of any new point repeat your points
Duration: 20 minutes

Round: Technical Interview
Experience: There were many other questions other than this but what they were emphasizing was whether you have done any practical implementation of IT or the coding skills. Tell them about your projects and how you implemented the coding part.They are much interested in logic than syntax.
Since I'm from ECE these were the main things I talked about.

Round: HR Interview
Experience: It was much of an interactive session.They again asked about projects-nothing technical only some basic idea. Lasted hardly 10 mins.

Round: Other Interview
Experience: In this round they mainly explained the salary structure. This one too was of 10 mins.

General Tips: Even if you don't have excellent coding knowledge do appear for the company. They are not looking for same qualities in each candidate. You should be willing enough to learn.
Skills: Aptitude, Communication Skills, Basic Technical Knowledge-mainly emphasized on the implementation part.
College Name: NIT Bhopal
Motivation: The company dates back to 1983 with locations in almost every US state. It is the 43rd company in Fortune 100 US companies. You have options to switch within the departments. Other than this the compensation is 6lpa.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Exam was conducted on programmes. 10 questions were asked

Interview Questionnaire 

1 Question

  • Q1. Interview questions on .net technology

Interview Questionnaire 

1 Question

  • Q1. Basic plsql concepts trigger inDexes for cursor loop

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for concepts well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2022. There were 4 interview rounds.

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 

(4 Questions)

  • Q1. Write SELECT query as per requirement
  • Ans. 

    Write SELECT query as per requirement

    • Understand the requirement and identify the tables to be queried

    • Select the columns to be retrieved

    • Apply filters and sorting as per requirement

    • Use joins if necessary

    • Test the query for accuracy

  • Answered by AI
  • Q2. Pseudo code for the ALV
  • Ans. 

    ALV is a tool used to display data in tabular form in SAP systems.

    • ALV stands for ABAP List Viewer

    • It is used to display data in a tabular format

    • It provides various features like sorting, filtering, grouping, etc.

    • ALV can be used in both interactive and batch processing modes

  • Answered by AI
  • Q3. Difference between Domain and Data element
  • Ans. 

    Domain refers to a specific area of knowledge or expertise, while data element is a single piece of information within a domain.

    • Domain is a broader concept that encompasses multiple data elements.

    • Data element is a specific piece of information within a domain.

    • For example, in the domain of medicine, 'patient name' and 'blood pressure' are data elements.

    • While the domain itself is 'medicine' which includes various data el...

  • Answered by AI
  • Q4. What is the use of TMG
  • Ans. 

    TMG stands for Threat Management Gateway. It is a network security tool used for web protection, firewall, and VPN.

    • TMG provides protection against malware, viruses, and other online threats.

    • It can be used as a firewall to control network traffic and prevent unauthorized access.

    • TMG also offers VPN connectivity for remote access to the network.

    • It is commonly used in enterprise environments for secure web access and netwo

  • Answered by AI
Round 3 - Behavioral 

(3 Questions)

  • Q1. Projects I have worked on
  • Q2. What is your job role
  • Q3. What all parts of software development you were part of
  • Ans. 

    I have been part of various stages of software development including requirements gathering, design, development, testing, and deployment.

    • Participated in requirement gathering sessions with clients to understand their needs

    • Contributed to the design phase by creating technical specifications and architecture diagrams

    • Developed software using various programming languages and frameworks

    • Performed unit testing and integrati...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Previous salary
  • Q2. What is expectation
  • Ans. 

    Expectation is a belief or hope about something that is likely to happen in the future.

    • Expectation is a mental state that involves anticipating a certain outcome or result.

    • It can be based on past experiences, assumptions, or predictions.

    • Expectations can be realistic or unrealistic, and can lead to disappointment or satisfaction depending on the outcome.

    • For example, a student may have the expectation of getting an A on ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand why you are writing any particular line of code

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Level of question good

Round 2 - Coding Test 

Level of coding questions from moderate to hard

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

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

A series of question on online platform

Round 2 - Technical 

(2 Questions)

  • Q1. What is schema in database
  • Ans. 

    Schema in a database is a collection of tables, views, procedures, and other database objects.

    • Schema defines the structure of the database, including tables, columns, relationships, and constraints.

    • It helps in organizing and managing data in a database.

    • Schema can also define access permissions for different users or roles.

    • Example: In a library database, the schema may include tables for books, authors, borrowers, and t

  • Answered by AI
  • Q2. Indexing

Unisys Interview FAQs

How many rounds are there in Unisys Application Developer interview?
Unisys interview process usually has 1 rounds. The most common rounds in the Unisys interview process are Technical and One-on-one Round.
How to prepare for Unisys Application 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 Unisys. The most common topics and skills that interviewers at Unisys expect are Application Development, Coding, Configuration management, Information Technology and SCM.
What are the top questions asked in Unisys Application Developer interview?

Some of the top questions asked at the Unisys Application Developer interview -

  1. According to you, which sorting algorithm is best and w...read more
  2. Difference between Stack and Queue with real time exam...read more
  3. Array problem:- Find the repeating number in an arr...read more

Tell us how to improve this page.

Unisys Application Developer Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

Synechron Interview Questions
3.5
 • 363 Interviews
Movate Interview Questions
3.3
 • 258 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
SS&C TECHNOLOGIES Interview Questions
3.3
 • 170 Interviews
ThoughtWorks Interview Questions
3.9
 • 147 Interviews
Sopra Steria Interview Questions
3.8
 • 127 Interviews
Luxoft Interview Questions
3.7
 • 123 Interviews
TEKsystems Interview Questions
3.3
 • 117 Interviews
View all
Unisys Application Developer Salary
based on 65 salaries
₹4.9 L/yr - ₹16.1 L/yr
At par with the average Application Developer Salary in India
View more details

Unisys Application Developer Reviews and Ratings

based on 10 reviews

3.4/5

Rating in categories

3.3

Skill development

3.4

Work-life balance

3.3

Salary

3.0

Job security

3.1

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 10 Reviews and Ratings
Software Engineer
314 salaries
unlock blur

₹3.8 L/yr - ₹16 L/yr

Technical Support Engineer
148 salaries
unlock blur

₹2.8 L/yr - ₹7.5 L/yr

Senior Software Engineer
146 salaries
unlock blur

₹7.2 L/yr - ₹29.3 L/yr

System Analyst
143 salaries
unlock blur

₹4.6 L/yr - ₹16.4 L/yr

Senior Enterprise Associate
133 salaries
unlock blur

₹4.1 L/yr - ₹13 L/yr

Explore more salaries
Compare Unisys with

Synechron

3.5
Compare

Movate

3.3
Compare

Sopra Steria

3.8
Compare

SS&C TECHNOLOGIES

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