Upload Button Icon Add office photos

Infor Global Solution

Compare button icon Compare button icon Compare

Filter interviews by

Infor Global Solution Software Engineer Interview Questions and Answers

Updated 3 Apr 2025

Infor Global Solution Software Engineer Interview Experiences

6 interviews found

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Explain OOPS concept and how you apply it in your implementation
  • Q2. Difference between Comparable and Comparator. Difference between Abstract Class and Interface
  • Ans. 

    Comparable is an interface used for natural ordering, Comparator is an interface used for custom ordering. Abstract class can have method implementations, Interface cannot.

    • Comparable interface is used to define the natural ordering of objects. Example: String class implements Comparable interface for natural ordering based on alphabetical order.

    • Comparator interface is used to define custom ordering of objects. Example:...

  • Answered by AI
  • Q3. Given a string. Find the number of occurrences of each character
  • Q4. Given an array. Remove the number of duplicates
  • Q5. Given a student object having name and grade data variables. Sort the object on the basis of highest grade.
  • Ans. 

    Sort student objects by grade in descending order to prioritize highest grades.

    • Define a Student class with properties: name and grade.

    • Create an array of Student objects.

    • Use a sorting function (e.g., JavaScript's sort method) to sort by grade.

    • Example: students.sort((a, b) => b.grade - a.grade);

    • Output the sorted array to see students from highest to lowest grade.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Internal working of hashmap
  • Ans. 

    A hashmap uses key-value pairs for efficient data retrieval, leveraging hashing for quick access and storage.

    • Hashing: Converts keys into hash codes, which determine the index in an array.

    • Collision Handling: Techniques like chaining (linked lists) or open addressing resolve hash collisions.

    • Load Factor: A measure of how full the hashmap is, affecting performance; typically triggers resizing when exceeded.

    • Resizing: When t...

  • Answered by AI
  • Q2. What are collections
  • Ans. 

    Collections are data structures that store groups of related objects or values, facilitating data management and manipulation.

    • Types of collections include Lists, Sets, Maps, and Queues.

    • Lists (e.g., ArrayList in Java) allow duplicate elements and maintain order.

    • Sets (e.g., HashSet in Java) store unique elements and do not maintain order.

    • Maps (e.g., HashMap in Java) store key-value pairs for efficient data retrieval.

    • Queu...

  • Answered by AI
  • Q3. What are design Patterns explain singleton design pattern
  • Q4. What annotations did you use in spring boot. how @transaction annotation works
Round 2 - Behavioral 

(2 Questions)

  • Q1. Asked 2 puzzles
  • Q2. What is vertical scaling and horizontal scaling
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Container with most water
  • Ans. 

    The container with most water problem involves finding the maximum area that can be formed between two vertical lines by selecting two points on a line.

    • Start with two pointers at the beginning and end of the array.

    • Calculate the area between the two pointers using the formula min(height[left], height[right]) * (right - left).

    • Move the pointer with the smaller height towards the center to potentially increase the area.

    • Rep...

  • Answered by AI
  • Q2. Maximum subarray with 0 sum

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image ekta bhatnagar

posted on 4 Feb 2024

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

I appeared for an interview in Aug 2023.

Round 1 - Technical 

(3 Questions)

  • Q1. Oops concepts,class object
  • Q2. Coding,oops, projects,git hub
  • Q3. Git hub,oops,c sharp
Round 2 - Technical 

(1 Question)

  • Q1. Oops ,c sharp,mysql
Round 3 - Coding Test 

JQuery, html, CSS,oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and coding practice is important

Software Engineer Interview Questions & Answers

user image Mallareddy Uday Kumar

posted on 3 Apr 2025

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

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Java based core java
  • Q2. Spring boot questions
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2022. There were 2 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Technical related to your skill
  • Q2. 2 rounds of technical 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 Infor Global Solution?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared
Are these interview questions helpful?

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Ans. 

    Creating test cases for random scenarios ensures software reliability and robustness through diverse input validation.

    • Identify edge cases: Test with minimum and maximum input values, e.g., an empty array vs. a large array.

    • Use random data: Generate random inputs to simulate real-world usage, e.g., random user names or passwords.

    • Test invalid inputs: Ensure the system handles unexpected inputs gracefully, e.g., negative n...

  • Answered by AI
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a standard resume for this company as per the norms of our institute’s placement cell. For Oracle I laid emphasis on my programming skills and projects related to it.

Round: Test
Experience: The first round was the written test that comprised of 5 sections – vocabulary, aptitude, pattern matching, logical reasoning and programming. The questions in the programming section were asked from data structures and C++. The questions in the programming section were mainly from trees (from data structures). Around 400 students appeared for their written test out of which around 100 were shortlisted.

Round: HR Interview
Experience: The next round was the interview round. They gave me some puzzles to solve and a program to write. One of the puzzles that I remember was that if I were to be given an egg then how would I determine its durability, i.e. how would I determine that from which floor do I need to throw the egg from so that the egg does not break if thrown from any floor below it.
For the coding question I was given a mathematical formula and I was asked to devise a code such that the program uses the formula and gives the output.
Tips: Prepare for Data Structures as well as the commonly asked puzzles for Oracle.

College Name: IIT ROORKEE
Motivation: Oracle is a reputed company in the space of software and ITeS. It had come to our campus with five profiles. The best means to know about all of them is to attend the pre-placement talk of the company.

Infor Global Solution Interview FAQs

How many rounds are there in Infor Global Solution Software Engineer interview?
Infor Global Solution interview process usually has 2 rounds. The most common rounds in the Infor Global Solution interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Infor Global Solution 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 Infor Global Solution. The most common topics and skills that interviewers at Infor Global Solution expect are SQL, Javascript, Data Science, Coding and Computer Science.
What are the top questions asked in Infor Global Solution Software Engineer interview?

Some of the top questions asked at the Infor Global Solution Software Engineer interview -

  1. Explain OOPS concept and how you apply it in your implementat...read more
  2. Given a student object having name and grade data variables. Sort the object on...read more
  3. Difference between Comparable and Comparator. Difference between Abstract Class...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 8 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Infor Global Solution Software Engineer Salary
based on 565 salaries
₹8.3 L/yr - ₹15.5 L/yr
24% more than the average Software Engineer Salary in India
View more details

Infor Global Solution Software Engineer Reviews and Ratings

based on 69 reviews

4.1/5

Rating in categories

3.5

Skill development

4.3

Work-life balance

3.5

Salary

4.2

Job security

4.0

Company culture

3.2

Promotions

3.7

Work satisfaction

Explore 69 Reviews and Ratings
Software Engineer, Associate

Hyderabad / Secunderabad

0-3 Yrs

Not Disclosed

Software Engineer (React JS)

Hyderabad / Secunderabad

4-5 Yrs

₹ 7.5-18.5 LPA

Software Engineer, Senior

Hyderabad / Secunderabad

6-11 Yrs

Not Disclosed

Explore more jobs
Software Engineer
565 salaries
unlock blur

₹8.3 L/yr - ₹15.5 L/yr

Financial Analyst
303 salaries
unlock blur

₹3.6 L/yr - ₹8 L/yr

Senior Software Engineer
301 salaries
unlock blur

₹15.6 L/yr - ₹26.1 L/yr

Associate Software Engineer
297 salaries
unlock blur

₹4.9 L/yr - ₹10 L/yr

Quality Assurance Analyst
242 salaries
unlock blur

₹5.1 L/yr - ₹11.5 L/yr

Explore more salaries
Compare Infor Global Solution with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

3.5
Compare
write
Share an Interview