Upload Button Icon Add office photos

Filter interviews by

American Express Interview Questions, Process, and Tips

Updated 6 Mar 2025

Top American Express Interview Questions and Answers

View all 191 questions

American Express Interview Experiences

Popular Designations

359 interviews found

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

(2 Questions)

  • Q1. How do you iterate only once in the linkedlist to get the mid element?
  • Ans. 

    To find the mid element in a linked list while iterating only once, we can use the two-pointer approach.

    • Use two pointers, one moving at twice the speed of the other.

    • When the faster pointer reaches the end of the list, the slower pointer will be at the mid element.

  • Answered by AI
  • Q2. What is database sharability?
  • Ans. 

    Database sharability refers to the ability of multiple users or applications to access and modify the same database concurrently.

    • Allows multiple users or applications to access and modify the same database simultaneously

    • Ensures data consistency and integrity by managing concurrent access

    • Commonly used in multi-user systems or applications

    • Examples include online banking systems where multiple users can access their accou

  • Answered by AI

Skills evaluated in this interview

Top American Express Software Engineer Interview Questions and Answers

Q1. What is c,c++,tokens, statement, function, array,pointer, constructor,types of constructor ,destructor etc.
View answer (1)

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 (196)

Risk Analyst Interview Questions & Answers

user image Anonymous

posted on 4 Sep 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

2 hirs 100 questions generic type

Round 2 - Technical 

(2 Questions)

  • Q1. Sql ques, guessstimates
  • Q2. Joins, vlookup and sql

Top American Express Risk Analyst Interview Questions and Answers

Q1. How to use joins in SQL?
View answer (3)

Risk Analyst Interview Questions asked at other Companies

Q1. How will you determine the factors can be considered as risk while insuring a bike?
View answer (1)
American Express Interview Questions and Answers for Freshers
illustration image

Risk Analyst Interview Questions & Answers

user image Anonymous

posted on 7 Nov 2024

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

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. BAsic resume based questions
  • Q2. SQL, C++ basics, PowerBi, Puzzle
Round 2 - Technical 

(2 Questions)

  • Q1. SQL questions medium-level,
  • Q2. Managerial Questions, Puzzle

Top American Express Risk Analyst Interview Questions and Answers

Q1. How to use joins in SQL?
View answer (3)

Risk Analyst Interview Questions asked at other Companies

Q1. How will you determine the factors can be considered as risk while insuring a bike?
View answer (1)

Senior Analyst Interview Questions & Answers

user image Gaurav Huria

posted on 11 Jul 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic SQL questions
  • Q2. Data analytics related questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Why would you wan to join Amex?
  • Q2. Scenario based questions

Senior Analyst Interview Questions asked at other Companies

Q1. Explain 3 statement financial model Calculating discount rate Could you walk me through the DCF model? Other valuation methods. What PE is ideal? What is the other matrix to value the company? Difference between IRR and CAGR. What is Bond Y... read more
View answer (1)

American Express interview questions for popular designations

 Analyst

 (30)

 Business Analyst

 (15)

 Management Trainee

 (14)

 Software Engineer

 (11)

 Data Analyst

 (11)

 Software Developer

 (11)

 Financial Analyst

 (8)

 Risk Analyst

 (7)

Risk Analyst Interview Questions & Answers

user image yogesh jain

posted on 4 Sep 2024

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. How can concatenate in sql?
  • Ans. 

    Concatenate in SQL is done using the CONCAT function or the + operator.

    • Use the CONCAT function to concatenate strings in SQL, for example: SELECT CONCAT(first_name, ' ', last_name) AS full_name FROM employees;

    • Alternatively, you can use the + operator to concatenate strings, for example: SELECT first_name + ' ' + last_name AS full_name FROM employees;

  • Answered by AI

Skills evaluated in this interview

Top American Express Risk Analyst Interview Questions and Answers

Q1. How to use joins in SQL?
View answer (3)

Risk Analyst Interview Questions asked at other Companies

Q1. How will you determine the factors can be considered as risk while insuring a bike?
View answer (1)

Get interview-ready with Top American Express Interview Questions

Manager Interview Questions & Answers

user image Anonymous

posted on 7 Aug 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to optimize SQL Joins
  • Ans. 

    Optimizing SQL Joins involves using proper indexing, limiting the result set, and avoiding unnecessary joins.

    • Use indexes on columns involved in join conditions to improve performance

    • Limit the result set by using WHERE clause to filter out unnecessary rows before joining

    • Avoid unnecessary joins by only joining the tables that are needed for the query

  • Answered by AI
  • Q2. How to optimize performance
  • Ans. 

    Optimizing performance involves setting clear goals, providing feedback, offering training and development opportunities, and fostering a positive work environment.

    • Set clear goals and expectations for employees

    • Provide regular feedback and recognition for good performance

    • Offer training and development opportunities to help employees improve their skills

    • Create a positive work environment that promotes collaboration and c...

  • Answered by AI

Skills evaluated in this interview

Manager Interview Questions asked at other Companies

Q1. There is a chairman of a conglomerate. He has been on the post for 10 years, and is extremely dominating. He treats the various business heads like children, not letting them take any major decision. While the chairman has negatives, he bel... read more
View answer (2)

Jobs at American Express

View all

Sde1 Interview Questions & Answers

user image Anonymous

posted on 17 Sep 2024

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

2 medium dsa que - one is of binary search, one is from graph

Round 2 - Technical 

(2 Questions)

  • Q1. Define oops principle
  • Ans. 

    OOPs principles are the fundamental concepts of object-oriented programming that help in designing and implementing software solutions.

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

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

    • Polymorphism: The ability of different classes to be treated as instances of a common superclass.

    • Abstraction: ...

  • Answered by AI
  • Q2. Define os concepts
  • Ans. 

    OS concepts refer to fundamental principles and components of operating systems.

    • Process management - handling processes, scheduling, and resource allocation

    • Memory management - managing memory allocation, virtual memory, and paging

    • File system - organizing and accessing files on storage devices

    • Device management - controlling and communicating with hardware devices

    • Security and protection - ensuring system and data securit...

  • Answered by AI

Skills evaluated in this interview

Sde1 Interview Questions asked at other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and ArrayList in Java. 2. Queue Implementation using Linked List. 3. BST- How would you fill a BST with a sorted array. 4. Random pointer linked-list clone. 5. Fibonacci number genera... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your projec5
  • Ans. 

    I led a project to streamline inventory management processes for a retail company.

    • Identified inefficiencies in current inventory management system

    • Implemented barcode scanning system to track inventory in real-time

    • Collaborated with cross-functional teams to ensure successful implementation

  • Answered by AI
  • Q2. Guwss no. Of credits cards in india
  • Ans. 

    The number of credit cards in India is constantly changing due to various factors such as economic conditions and consumer behavior.

    • The number of credit cards in India is estimated to be around 50-60 million.

    • The number of credit cards issued in India has been steadily increasing over the years.

    • Major credit card issuers in India include HDFC Bank, ICICI Bank, SBI, and Axis Bank.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Top American Express Business Analyst Interview Questions and Answers

Q1. What are inorganic and organic results in digital marketing
View answer (1)

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Finance & accounts related Questions

Financial Analyst Interview Questions asked at other Companies

Q1. Suppose you have 10000 US dollars with you, out of which you took a loan of 5000 US Dollars. Now suppose you have purchased two assets of 5000 US Dollars each, one through cash and other through bank loan. How would you show this transactio... read more
View answer (3)

L2 Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Jun 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in May 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Spring boot questions
  • Q2. Core Java & Java 8 basics
Round 2 - One-on-one 

(2 Questions)

  • Q1. Threads using java8
  • Ans. 

    Java 8 introduced new features for working with threads, such as CompletableFuture and parallel streams.

    • Java 8 introduced CompletableFuture class for asynchronous programming.

    • Parallel streams in Java 8 allow for easy parallelization of operations on collections.

    • New methods like `join()` and `thenApply()` were added to the Thread class in Java 8.

  • Answered by AI
  • Q2. Maximum sub array

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1 was good just asked simple java , spring boot basics. Interviewer was also friendly. In second round of interview interviewer was very very rude didn’t give me any chance to speak, kept cutting me in between, made me soo nervous that I couldn’t give my 100%. Very bad interview experience. Worst people would never want to work here if there are such rude and egoistic employees. Just because of him I couldn’t clear my round 2, totally time waste to interview with amex.

Skills evaluated in this interview

L2 Engineer Interview Questions asked at other Companies

Q1. 4. What is difference between radiography testing (RT) and ultrasonic testing (UT)
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

American Express Interview FAQs

How many rounds are there in American Express interview?
American Express interview process usually has 2-3 rounds. The most common rounds in the American Express interview process are One-on-one Round, Technical and HR.
How to prepare for American Express 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 American Express. The most common topics and skills that interviewers at American Express expect are Career Development, Finance, SQL, Analytical and Customer Service.
What are the top questions asked in American Express interview?

Some of the top questions asked at the American Express interview -

  1. What is the difference between customer service and customer Suppor...read more
  2. What would happen to AMEX's income if petrol and diesel prices decrea...read more
  3. What does fraud mean if you have to explain to explain it to a 12-year ...read more
How long is the American Express interview process?

The duration of American Express interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

ICICI Securities

No Interviews

DESIGNATION

JOBS

Motilal Oswal Financial Services

No Jobs

INTERVIEWS

Jaro Education

No Interviews

COMPANY BENEFITS

Motilal Oswal Financial Services

No Benefits

DESIGNATION

INTERVIEWS

American Express

No Interviews

JOBS

Bajaj Capital

No Jobs

INTERVIEWS

Majestique Landmarks

No Interviews

Tell us how to improve this page.

American Express Interview Process

based on 273 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
AIG Interview Questions
4.0
 • 10 Interviews
View all

American Express Reviews and Ratings

based on 3.1k reviews

4.2/5

Rating in categories

3.8

Skill development

4.2

Work-life balance

4.1

Salary

4.1

Job security

4.2

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 3.1k Reviews and Ratings
Customer Service Analyst

Gurgaon / Gurugram

1-5 Yrs

₹ 4.4-6 LPA

Financial Analyst

Gurgaon / Gurugram

0-5 Yrs

Not Disclosed

Financial Analyst

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Explore more jobs
Business Analyst
875 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
702 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
590 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
544 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Analyst
491 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare American Express with

MasterCard

3.9
Compare

Visa

3.5
Compare

PayPal

3.9
Compare

State Bank of India

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent