Upload Button Icon Add office photos

Filter interviews by

American Express Collections Executive Interview Questions and Answers for Experienced

Updated 3 Mar 2024

American Express Collections Executive Interview Experiences for Experienced

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic round they want you to have a good communication skills
Round 2 - One-on-one 

(3 Questions)

  • Q1. They will give you the situation and will try to grill you stay positive
  • Q2. No such question
  • Q3. No specific question

Interview Preparation Tips

Interview preparation tips for other job seekers - stay calm and positive with

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Nov 2019. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Previous prosess in brief
  • Q2. Why did you quit previous job

Interview Preparation Tips

Interview preparation tips for other job seekers - Study the job profile and prepare with it

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Check palindrome , anagram of string with O(n)
  • Ans. 

    To check palindrome and anagram of a string with O(n), use a hash table to store character frequencies.

    • Create a hash table to store the frequency of each character in the string.

    • For palindrome, check that no more than one character has an odd frequency.

    • For anagram, compare the hash tables of the two strings.

    • If the hash tables are equal, the strings are anagrams.

    • If the hash tables differ by only one character, the strin...

  • Answered by AI
  • Q2. Optimized solutions and core principles applied in OOPS
  • Ans. 

    Optimized solutions and core principles applied in OOPS

    • Encapsulation, Inheritance, Polymorphism, Abstraction are core principles of OOPS

    • Optimized solutions can be achieved through efficient algorithms and data structures

    • Design patterns like Singleton, Factory, Observer can also be used for optimized solutions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are looking for best possible solutions. and they are not using that in project then also they ask

Skills evaluated in this interview

Analyst Interview Questions & Answers

UBS user image Anonymous

posted on 17 Oct 2021

I applied via Company Website and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I was asked mostly about my profile and there expectations.

Interview Preparation Tips

Interview preparation tips for other job seekers - There were two technical rounds and it was of 30 - 40 mins long and interviewer was friendly and made me confortable with them.

Interview Questionnaire 

1 Question

  • Q1. Different types of risk in finance
  • Ans. 

    Different types of risk in finance include market risk, credit risk, liquidity risk, operational risk, and legal risk.

    • Market risk refers to the potential for losses due to changes in market conditions, such as fluctuations in interest rates, exchange rates, or stock prices.

    • Credit risk is the risk of default by borrowers or counterparties, leading to potential losses for lenders or investors.

    • Liquidity risk is the risk o...

  • Answered by AI

I applied via LinkedIn and was interviewed in Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why should we hire you when we have many in the open market.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be Yourself.
Maintain an eye - eye contact with the person taking your interview and always maintain a smile on your face.
Most of the cases for an experienced employees they just see the attitude that you maintain while giving the interview.
So, just be confident and smiling.
Thank you !!!

I appeared for an interview in May 2017.

Interview Questionnaire 

6 Questions

  • Q1. Can string class be extended
  • Ans. 

    Yes, the string class can be extended in most programming languages.

    • Inheritance can be used to extend the functionality of the string class.

    • By creating a new class that inherits from the string class, additional methods and properties can be added.

    • Extending the string class allows for customization and adding specific functionality to strings.

    • Example: In Python, the string class can be extended by creating a new class

  • Answered by AI
  • Q2. What are the implecit object in JSP
  • Ans. 

    Implicit objects in JSP are predefined objects that are available for use without any declaration or initialization.

    • Implicit objects in JSP include request, response, session, application, out, config, pageContext, page, exception, and others.

    • These objects provide access to various aspects of the JSP environment and can be used to perform common tasks.

    • For example, the request object allows access to HTTP request parame...

  • Answered by AI
  • Q3. How does hash map works
  • Ans. 

    A hash map is a data structure that uses a hash function to map keys to values.

    • Hash map stores key-value pairs

    • It uses a hash function to compute an index for each key

    • Collisions can occur when two keys hash to the same index

    • Hash maps provide fast access to values based on their keys

  • Answered by AI
  • Q4. Difference between string buffer and string builder
  • Ans. 

    StringBuffer and StringBuilder are both used to manipulate strings, but StringBuffer is thread-safe while StringBuilder is not.

    • StringBuffer is synchronized, making it safe for use in multi-threaded environments.

    • StringBuilder is not synchronized, making it faster but not thread-safe.

    • StringBuffer is preferred when multiple threads are involved, while StringBuilder is preferred for single-threaded scenarios.

    • Both classes p...

  • Answered by AI
  • Q5. What is MVC
  • Ans. 

    MVC is a software architectural pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the user interface.

    • Controller handles user input, updates the model, and interacts with the view.

    • MVC promotes separation of concerns and modularity in software development.

    • Example: In a web applica...

  • Answered by AI
  • Q6. What are the annotation used in RESTFULL web services
  • Ans. 

    Annotations used in RESTful web services

    • 1. @Path - Specifies the URI path for the resource

    • 2. @GET - Specifies that the method handles HTTP GET requests

    • 3. @POST - Specifies that the method handles HTTP POST requests

    • 4. @PUT - Specifies that the method handles HTTP PUT requests

    • 5. @DELETE - Specifies that the method handles HTTP DELETE requests

    • 6. @PathParam - Binds the value of a URI template parameter to a method paramete...

  • Answered by AI

Interview Preparation Tips

Skills: Java Application Development

Skills evaluated in this interview

Interview Preparation Tips

Round: Technical Interview
Experience: Technical on paper test questions:(dis was only for 12 among d 26 shortlisted ppl after apti...others directly had interviews)
5 wer selected in this test who wer nw sent for interviews
TECHNICAL INTERVIEW: (pls list the questions asked in all the rounds)
26 shortlisted after apti (14 directly for interviews & 12 had one more technical on paper test...mentioned above)
der wer min 2 technical rounds for each of them...max were 5

- You are given course dependencies
A->B,C
B->D
C->A
D->nothing
The above dependencies mean...if you want to take course A...you should take courses B and C first....To take B,Course D must be taken first....D is an independent course and can be taken without any prior requirements.
Now you are told these dependencies.Come up with an appropriate data structure to represent these dependencies.Then write a code that finds out all the courses that the student can take up...in this case the student can first take course D because its independent.Now that course D has been taken he can next take up B as it depends on B alone...But the courses A and C can never be taken because they depend on each other...So here all the courses that can be taken are B and D.
After i wrote the code....he asked for all possible test cases
-Given an array of length N....It can be filled with nos. only from 1 to N....find which nos are repeated in the array
-Given pointers to two nodes in a binary tree....find their least common ancestor...each node has pointer to only the parent node...not the left and right child..
-In a binary tree(Not necessarily a BST)...suppose the weight of any node is defined as the product of the key value of the node and the level of the node(Root at level 1)...find the node with maximum weight in the binary tree
-A sorted array of size n is right circularly rotated k times and this rotated array is given to you as input...Find out the value of k in log n time .
-There are some processes running at time T....and there are processes running at time T+30.
You have to find out
1)Which processes died at time T+30,which were alive at time T
2)Which are the new processes at time T+30,which were not there at time T
3)Which are the processes that were there at time T and are still running at time T+30
What data structure will you use to represent the process lists and write code to find out the answers to the 3 questions above
-Given a binary search tree...and a target sum...starting at the root...which all paths add up to the target sum?...if there are multiple paths....return the path with least no. of nodes.


College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

Analyst Interview Questions & Answers

HSBC Group user image Sumit Sourav

posted on 21 Nov 2016

Interview Questionnaire 

6 Questions

  • Q1. How will you find the top 5 customer of HSBC from the entire world?
  • Ans. 

    Top 5 customers of HSBC can be found by analyzing transaction history and account balances.

    • Analyze transaction history of all HSBC customers worldwide

    • Identify customers with highest transaction volumes and account balances

    • Rank customers based on transaction volumes and account balances

    • Select top 5 customers based on ranking

    • Consider other factors such as creditworthiness and profitability

  • Answered by AI
  • Q2. About Credit Risk Modelling
  • Q3. About my internship (as i have done intern in Data Analytics field)
  • Q4. How to find the no of petrol pump in the city
  • Ans. 

    Use online maps or directories to find the number of petrol pumps in the city.

    • Search for petrol pumps on online maps like Google Maps or MapQuest.

    • Use online directories like Yelp or Yellow Pages to find petrol pumps in the city.

    • Check with local authorities or city websites for a list of petrol pumps in the area.

    • Ask locals or taxi drivers for recommendations on petrol pumps in the city.

  • Answered by AI
  • Q5. Basic HR question( like why HSBC,Strength,Weakness.etc)
  • Q6. One puzzles--How to calculate the average no of person coming to the airport daily?
  • Ans. 

    The average number of people coming to the airport daily can be calculated by taking the total number of people arriving and departing and dividing it by two.

    • Collect data on the number of arrivals and departures for a given period, such as a week or a month.

    • Add the number of arrivals and departures together to get the total number of people coming to the airport.

    • Divide the total number by the number of days in the peri...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The test was on amcat platform where you can not skip the question and you have to attempt each and every question.the key thing here is accuracy specially in first two section coz in retail banking and econometric will be new for everyone.I am from Industrial Engg and Management(M.tech) so we have some basic idea of Econometrics.
Tips: Maintain the accuracy and try to give few hours in studying the basic of Retail Banking and Econometric, coz these are the two section where u can take the lead. and never forget that this is the mass rejection process

Round: Group Discussion
Experience: Follow the basic rule of GD and try to give valid example with your point.
Tips: Read the Newspaper and be aware of what is happening around.

Round: Technical Interview
Experience: my interview was around 35-40 minutes process in which they as the technical part from my resume
Tips: just be confident and they will try to stress you out.so be calm and compose and try to understand the question properly before start giving your answer
they expect the logic how you attempt the question


Round: HR Interview
Experience: be ready for the puzzles
Tips: The process is going to be time talking so be ready to wait, and dont sound low in the interview coz this is the day u are waiting for your entire life.

Skills:
College Name: NIT Tiruchirappalli

Analyst Interview Questions & Answers

HSBC Group user image Prateek Ladha

posted on 3 Feb 2015

Interview Questionnaire 

1 Question

  • Q1. It was HR plus Technical

Interview Preparation Tips

Round: Test
Experience: It was a decent test as normal apti tests but you have to keep little extra knowledge about retail banking and econometrics.
Tips: Just practice well for all aptitude test and boost your speed with accuracy.
Duration: 60 minutes
Total Questions: 40

Round: Group Discussion
Experience: It was a good discussion but in between there was a chaos as number of people in my group was too big(14) as far as GDs are concerned.But overall it was good and everyone whosoever wanted, had put their points.
Tips: Don't fight during GD. Make sure that whenever you get chance you utilize it fully and make a very effective point. Also keep in mind it is a GD so you should be humble to others as well.
Duration: 30 minutes

Round: Technical Interview
Experience: It was a very weird experience.
After get shortlisted from test late in the night, our GD was early in the morning and then followed by interview. And then something really strange happened.I was waiting for my turn since afternoon and I was the last one to be interviewed. When I was called for my turn, all three panel of interviewers came out of their rooms and they announced the result before taking my interview so it was shocking because as par our campus rule you can not straight away declare the results to candidates before the whole process gets over. It shook me and I was very angry at that time but I kept myself calm and turned that anger into a positive way thanks to my friend who were there with me during that time. All I thought was I will get a chance and now I don't have anything to lose so I have to make a better impact on them than the other guys and convince them to increase their selected candidate list. The interview started with general HR questions, why do you want to join us? Why do you think we should hire you? And then they started asking questions over my project which I mentioned in my resume. After that there were few basic probability questions and some analytical puzzles. And during my interview I said I like to play with numbers so they threw me a multiplication 55555*55555 and it took me around 25-30 seconds to do it so I think that was a really effective part of my interview well at last I got selected in HSBC.
Tips: Don't get panic and never lose your calm. Situations can be more worst than what you thought it to be but be confident on yourself. Sooner or later you will be rewarded for your work. Good luck in advance :)

General Tips: Just be yourself and be confident. Be with those who make you feel comfortable. Keep calm and eventually everything will fall in the right place.
Skill Tips: I would say that patience is not a skill but it is as important as any other skill during your interviews. You might encounter some serious situations which might take you on your nerve so be patient.
During your interviews make sure whatever you know you should be able to communicate it well enough otherwise your knowledge is of no use. At the same time ensure that you don't really show off that you know more. If you know more about that problem be humble to the interviewer as discuss or share your thoughts in a very polite manner. And last but not the least is the analytical skills. You might be asked to decode some case or do guesstimates to be prepared for it. Practice it a lot with your friends or else whichever way you like it to be done.
Skills: Analytical skill, Communication, Patience
College Name: IIT KANPUR
Motivation: My only motivation was to get a analytical job which I was targeting. And apart from it there was a reason in my life to get this job and do something for someone very special. So, this keeps me motivated even today.
Funny Moments: The whole placement process right from companies visiting your campus to giving test and getting shortlisted for the interviews was really stressful but when I look back I cherish all those moments where we all friend sat together abusing some bull shit companies their procedure. How we used to run like a wild animal from one test to another one PPT to another. Those late might discussion talking about our future. Those were the lifetime memories, good or bad, which will stay with us always.

Godd luck again for your placements. :)

American Express Interview FAQs

How many rounds are there in American Express Collections Executive interview for experienced candidates?
American Express interview process for experienced candidates usually has 2 rounds. The most common rounds in the American Express interview process for experienced candidates are HR and One-on-one Round.
How to prepare for American Express Collections Executive interview for experienced candidates?
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 American Express. The most common topics and skills that interviewers at American Express expect are Collections, Credit Collection, Credit Control and fraud control.
What are the top questions asked in American Express Collections Executive interview for experienced candidates?

Some of the top questions asked at the American Express Collections Executive interview for experienced candidates -

  1. basic round they want you to have a good communication ski...read more
  2. they will give you the situation and will try to grill you stay posit...read more
  3. no such quest...read more

Tell us how to improve this page.

American Express Collections Executive Interview Process for Experienced

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 580 Interviews
Citicorp Interview Questions
3.7
 • 573 Interviews
HSBC Group Interview Questions
3.9
 • 489 Interviews
BNY Interview Questions
3.8
 • 351 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morgan Stanley Interview Questions
3.6
 • 293 Interviews
FactSet Interview Questions
3.9
 • 208 Interviews
View all
American Express Collections Executive Salary
based on 6 salaries
₹6 L/yr - ₹9.1 L/yr
135% more than the average Collections Executive Salary in India
View more details

American Express Collections Executive Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Business Analyst
812 salaries
unlock blur

₹9.5 L/yr - ₹16.8 L/yr

Assistant Manager
701 salaries
unlock blur

₹14.5 L/yr - ₹42 L/yr

Analyst
622 salaries
unlock blur

₹12.4 L/yr - ₹27 L/yr

Senior Analyst
604 salaries
unlock blur

₹6 L/yr - ₹24.7 L/yr

Lead Analyst
494 salaries
unlock blur

₹4.2 L/yr - ₹13 L/yr

Explore more salaries
Compare American Express with

MasterCard

3.9
Compare

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

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