Upload Button Icon Add office photos

ACI Worldwide

Compare button icon Compare button icon Compare

Filter interviews by

ACI Worldwide Technical Consultant Interview Questions and Answers

Updated 31 Jan 2024

ACI Worldwide Technical Consultant Interview Experiences

1 interview found

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

Interview Questionnaire 

2 Questions

  • Q1. SQL, Unix , Oracle
  • Q2. SQL, Oracle, unix

Interview questions from similar companies

Interview Preparation Tips

Round: Interview
Experience: They asked to write 2 codes on recursion. Then some questions on resume. I asked them about the job profile and after knowing that they were hiring candidates for frontend programming, about which they didn’t mention in JAF. I told them that I was not interested in frontend development. And didn’t even answer any question after that. Unfortunately, I was selected.

General Tips: Plan your schedule judiciously keeping your capacity in mind. There is no point of making ideal plans and then not able to do even 50% of it.
Don’t get into unnecessary arguments or debate with people.
Don’t think about what others are doing. Focus on your preparation.
How you carry yourself matters. So, make sure you portray yourself in the way you want the other person to perceive you.
Be selective while applying for companies.
College Name: IIT Kanpur
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Related to your Past expereince
Round 2 - Technical 

(1 Question)

  • Q1. Basic and detailed Steps of P2P
  • Ans. 

    P2P (Procure-to-Pay) is the process of requisitioning, purchasing, receiving, paying for, and accounting for goods and services.

    • Requisitioning: Requesting goods or services needed by the organization.

    • Purchasing: Finding suppliers, negotiating terms, and creating purchase orders.

    • Receiving: Accepting and inspecting goods or services delivered.

    • Paying for: Processing invoices and making payments to suppliers.

    • Accounting: Re...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiations

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions were on SAP and Salesforce

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the Job description well and the questions will be based on the skills mentioned.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Assignment 

Easy assignment with basic questions on patent

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

I applied via Naukri.com and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Case Study 

Chargeback rights and case study

Round 2 - Case Study 

Chargeback case study

Round 3 - Chargeback Dispute  

(1 Question)

  • Q1. Normal questionnaire and case study

Interview Preparation Tips

Interview preparation tips for other job seekers - Chargeback dispute work flow
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Assignment 

Essay writing to check english.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good co with job security.

I applied via Indeed and was interviewed before Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Different types of Call Flows?
  • Ans. 

    Call flows refer to the sequence of events that occur during a phone call.

    • Inbound call flow

    • Outbound call flow

    • Transfer call flow

    • Conference call flow

    • Voicemail call flow

  • Answered by AI
  • Q2. Roaming Testing pre-requisites?
  • Ans. 

    Roaming testing pre-requisites include network coverage, SIM cards, and test devices.

    • Ensure network coverage in the testing area

    • Have SIM cards from different carriers

    • Prepare test devices with different operating systems

    • Create test scenarios and scripts

    • Have a test plan and schedule

  • Answered by AI
  • Q3. Different interfaces in each technology and their functinality?
  • Ans. 

    Different technologies have different interfaces with unique functionalities.

    • Interfaces in web development include HTML, CSS, and JavaScript.

    • In database management, SQL is a commonly used interface.

    • Programming languages like Java and Python have their own interfaces.

    • Each interface has its own set of functions and methods for performing specific tasks.

    • Interfaces can also be graphical, such as user interfaces in software

  • Answered by AI
  • Q4. Co-ordination with Roaming Operators, IPX, GRX and SCCP Providers?
  • Ans. 

    Co-ordination with Roaming Operators, IPX, GRX and SCCP Providers involves managing relationships and ensuring smooth communication.

    • Establishing and maintaining relationships with roaming operators, IPX, GRX and SCCP providers

    • Negotiating contracts and service level agreements

    • Monitoring service performance and resolving issues

    • Collaborating with internal teams to ensure seamless communication

    • Staying up-to-date with indus

  • Answered by AI
  • Q5. Handling the team internally and externally?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and speak with confidence, understand the JD and know all the things in your RESUME.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There were 3 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 - Aptitude Test 

MCQ questions on Linux Networking and SQL

Round 3 - Technical 

(2 Questions)

  • Q1. Questions about Linux Sql and Networking
  • Q2. Questions about the project
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Two sum of an array
  • Ans. 

    Find two numbers in an array that add up to a specific target value.

    • Use a hashmap to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hashmap.

    • Return the indices of the two numbers that add up to the target value.

  • Answered by AI
  • Q2. Stack balance parenthesis
Round 2 - Technical 

(2 Questions)

  • Q1. Is circular loop is there in a linkedList
  • Ans. 

    No, a circular loop is not present in a linked list.

    • A linked list does not have a circular loop by default.

    • If a linked list has a circular loop, it is considered a circular linked list.

    • Circular linked lists can be detected using Floyd's Cycle Detection Algorithm.

  • Answered by AI
  • Q2. How to identify the duplicates in circular linkedList
  • Ans. 

    To identify duplicates in a circular linked list, use a hash set to keep track of visited nodes.

    • Traverse the circular linked list while adding each node to a hash set.

    • If a node is already in the hash set, it is a duplicate.

    • Consider edge cases such as an empty list or a list with only one node.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - well Prepared DSA Topics and Java and OOPs

Skills evaluated in this interview

ACI Worldwide Interview FAQs

How to prepare for ACI Worldwide Technical Consultant 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 ACI Worldwide. The most common topics and skills that interviewers at ACI Worldwide expect are Oracle, Computer science, Troubleshooting, Aci and Linux.
What are the top questions asked in ACI Worldwide Technical Consultant interview?

Some of the top questions asked at the ACI Worldwide Technical Consultant interview -

  1. SQL, Oracle, u...read more
  2. SQL, Unix , Ora...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Chetu Interview Questions
3.2
 • 176 Interviews
AVASOFT Interview Questions
2.9
 • 167 Interviews
Oracle Cerner Interview Questions
3.7
 • 158 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
Thomson Reuters Interview Questions
4.1
 • 115 Interviews
Amadeus Interview Questions
3.9
 • 108 Interviews
EbixCash Limited Interview Questions
4.0
 • 103 Interviews
UKG Interview Questions
3.1
 • 103 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
View all
ACI Worldwide Technical Consultant Salary
based on 26 salaries
₹5.5 L/yr - ₹17.4 L/yr
8% less than the average Technical Consultant Salary in India
View more details

ACI Worldwide Technical Consultant Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

4.0

Salary

3.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
152 salaries
unlock blur

₹7.6 L/yr - ₹23.6 L/yr

Senior Software Engineer
99 salaries
unlock blur

₹16.4 L/yr - ₹33 L/yr

Associate Software Engineer
51 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Scrum Master
32 salaries
unlock blur

₹16.7 L/yr - ₹43 L/yr

Senior Quality Assurance Engineer
28 salaries
unlock blur

₹10.5 L/yr - ₹24.5 L/yr

Explore more salaries
Compare ACI Worldwide with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

Chetu

3.2
Compare

R Systems International

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