Upload Button Icon Add office photos

Infor Global Solution

Compare button icon Compare button icon Compare

Filter interviews by

Infor Global Solution Interview Questions and Answers

Updated 6 Jun 2025
Popular Designations

55 Interview questions

A Financial Analyst was asked 1mo ago
Q. What are the Golden Principles?
Ans. 

Golden Principles are fundamental guidelines for effective financial analysis and decision-making.

  • Understand the financial statements: Analyze balance sheets, income statements, and cash flow statements to assess a company's health.

  • Focus on cash flow: Prioritize cash flow analysis over profits, as cash is essential for operations and growth.

  • Consider the time value of money: Recognize that money today is worth more...

View all Financial Analyst interview questions
A Financial Analyst was asked 1mo ago
Q. Write any journal entry.
Ans. 

A journal entry records financial transactions in accounting, reflecting debits and credits.

  • A journal entry consists of a date, accounts affected, and amounts.

  • Example: On March 1, 2023, a company sells goods for $1,000 cash.

  • Debit 'Cash' account $1,000 and credit 'Sales Revenue' account $1,000.

  • Each entry must balance, meaning total debits equal total credits.

View all Financial Analyst interview questions
An Associate Financial Analyst was asked 3mo ago
Q. What is the difference between accounting and finance?
Ans. 

Accounting focuses on recording financial transactions, while finance involves managing and analyzing those funds for future growth.

  • Accounting is primarily concerned with the accurate recording of financial transactions, such as sales and expenses.

  • Finance deals with the management of assets and liabilities, including investment strategies and capital allocation.

  • For example, accountants prepare financial statements...

View all Associate Financial Analyst interview questions
An IT Finance Intern was asked 5mo ago
Q. What is your knowledge of 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.

View all IT Finance Intern interview questions
A Devops Engineer was asked 6mo ago
Q. How would you debug 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

View all Devops Engineer interview questions
A Desktop Support Engineer was asked 6mo ago
Q. Are you willing to relocate?
Ans. 

Yes, I am open to relocating for the right opportunity to advance my career in desktop support.

  • Relocation can provide exposure to new technologies and practices.

  • I am adaptable and have successfully moved for previous job opportunities.

  • Being in a new location can enhance my professional network.

  • I am willing to consider relocation if it aligns with my career goals.

View all Desktop Support Engineer interview questions
A Desktop Support Engineer was asked 6mo ago
Q. What is your expected salary?
Ans. 

I expect a salary that reflects my skills, experience, and the industry standards for a Desktop Support Engineer.

  • Research industry standards: For example, average salaries for Desktop Support Engineers in my region.

  • Consider my experience: I have X years of experience, which typically commands a higher salary.

  • Evaluate the job responsibilities: If the role requires advanced skills or certifications, I would expect a...

View all Desktop Support Engineer interview questions
Are these interview questions helpful?
An Associate Software Developer was asked 7mo ago
Q. Write an SQL query to retrieve student department IDs.
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

View all Associate Software Developer interview questions
An Associate Software Developer was asked 7mo ago
Q. Write code to find duplicate strings within a main string and return the index of the substring.
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

View all Associate Software Developer interview questions
An Associate Software Developer was asked 7mo ago
Q. Write code to count the index of a substring and calculate the sum of a substring.
Ans. 

This task involves counting the occurrences of a substring and calculating the sum of its numeric values in a given string.

  • Use the `str.count(substring)` method to count occurrences. Example: 'hello'.count('l') returns 2.

  • To find the starting indices of each occurrence, use a loop with `str.find(substring, start)`. Example: for 'abcabc', indices of 'abc' are [0, 3].

  • For summing numeric substrings, extract them using...

View all Associate Software Developer interview questions

Infor Global Solution Interview Experiences

75 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops XML MVC SQL
Round 2 - Technical 

(2 Questions)

  • Q1. Jquery tags syntax uses
  • Ans. 

    Jquery tags syntax uses angle brackets and CSS selectors.

    • Jquery tags are enclosed in angle brackets, like

      or

    • Jquery selectors are used to target specific elements, like $('p') or $('.class')

Answered by AI
  • Q2. Seting values XML data JSON data transfer
  • Ans. 

    Explaining how to convert XML data to JSON format for data transfer.

    • XML (eXtensible Markup Language) is a markup language that defines rules for encoding documents in a format that is both human-readable and machine-readable.

    • JSON (JavaScript Object Notation) is a lightweight data interchange format that is easy for humans to read and write and easy for machines to parse and generate.

    • To convert XML to JSON, you can use ...

  • Answered by AI

    Skills evaluated in this interview

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

      This task involves counting the occurrences of a substring and calculating the sum of its numeric values in a given string.

      • Use the `str.count(substring)` method to count occurrences. Example: 'hello'.count('l') returns 2.

      • To find the starting indices of each occurrence, use a loop with `str.find(substring, start)`. Example: for 'abcabc', indices of 'abc' are [0, 3].

      • For summing numeric substrings, extract them using rege...

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

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

      My projects in school involve analyzing financial data and creating financial models.

      • Utilizing Excel and financial software to analyze data

      • Creating financial models to forecast future performance

      • Presenting findings and recommendations to classmates and professors

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Just be chill and speak as much English as possible
    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.
    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

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

    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

    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
    • Q2. Explain Hashmap internals

    Skills evaluated in this interview

    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

    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.

    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, Python 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
    What are the most common questions asked in Infor Global Solution HR round?

    The most common HR questions asked in Infor Global Solution interview are -

    1. What are your strengths and weakness...read more
    2. Why are you looking for a chan...read more
    3. Tell me about yourse...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.

    Overall Interview Experience Rating

    4/5

    based on 65 interview experiences

    Difficulty level

    Easy 3%
    Moderate 89%
    Hard 9%

    Duration

    Less than 2 weeks 31%
    2-4 weeks 34%
    4-6 weeks 11%
    6-8 weeks 17%
    More than 8 weeks 6%
    View more

    Interview Questions from Similar Companies

    Oracle Interview Questions
    3.7
     • 894 Interviews
    Amdocs Interview Questions
    3.7
     • 532 Interviews
    Adobe Interview Questions
    3.9
     • 247 Interviews
    Salesforce Interview Questions
    4.0
     • 234 Interviews
    Chetu Interview Questions
    3.3
     • 198 Interviews
    24/7 Customer Interview Questions
    3.5
     • 179 Interviews
    Dassault Systemes Interview Questions
    3.9
     • 177 Interviews
    AVASOFT Interview Questions
    2.8
     • 174 Interviews
    Freshworks Interview Questions
    3.5
     • 171 Interviews
    View all

    Infor Global Solution Reviews and Ratings

    based on 601 reviews

    4.0/5

    Rating in categories

    3.5

    Skill development

    4.2

    Work-life balance

    3.5

    Salary

    4.2

    Job security

    4.0

    Company culture

    3.2

    Promotions

    3.7

    Work satisfaction

    Explore 601 Reviews and Ratings
    Data Migration Consultant

    Hyderabad / Secunderabad

    4-5 Yrs

    Not Disclosed

    Integrations Engineer, Senior

    Hyderabad / Secunderabad

    6-8 Yrs

    Not Disclosed

    Dev Business Analyst, Associate

    Hyderabad / Secunderabad

    0-1 Yrs

    Not Disclosed

    Explore more jobs
    Software Engineer
    566 salaries
    unlock blur

    ₹8.2 L/yr - ₹15 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