Upload Button Icon Add office photos

American Express

Compare button icon Compare button icon Compare

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

American Express Data Analyst Interview Questions and Answers

Updated 21 Feb 2025

American Express Data Analyst Interview Experiences

12 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 11 Dec 2024

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

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is p value?
  • Ans. 

    A p-value is a measure used in statistical hypothesis testing to determine the strength of evidence against the null hypothesis.

    • A p-value is the probability of obtaining results as extreme as the observed results, assuming the null hypothesis is true.

    • A p-value is compared to a significance level (usually 0.05) to determine if the null hypothesis should be rejected.

    • A p-value less than the significance level indicates st...

  • Answered by AI
  • Q2. Tell the output a**2
  • Ans. 

    The output of a**2 is the square of the value of a.

    • The output is the value of a multiplied by itself

    • For example, if a = 3, then the output would be 9 (3*3)

  • Answered by AI
  • Q3. Difference between append() and concat
  • Ans. 

    append() adds elements to a single DataFrame, while concat() combines multiple DataFrames.

    • append() is a method used to add rows to a DataFrame.

    • concat() is a function used to combine multiple DataFrames along a particular axis.

    • append() modifies the original DataFrame, while concat() returns a new DataFrame.

    • Example: df1.append(df2) vs pd.concat([df1, df2])

  • Answered by AI

Data Analyst Interview Questions & Answers

user image Prakhar Rawat

posted on 27 Oct 2024

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

(2 Questions)

  • Q1. SQL Query of case when then statement
  • Ans. 

    SQL query using CASE WHEN THEN statement

    • Use CASE WHEN statement to create conditional logic in SQL queries

    • Syntax: SELECT column_name, CASE WHEN condition1 THEN result1 WHEN condition2 THEN result2 ELSE result3 END AS new_column_name FROM table_name

    • Example: SELECT name, CASE WHEN age < 18 THEN 'Minor' ELSE 'Adult' END AS age_group FROM customers

  • Answered by AI
  • Q2. SQL Query of join

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 5 Aug 2024

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

I applied via Campus Placement

Round 1 - Aptitude Test 

1hr test , basic apti questions .

Round 2 - Group Discussion 

American express discussion and economics

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare nice for hr round , i havent provided its details as im in ahurry.

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 21 Jun 2024

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

Three sections of apti, ML and Case study

Round 2 - Technical 

(1 Question)

  • Q1. Factors to account for ATM placements in city?
  • Ans. 

    Factors such as foot traffic, proximity to banks, crime rates, and demographics should be considered for ATM placements in a city.

    • Foot traffic in the area

    • Proximity to banks or financial institutions

    • Crime rates in the neighborhood

    • Demographics of the area (income levels, age groups)

    • Accessibility and visibility of the location

    • Local regulations and zoning laws

    • Availability of power and network connections

    • Competition from ot...

  • Answered by AI

Data Analyst Interview Questions & Answers

user image Vishnu Aneja

posted on 17 May 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. How would you decide if a person can be a customer of a private jet company
  • Ans. 

    To determine if a person can be a customer of a private jet company, factors such as income level, travel frequency, and location must be considered.

    • Consider the individual's income level to determine if they can afford private jet services

    • Evaluate the person's travel frequency to see if they would benefit from the convenience of private jet travel

    • Take into account the person's location and travel destinations to asses...

  • Answered by AI

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 19 Feb 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 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 - Coding Test 

Three Data model questions will be given to solve within 24 hours.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Q1. Case study for Number of Green T-shirts sold in US?
  • Ans. 

    A case study on the number of green T-shirts sold in the US.

    • Identify the target audience for green T-shirts

    • Analyze the market demand for green T-shirts

    • Study the sales data of green T-shirts in the US

    • Identify the popular brands and styles of green T-shirts

    • Analyze the impact of seasonality on sales

    • Consider the pricing strategy of green T-shirts

    • Identify potential marketing opportunities to increase sales

  • Answered by AI
  • Q2. Q2. SQL joins and Python simple questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Make your skills good in SQL and Data Analysis in Python.

Data Analyst Interview Questions & Answers

user image debayan paul

posted on 18 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Case Study 

You are building a model to predict if an order will be returned for a furniture ecommerce site.
1. steps to be followed.
2. What all features would you select based on your business sense.

Round 2 - HR 

(2 Questions)

  • Q1. Why this job interests you?
  • Q2. Tell us your past experience

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 2 Apr 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain why and when Analysis of Variance (ANOVA) is used. {Question from CV, since I had mentioned the use of it before}
  • Ans. 

    ANOVA is used to compare means across multiple groups to determine if at least one group differs significantly.

    • ANOVA is used when comparing three or more groups to see if their means are statistically different.

    • Example: Testing the effectiveness of three different diets on weight loss.

    • It helps in understanding the impact of categorical independent variables on a continuous dependent variable.

    • Example: Analyzing test sco...

  • Answered by AI
  • Q2. ,You want to create an index that comprises of a bunch of components. How would you choose to aggregate all the individual components? Is it context specific?
  • Ans. 

    Choosing an aggregation method for an index depends on the components and their context, ensuring relevance and accuracy.

    • Identify the components: Understand what individual metrics or data points will be included in the index.

    • Determine the aggregation method: Common methods include sum, average, weighted average, or geometric mean.

    • Consider the context: The importance of each component may vary based on the specific app...

  • Answered by AI
Round 2 - Case Study 

Question:
Suppose you are trying to detect if a particular credit card transaction is fraudulent or not. The credit score of the individual to which the card belongs to had a very healthy credit score. All bills were paid in time and average transaction amount was not that high ($800). The individual had not been out of the country in the last couple of decades. Here is a list of transactions:

1) Gold jwelleries worth $5000
2) Groceries worth $35
3) Second hand car worth $8,000
4) Burgers worth $10

Which transaction looks fraudulent to you?
There is no specific answer. They just want to see how you think through the problem. One can potentially make use of data in order to deal with this problem. From that, one can estimate the probability of each of these transactions being fraudulent. Econometrically, one can develop a potential binary logit model. That would involve identifying certain features that belong to individuals like the one considered above and use these features to come up with an estimate of the probability of the transaction being a fraud.
Not just that, this also needs to include not individual specific features but external features as well. For example, the first transaction might not be as fraudulent as it looks like, because in heavily regulated markets, the risk associated with reselling the gold or exchanging it for money might be high enough to disincentivise the fraudster from buying gold. Thus regulation might also be a valid feature, and different from features describing an individuals characteristics.
Ofcourse problems of overfitting would arise ifan excessive number of features are used. Various means of finding the optimal Degrees of Freedom can be employed.
Obviously one can do better with more complicated decisioning algorihms that involve machine learning models as well.
Eventually one needs to estimate at what threshold of probability will the trasaction be declared fraudulent.

Interview Preparation Tips

Topics to prepare for American Express Data Analyst interview:
  • Econometrics
  • Statistics
  • Economics
Interview preparation tips for other job seekers - Prepare your Statistics well. The first two questions were asked to me as I had used them before in my previous internships as mentioned in my CV. However one needs to be thorough with how to think in terms of data and build models.

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 21 Feb 2025

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

I appeared for an interview before Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Sort an array without using the inbuild function.

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 16 Apr 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Mettle test on quant and machine learning

Round 2 - HR 

(2 Questions)

  • Q1. How will you handle an office emergency
  • Ans. 

    In an office emergency, I prioritize safety, assess the situation, and follow established protocols to ensure everyone's well-being.

    • Stay calm and assess the situation quickly to determine the nature of the emergency.

    • Ensure the safety of myself and others by following emergency protocols, such as evacuating if necessary.

    • Communicate clearly with colleagues about the emergency and any actions they should take.

    • If applicabl...

  • Answered by AI
  • Q2. What are your strengths

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and have a look at the questionst for this month end

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about American Express?
Ask anonymously on communities.

American Express Interview FAQs

How many rounds are there in American Express Data Analyst interview?
American Express interview process usually has 1-2 rounds. The most common rounds in the American Express interview process are Technical, One-on-one Round and Aptitude Test.
How to prepare for American Express Data Analyst 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 SQL, Career Development, Python, Data Quality and Finance.
What are the top questions asked in American Express Data Analyst interview?

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

  1. ,You want to create an index that comprises of a bunch of components. How would...read more
  2. Explain why and when Analysis of Variance (ANOVA) is used. {Question from CV, s...read more
  3. Q1. Case study for Number of Green T-shirts sold in ...read more
How long is the American Express Data Analyst interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 11 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 100%
View more
American Express Data Analyst Salary
based on 197 salaries
₹11.9 L/yr - ₹20 L/yr
134% more than the average Data Analyst Salary in India
View more details

American Express Data Analyst Reviews and Ratings

based on 21 reviews

3.8/5

Rating in categories

3.2

Skill development

4.4

Work-life balance

4.3

Salary

3.8

Job security

3.8

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 21 Reviews and Ratings
Business Analyst
823 salaries
unlock blur

₹5.8 L/yr - ₹13 L/yr

Assistant Manager
721 salaries
unlock blur

₹20.2 L/yr - ₹36 L/yr

Senior Analyst
677 salaries
unlock blur

₹12.4 L/yr - ₹21 L/yr

Analyst
582 salaries
unlock blur

₹12.2 L/yr - ₹20.5 L/yr

Manager
518 salaries
unlock blur

₹27 L/yr - ₹47 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
write
Share an Interview