Upload Button Icon Add office photos

Filter interviews by

American Express Agile Project Manager Interview Questions and Answers

Updated 13 May 2022

American Express Agile Project Manager Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Standard questions on agile ceremony, dealing with conflicts. Priories
Round 2 - Behavioral 

(2 Questions)

  • Q1. Scenario based questions, Most difficult situation
  • Q2. Maturity assessment, transformation of Agile teams

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for all scenario based questions. HR round is just formality and salary negotiation.

Interview questions from similar companies

Interview experience
4
Good
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 

(4 Questions)

  • Q1. Java difference between Finally, Finalize
  • Ans. 

    Finally is a block of code that always executes, while Finalize is a method used for cleanup before an object is garbage collected.

    • Finally block is used in exception handling to ensure certain code is always executed, regardless of whether an exception is thrown or not.

    • Finalize method is called by the garbage collector before an object is reclaimed.

    • Finally block is used in try-catch-finally blocks, while Finalize metho...

  • Answered by AI
  • Q2. Programming question - Find second largest string from a given sentence
  • Ans. 

    Find the second largest string from a given sentence

    • Split the sentence into an array of strings

    • Sort the array based on string length

    • Return the second last element in the sorted array

  • Answered by AI
  • Q3. Difference between AWS cloud front and cloud formation
  • Ans. 

    AWS CloudFront is a content delivery network (CDN) service, while AWS CloudFormation is an infrastructure as code service.

    • CloudFront is used to deliver content to end users with low latency and high data transfer speeds.

    • CloudFormation is used to automate the deployment of infrastructure resources in a repeatable and predictable manner.

    • CloudFront is a CDN service that caches content at edge locations to reduce latency, ...

  • Answered by AI
  • Q4. How to improve performance in react js ?
  • Ans. 

    To improve performance in React JS, optimize rendering, minimize re-renders, use virtualization, lazy loading, code splitting, and memoization.

    • Optimize rendering by using shouldComponentUpdate or React.memo for functional components

    • Minimize re-renders by using PureComponent or memoization techniques like useMemo or useCallback

    • Use virtualization for long lists or tables to render only the visible items

    • Implement lazy loa...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good experience with interviewer.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 coding question based on DP for 25 minutes and 30 MCQs on Java , OOPS and code snippet questions also some basic questions based on trees like number of leaf nodes in a complete binary tree with n nodes.

Round 2 - Technical 

(3 Questions)

  • Q1. Write code for finding palindrome of a string
  • Ans. 

    Code to find palindrome of a string

    • Iterate through the string from both ends and compare characters

    • Use two pointers, one starting from the beginning and one from the end

    • If characters at both pointers match, continue checking until they meet in the middle

    • If all characters match, the string is a palindrome

  • Answered by AI
  • Q2. What is dynamic memory allocation in Java
  • Ans. 

    Dynamic memory allocation in Java refers to the process of allocating memory for objects at runtime.

    • Dynamic memory allocation allows for objects to be created and destroyed during program execution.

    • The 'new' keyword is used to dynamically allocate memory for objects in Java.

    • Dynamic memory allocation helps in managing memory efficiently by allocating memory only when needed.

    • Example: int[] arr = new int[5]; dynamically a

  • Answered by AI
  • Q3. You are designing an e commerce website which database will you choose and what will you use for authentication given that you can't use JWT or even third party like Google authentication
  • Ans. 

    I would choose a relational database like MySQL and implement a custom authentication system using session management.

    • Choose a relational database like MySQL for storing user data, product information, and orders.

    • Implement a custom authentication system using session management to securely authenticate users without JWT or third-party services.

    • Use encryption techniques to store and validate user passwords securely.

    • Util...

  • Answered by AI

Skills evaluated in this interview

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

Aptitude was very basic.

Round 2 - Technical 

(2 Questions)

  • Q1. What is constant?
  • Ans. 

    A constant is a value that does not change during the execution of a program.

    • Constants are used to store values that remain the same throughout the program.

    • They are declared using the 'const' keyword in many programming languages.

    • Examples include mathematical constants like pi (3.14159) or physical constants like the speed of light (299,792,458 m/s).

  • Answered by AI
  • Q2. What is object oriented programming?
  • Ans. 

    Object oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • Objects are instances of classes, which define the structure and behavior of the objects.

    • Encapsulation, inheritance, and polymorphism are key principles of object oriented programming.

    • Example: Inheritance allows a subclass to inherit attributes and methods from a superclass.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary Negotiation
  • Q2. Work culture description
  • Ans. 

    Our work culture is collaborative, innovative, and focused on continuous learning and growth.

    • Encourages teamwork and open communication

    • Emphasizes creativity and problem-solving

    • Provides opportunities for professional development

    • Values diversity and inclusion

    • Promotes a healthy work-life balance

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackathon Test with 2 medium level coding question.

Round 2 - Coding Test 

Technical Video Interview- Java concepts mostly related to Java 8, 1 coding program and some db questions were asked.

Round 3 - Technical 

(1 Question)

  • Q1. Questions related to System Design.
Round 4 - Behavioral 

(1 Question)

  • Q1. Questions related to my projects . Some questions related to my current role and responsibilities.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic program with stream

Round 2 - Technical 

(2 Questions)

  • Q1. Microservice architecture
  • Q2. Crud operations
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It had 3 questions, the level was medium hardish

Round 2 - Technical 

(1 Question)

  • Q1. There were 3 rounds of interviews, 2 technical and 1 HR, ln First round I was asked about OOPs, 2 medium level DSA questions, asked to write code on paper and explain the approach. Questions: 1. Given an ...
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Put all the zero at the top of the array
  • Ans. 

    Use two-pointer approach to move all zeros to the beginning of the array.

    • Initialize two pointers, one at the beginning and one at the end of the array.

    • Swap elements at the two pointers if the element at the beginning pointer is zero.

    • Move the pointers towards each other until they meet.

  • Answered by AI

Skills evaluated in this interview

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

General apti questions

Round 2 - Group Discussion 

Work-life balance and career progression

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

I applied via Campus Placement and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Which language are you comfortable with and more than 10 questions on that language

American Express Interview FAQs

How many rounds are there in American Express Agile Project Manager interview?
American Express interview process usually has 2 rounds. The most common rounds in the American Express interview process are Technical and Behavioral.
What are the top questions asked in American Express Agile Project Manager interview?

Some of the top questions asked at the American Express Agile Project Manager interview -

  1. Standard questions on agile ceremony, dealing with conflicts. Prior...read more
  2. Maturity assessment, transformation of Agile te...read more
  3. Scenario based questions, Most difficult situat...read more

Tell us how to improve this page.

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
Wells Fargo Interview Questions
3.9
 • 567 Interviews
Citicorp Interview Questions
3.7
 • 567 Interviews
HSBC Group Interview Questions
4.0
 • 490 Interviews
BNY Interview Questions
3.9
 • 339 Interviews
UBS Interview Questions
4.0
 • 338 Interviews
Morgan Stanley Interview Questions
3.7
 • 308 Interviews
View all
Business Analyst
886 salaries
unlock blur

₹9.6 L/yr - ₹17 L/yr

Assistant Manager
709 salaries
unlock blur

₹14 L/yr - ₹42 L/yr

Senior Analyst
583 salaries
unlock blur

₹5.8 L/yr - ₹23.1 L/yr

Analyst
504 salaries
unlock blur

₹12.5 L/yr - ₹27 L/yr

Lead Analyst
490 salaries
unlock blur

₹4 L/yr - ₹13 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