Upload Button Icon Add office photos

Filter interviews by

Infor Global Solution Interview Questions, Process, and Tips

Updated 15 Jan 2025

Top Infor Global Solution Interview Questions and Answers

View all 43 questions

Infor Global Solution Interview Experiences

Popular Designations

68 interviews found

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of oops, .net framework and .net core
  • Q2. Sql query for student department id
  • Ans. 

    SQL query to retrieve student department id.

    • Use SELECT statement to retrieve data

    • Specify the columns to be selected, including the department id column

    • Specify the table where the student data is stored

    • Use WHERE clause to filter the results based on student information

  • Answered by AI
  • Q3. Solid principles and design patterns
Round 2 - Technical 

(2 Questions)

  • Q1. Asked to code palindrome
  • Q2. Code duplicate string from main string and get index of sub string
  • Ans. 

    Code to find index of sub string in main string and duplicate the sub string

    • Use a loop to iterate through the main string and check for the sub string

    • If sub string is found, duplicate it and store the index

    • Return the index of the duplicated sub string

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Manager asked me to code the count index of substring and sum of substring
  • Q2. Questions as HR informed, it was worst and all interviews were scheduled at night time.he was more technical than the second round team lead instead of asking manager round

Interview Preparation Tips

Interview preparation tips for other job seekers - worst manager round and salary is also provided less compared to market rate.

Skills evaluated in this interview

Associate Software Developer Interview Questions asked at other Companies

Q1. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula - F(n) = F(n-1) + F(n-2), Where, F(1) = F(2) = 1 Provided N you have to find out the Nth Fibonacci Number. Input Fo... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Strengths and Weaknesses
Round 2 - Technical 

(2 Questions)

  • Q1. What is your knowledge about OOP
  • Ans. 

    OOP stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOP focuses on creating objects that contain data and methods to manipulate that data.

    • Encapsulation, inheritance, and polymorphism are key principles of OOP.

    • Examples of OOP languages include Java, C++, and Python.

  • Answered by AI
  • Q2. What are your projects in school all about

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be chill and speak as much English as possible

IT Finance Intern Interview Questions asked at other Companies

Q1. What is your knowledge about OOP
View answer (1)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic DSA questions like binary search, pattern
  • Q2. Basic SQL query questions

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the worst company I have given interview,
The HR named Shubha A contacted me a day before interview that are you available for interview, I told yes.

After that interview has been scheduled, with interviewer soumyashree rout , I have given all the answers which she asked for and what did I get an acquisition of cheating in interview, I even showed her my surroundings that I am not cheating, and how come such dumb people are allowed to interview. Really waste of time and effort.

Please don't go for interview for this company you will find better opportunities like I did , offered a position at a product based company better than this.

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. Programs related to arrays like, to check two arrays are equal or not, find duplicates in an array and binary search algorithm implementation
  • Ans. 

    Implement programs to check array equality, find duplicates, and perform binary search algorithm in Java.

    • To check if two arrays are equal, compare each element in both arrays.

    • To find duplicates in an array, use a HashSet to store unique elements and identify duplicates.

    • For binary search algorithm implementation, ensure the array is sorted and recursively divide the array to find the target element.

  • Answered by AI
  • Q2. SQL queries related to joins and other basic SQL queries
  • Q3. Hashing algorithm
  • Ans. 

    Hashing algorithm is a method used to convert data into a fixed-size string of bytes.

    • Hashing algorithms are used to map data of arbitrary size to fixed-size values.

    • They are commonly used in data structures like hash tables for fast data retrieval.

    • Examples of hashing algorithms include MD5, SHA-1, and SHA-256.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It seems like they don't have any intentions to hire just conducting interviews for sake and publicity finally ghosting candidates.
Be careful and thoroughly research the role before attending interviews because they were time passing with candidates

Skills evaluated in this interview

Software Java Engineer Interview Questions asked at other Companies

Q1. How do you manage memory leakage in your application?
View answer (1)

Infor Global Solution interview questions for popular designations

 Associate Software Engineer

 (13)

 Software Engineer

 (5)

 Senior Software Engineer

 (4)

 Associate Consultant

 (3)

 Consultant

 (3)

 Associate Financial Analyst

 (2)

 Associate Software Developer

 (2)

 Business Analyst

 (2)

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
  • Ans. 

    OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPS focuses on the concept of classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for diffe...

  • Answered by AI
  • 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
  • Ans. 

    Count occurrences of each character in a given string

    • Create an array to store the count of each character

    • Iterate through the string and increment the count of each character in the array

    • Return the array with counts for each character

  • Answered by AI
  • Q4. Given an array. Remove the number of duplicates
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and store each element in a set to keep track of unique values

    • Create a new array with the unique values from the set

  • Answered by AI
  • Q5. Given a student object having name and grade data variables. Sort the object on the basis of highest grade.

Skills evaluated in this interview

Top Infor Global Solution Software Engineer Interview Questions and Answers

Q1. Explain OOPS concept and how you apply it in your implementation
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Get interview-ready with Top Infor Global Solution Interview Questions

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
  • Q2. What are collections
  • 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

Top Infor Global Solution Software Engineer Interview Questions and Answers

Q1. Explain OOPS concept and how you apply it in your implementation
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Jobs at Infor Global Solution

View all
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

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

Round 1 - HR 

(2 Questions)

  • Q1. Why did you choose infor
  • Ans. 

    I chose Infor because of its reputation for innovative technology solutions and its commitment to employee development.

    • Infor is known for its cutting-edge technology solutions in the industry.

    • I was impressed by Infor's focus on employee growth and development opportunities.

    • I believe Infor's values align with my own professional goals and aspirations.

  • Answered by AI
  • Q2. Explain how you work under stress
  • Ans. 

    I thrive under pressure by staying organized, prioritizing tasks, and maintaining a positive attitude.

    • I stay organized by creating to-do lists and breaking down tasks into manageable steps.

    • I prioritize tasks based on deadlines and importance to ensure that critical work is completed first.

    • I maintain a positive attitude by taking short breaks to recharge, practicing deep breathing exercises, and seeking support from col

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Everything mentioned on CV
  • Q2. Some coding questions
Round 3 - Technical 

(2 Questions)

  • Q1. Same questions as first interview but deeper approach
  • Q2. Coding is involved again

Associate Scientist Interview Questions asked at other Companies

Q1. How to extract acid product from reaction mixture without doing column?
View answer (1)

Devops Engineer Interview Questions & Answers

user image Phaneendra Gajawada

posted on 14 Oct 2024

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

Coding skills in python

Round 2 - One-on-one 

(2 Questions)

  • Q1. Whre do yo use python
  • Ans. 

    Python is used in various areas such as web development, data analysis, automation, machine learning, and more.

    • Web development (Django, Flask)

    • Data analysis (Pandas, NumPy)

    • Automation (Scripting, DevOps tools)

    • Machine learning (TensorFlow, PyTorch)

  • Answered by AI
  • Q2. What are all important Devops tools
  • Ans. 

    Some important DevOps tools include Jenkins, Docker, Ansible, Kubernetes, and Git.

    • Jenkins

    • Docker

    • Ansible

    • Kubernetes

    • Git

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Are you willing to work in shifts
  • Ans. 

    Yes, I am willing to work in shifts.

    • I am flexible with my working hours and can adapt to different shifts.

    • I understand the importance of round-the-clock support in a DevOps role.

    • I have previous experience working in shifts and have no issues with it.

  • Answered by AI
  • Q2. What are your sal expectation
  • Ans. 

    My salary expectation is based on my experience, skills, and the market rate for DevOps Engineers.

    • I have researched the average salary range for DevOps Engineers in this location.

    • I am looking for a competitive salary that reflects my expertise in the field.

    • I am open to negotiation based on the overall compensation package offered.

  • Answered by AI

Skills evaluated in this interview

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the StringYou are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string. For example: If the given string is: STR = "abcde". You have to print the string "edcba... read more
View answer (3)

Consultant Interview Questions & Answers

user image Madhuroopa Irukulla

posted on 4 Oct 2024

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

(2 Questions)

  • Q1. Explain OOPS concepts
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming concepts which include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation...

  • Answered by AI
  • Q2. Explain Hashmap internals
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap uses an array of buckets to store key-value pairs.

    • Each bucket can store multiple entries, handling collisions with linked lists or balanced trees.

    • Hashing is used to convert keys into indices in the array, allowing for fast retrieval of values.

    • HashMap allows for constant-time operations for basic operations li...

  • Answered by AI

Skills evaluated in this interview

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. What are your salary expectations and previous experience?
  • Ans. 

    My salary expectations are in line with industry standards based on my 5 years of experience in DevOps roles.

    • Salary expectations are based on industry standards and my level of experience

    • I have 5 years of experience in DevOps roles

    • Previous salary range was $80,000 - $100,000 per year

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Debugging a broken Dockerfile
  • Ans. 

    Debugging a broken Dockerfile involves identifying and fixing errors in the Dockerfile code.

    • Check for syntax errors in the Dockerfile code

    • Ensure that all necessary dependencies are properly installed

    • Use the 'docker build' command with the '--debug' flag to get more detailed error messages

    • Check the build logs for any specific error messages or warnings

    • Consider using a Dockerfile linter to identify common issues

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from most common made bugs

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the StringYou are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string. For example: If the given string is: STR = "abcde". You have to print the string "edcba... read more
View answer (3)

Infor Global Solution Interview FAQs

How many rounds are there in Infor Global Solution interview?
Infor Global Solution interview process usually has 2-3 rounds. The most common rounds in the Infor Global Solution interview process are Technical, One-on-one Round and HR.
How to prepare for Infor Global Solution 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, Data Science, ERP, Management and Troubleshooting.
What are the top questions asked in Infor Global Solution interview?

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

  1. Can you Wire a code or algarithum for the case which we had given to ...read more
  2. Explain oops concept where did you use in your progra...read more
  3. Explain OOPS concept and how you apply it in your implementat...read more
How long is the Infor Global Solution interview process?

The duration of Infor Global Solution interview process can vary, but typically it takes about 2-4 weeks to complete.

Tell us how to improve this page.

Infor Global Solution Interview Process

based on 34 interviews in last 1 year

Interview experience

4.1
  
Good
View more

People are getting interviews through

based on 47 Infor Global Solution interviews
Job Portal
Campus Placement
Referral
Company Website
Recruitment Consultant
38%
23%
23%
9%
4%
3% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 883 Interviews
SAP Interview Questions
4.2
 • 302 Interviews
Salesforce Interview Questions
4.1
 • 265 Interviews
View all

Infor Global Solution Reviews and Ratings

based on 498 reviews

4.1/5

Rating in categories

3.6

Skill development

4.2

Work-Life balance

3.5

Salary & Benefits

4.3

Job Security

4.0

Company culture

3.3

Promotions/Appraisal

3.7

Work Satisfaction

Explore 498 Reviews and Ratings
Software Engineer, Associate

Hyderabad / Secunderabad

0-3 Yrs

Not Disclosed

Team Lead, Software Development

Hyderabad / Secunderabad

4-10 Yrs

Not Disclosed

Information Developer

Hyderabad / Secunderabad

3-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
478 salaries
unlock blur

₹4.5 L/yr - ₹18 L/yr

Financial Analyst
303 salaries
unlock blur

₹3.1 L/yr - ₹8.5 L/yr

Senior Software Engineer
292 salaries
unlock blur

₹8.3 L/yr - ₹28 L/yr

Associate Software Engineer
250 salaries
unlock blur

₹4 L/yr - ₹10.2 L/yr

Consultant
211 salaries
unlock blur

₹6.3 L/yr - ₹21.5 L/yr

Explore more salaries
Compare Infor Global Solution with

SAP

4.2
Compare

Oracle

3.7
Compare

Salesforce

4.1
Compare

Microsoft Corporation

4.1
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