Upload Button Icon Add office photos

Filter interviews by

American Express Backend Developer Interview Questions and Answers

Updated 4 Dec 2024

American Express Backend Developer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Coin change problem
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. System design of iot machine
  • Ans. 

    Designing a system for IoT machines involves creating a network that allows devices to communicate and share data.

    • Consider the communication protocols needed for devices to connect and exchange data

    • Implement security measures to protect data and prevent unauthorized access

    • Design a scalable architecture to handle a large number of devices and data

    • Utilize cloud services for storage and processing of IoT data

    • Include edge ...

  • Answered by AI
Round 2 - Coding Test 

Linked list implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Work of system design and scenario based questions

Skills evaluated in this interview

Backend Developer Interview Questions Asked at Other Companies

asked in NoBroker
Q1. Print a Binary Tree in Vertical OrderGiven a binary tree, return ... read more
Q2. Reverse the rows of a matrixAs a part of its annual techno-cultur ... read more
asked in Simpplr
Q3. Print array SumGiven an array of length N, you need to find and p ... read more
Q4. Given 9 ball all of which weigh the same except for one, what is ... read more
asked in Simpplr
Q5. Remove Duplicates From StringYou are given a string (STR) of leng ... read more

Interview questions from similar companies

I applied via Instahyre and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Coding Test 

A hackerrank test was shared which had 2 ques to be solved in 60 min in Node.JS. The first one was a simple DS question related to arrays. The second ques was to write routes and controllers for a Node.JS Express app. The routes were GET /projects, GET /project/:id and GET /projects/active

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is the difference between package and package-lock.json?
  • Ans. 

    package.json lists dependencies and package-lock.json ensures consistent installs.

    • package.json lists all the dependencies required for the project

    • package-lock.json ensures that the same versions of dependencies are installed across all environments

    • package.json is manually edited while package-lock.json is generated automatically

    • package-lock.json is used for reproducible builds

  • Answered by AI
  • Q2. Write a function that can keep a count of certain functions in our application.
  • Ans. 

    Function to count certain functions in the application

    • Create a dictionary to store the count of each function

    • Increment the count of the function each time it is called

    • Include a reset function to reset the count of all functions

    • Example: def count_functions(): function_count = {}

    • Example: def function1(): function_count['function1'] += 1

    • Example: def reset_count(): function_count.clear()

  • Answered by AI
  • Q3. How can we make sure that package versions are taken from package-lock.json and not package.json
  • Ans. 

    To ensure package versions are taken from package-lock.json, use npm ci instead of npm install.

    • npm ci installs packages based on package-lock.json

    • npm install may update package versions in package.json

    • Always commit package-lock.json to version control

  • Answered by AI
  • Q4. Create an object and write a function inside it.
  • Ans. 

    Creating an object with a function inside it.

    • Create an object using object literal notation

    • Define a function inside the object using function expression or declaration

    • Access the function using object.method() syntax

  • Answered by AI
  • Q5. Given an array that has stock prices from morning till afternoon. Return the best buy and sell price to gain the max profit. For example, input -> [2,5,8,1,3,6,9,3,6], output -> [1,9]

Interview Preparation Tips

Topics to prepare for Morgan Stanley Backend Developer interview:
  • Node.Js
Interview preparation tips for other job seekers - The questions asked were very basic in Node.JS and mostly a working code/solution was expected and to be able to answer why something works.

Skills evaluated in this interview

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

(1 Question)

  • Q1. 1. Insertion in LL 2. Java core
Round 2 - Technical 

(1 Question)

  • Q1. 1. Project related question of internship 2. Python libraries

I applied via Recruitment Consulltant and was interviewed in Mar 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Hacker Renk test with coding problems, need to pass it

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concepts in detail
  • Ans. 

    Object-oriented programming concepts that help in creating modular and reusable code.

    • Abstraction - hiding implementation details

    • Encapsulation - binding data and functions together

    • Inheritance - creating new classes from existing ones

    • Polymorphism - using a single interface to represent multiple types

    • Composition - combining objects to create more complex ones

  • Answered by AI
  • Q2. Oops concepts in technology, design patterns
  • Ans. 

    Object-oriented programming concepts and reusable solutions for common problems.

    • Encapsulation, inheritance, and polymorphism are key OOP concepts.

    • Design patterns provide reusable solutions for common programming problems.

    • Examples of design patterns include Singleton, Factory, and Observer.

    • Understanding OOP and design patterns can lead to more efficient and maintainable code.

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Manager round managerial qualities
  • Q2. Work management related questions
Round 4 - HR 

(1 Question)

  • Q1. General plus salary discussions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep techincal knowledge updated and brush up all concepts

Skills evaluated in this interview

I applied via Instahyre and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Coding Test 

A hackerrank test was shared which had 2 ques to be solved in 60 min in Node.JS. The first one was a simple DS question related to arrays. The second ques was to write routes and controllers for a Node.JS Express app. The routes were GET /projects, GET /project/:id and GET /projects/active

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is the difference between package and package-lock.json?
  • Ans. 

    package.json lists dependencies and package-lock.json ensures consistent installs.

    • package.json lists all the dependencies required for the project

    • package-lock.json ensures that the same versions of dependencies are installed across all environments

    • package.json is manually edited while package-lock.json is generated automatically

    • package-lock.json is used for reproducible builds

  • Answered by AI
  • Q2. Write a function that can keep a count of certain functions in our application.
  • Ans. 

    Function to count certain functions in the application

    • Create a dictionary to store the count of each function

    • Increment the count of the function each time it is called

    • Include a reset function to reset the count of all functions

    • Example: def count_functions(): function_count = {}

    • Example: def function1(): function_count['function1'] += 1

    • Example: def reset_count(): function_count.clear()

  • Answered by AI
  • Q3. How can we make sure that package versions are taken from package-lock.json and not package.json
  • Ans. 

    To ensure package versions are taken from package-lock.json, use npm ci instead of npm install.

    • npm ci installs packages based on package-lock.json

    • npm install may update package versions in package.json

    • Always commit package-lock.json to version control

  • Answered by AI
  • Q4. Create an object and write a function inside it.
  • Ans. 

    Creating an object with a function inside it.

    • Create an object using object literal notation

    • Define a function inside the object using function expression or declaration

    • Access the function using object.method() syntax

  • Answered by AI
  • Q5. Given an array that has stock prices from morning till afternoon. Return the best buy and sell price to gain the max profit. For example, input -> [2,5,8,1,3,6,9,3,6], output -> [1,9]

Interview Preparation Tips

Topics to prepare for Morgan Stanley Backend Developer interview:
  • Node.Js
Interview preparation tips for other job seekers - The questions asked were very basic in Node.JS and mostly a working code/solution was expected and to be able to answer why something works.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Apr 2021. There were 6 interview rounds.

Round 1 - Coding Test 

90 mins 10 -15 questions on database sql queries

Round 2 - Technical 

(1 Question)

  • Q1. Related the data-warehouse & ETL related questions
Round 3 - Technical 

(1 Question)

  • Q1. Sql queries & scenarios based questions
Round 4 - Technical 

(1 Question)

  • Q1. Client facing questions and real - time questions related to problem like speed , etl optimisation & optimised sql queries , SCD types , techniques to load the huge data in quicker way
Round 5 - One-on-one 

(1 Question)

  • Q1. It was 1 hour 30 mins round which was personality check and the questions was related to how you handle things in professional way .
Round 6 - HR 

(3 Questions)

  • Q1. What are your strengths and weaknesses?
  • Ans. 

    My strengths include strong problem-solving skills and attention to detail. My weaknesses include a tendency to overthink and a lack of experience in certain technologies.

    • Strength: Strong problem-solving skills

    • Strength: Attention to detail

    • Weakness: Tendency to overthink

    • Weakness: Lack of experience in certain technologies

  • Answered by AI
  • Q2. What are your salary expectations?
  • Ans. 

    I would expect a competitive salary based on my experience, skills, and the responsibilities of the role.

    • Consider the market rate for Lead Backend Developers in the industry.

    • Take into account your years of experience and expertise in backend development.

    • Factor in the responsibilities and scope of the role.

    • Research salary ranges for similar positions in the company or industry.

    • Be prepared to negotiate and discuss benefi

  • Answered by AI
  • Q3. Why are you looking for a change?
  • Ans. 

    Looking for new challenges and growth opportunities in a dynamic and innovative company.

    • Seeking a more challenging role to further develop my skills and expertise.

    • Interested in working with cutting-edge technologies and staying up-to-date with industry trends.

    • Desire to work in a collaborative and supportive team environment.

    • Want to contribute to the success of a company that aligns with my values and goals.

    • Seeking bett...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For the ETL developers groom your sql writing skills , be good with the data-warehouse concepts & should know the real aspects of concepts . Be smart streak with the answers even though your solutions is not correct give the logical reason for that .

I applied via Referral and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Coding Test 

10 multiple choice questions
2 program writing questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. This an one to one round. Questions are based on oops concepts, design patterns and also writting code.
Round 3 - Bar Raiser 

(1 Question)

  • Q1. This is kind of managerial round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on fundamentals, design patterns, data structures

American Express Interview FAQs

How many rounds are there in American Express Backend Developer interview?
American Express interview process usually has 1-2 rounds. The most common rounds in the American Express interview process are One-on-one Round and Coding Test.
How to prepare for American Express Backend Developer 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 Microservices, Spring Boot, Agile, Core Java and Java.
What are the top questions asked in American Express Backend Developer interview?

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

  1. system design of iot mach...read more
  2. Coin change prob...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 American Express interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

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.4k Interviews
Citicorp Interview Questions
3.7
 • 560 Interviews
Wells Fargo Interview Questions
3.9
 • 554 Interviews
HSBC Group Interview Questions
4.0
 • 488 Interviews
UBS Interview Questions
4.0
 • 334 Interviews
BNY Interview Questions
4.0
 • 332 Interviews
Morgan Stanley Interview Questions
3.7
 • 301 Interviews
View all
Business Analyst
878 salaries
unlock blur

₹10.1 L/yr - ₹17.1 L/yr

Assistant Manager
696 salaries
unlock blur

₹14 L/yr - ₹42 L/yr

Senior Analyst
570 salaries
unlock blur

₹5.3 L/yr - ₹23 L/yr

Analyst
550 salaries
unlock blur

₹12.5 L/yr - ₹28 L/yr

Lead Analyst
546 salaries
unlock blur

₹4 L/yr - ₹13 L/yr

Explore more salaries
Compare American Express with

MasterCard

4.0
Compare

Visa

3.6
Compare

PayPal

3.9
Compare

State Bank of India

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview