Upload Button Icon Add office photos

Filter interviews by

American Express Software Engineer Intern Trainee Interview Questions and Answers

Updated 14 May 2024

American Express Software Engineer Intern Trainee Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic, but have to be quick

Round 2 - Coding Test 

Easy to Medium, clear all test cases

Round 3 - HR 

(1 Question)

  • Q1. Explain the projects in your resume

Interview questions from similar companies

Round 1 - Coding Test 

Hackerearth round 3 hours

Round 2 - Technical 

(1 Question)

  • Q1. Coderpad round - telephonice interview
Round 3 - HR 

(1 Question)

  • Q1. One on one round at BNY Mellon Pune

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared, also go through fundamental computer science questions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

DP graphs strings it was good

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linkded list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the list, updating pointers to reverse the direction

    • Return the new head of the reversed list

  • Answered by AI
  • Q2. Print fibonacci series
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two variables initialized to 0 and 1

    • Loop through desired number of iterations, adding the previous two numbers to get the next number

    • Print or store each number in the series

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quants, DSA, Logical, Analytical, OS, DBMS

Round 2 - Technical 

(2 Questions)

  • Q1. Please introduce yourself
  • Q2. Why UBS and what excited you
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to the previour project.
Round 2 - Technical 

(1 Question)

  • Q1. Questions related to skill. For PEGA its all concepts that we used in project
Round 3 - Technical 

(1 Question)

  • Q1. Questions were shooted related to all the skills present in the resume.
Round 4 - HR 

(2 Questions)

  • Q1. Compensation related to job. Why are want another job?
  • Q2. Why you are suitable for this job? Why we need to hire you?

Interview Preparation Tips

Topics to prepare for Commonwealth Bank of Australia, India Associate Software Engineer interview:
  • Pega
  • Decisioning
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java 8 features and benefits
  • Ans. 

    Java 8 introduced new features like lambda expressions, streams, and default methods, improving code readability and performance.

    • Lambda expressions allow for more concise code and easier parallel programming.

    • Streams provide a way to work with collections in a functional style, enabling easier processing of large data sets.

    • Default methods allow interfaces to have method implementations, reducing the need for abstract cl...

  • 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

I applied via Naukri.com and was interviewed in Oct 2022. There were 2 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 - Technical 

(4 Questions)

  • Q1. 1. Question on Projects, Job, Contribution.
  • Q2. Javascript : closures, promise
  • Q3. Guess Output based questions
  • Q4. Coding : Given array and target, find the index pair of elements the sum becomes target
  • Ans. 

    Given an array and target, find the index pair of elements the sum becomes target.

    • Use a hash table to store the difference between target and current element

    • Check if the difference exists in the hash table

    • Return the indices of the current element and the difference

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Project bases questions, Core Concepts(with examples and senarios) and Coding question

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on Core and advance Java like Collections, Java8, streams, Multithreading, Spring Boot concepts like annotations, security, codes and Microservices, Agile.
Round 2 - Technical 

(1 Question)

  • Q1. Technical + Managerial Round Technical questions on Java Spring Boot and Microservices. Managerial round questions as well.
Round 3 - HR 

(5 Questions)

  • Q1. Tell me about yourself.
  • Q2. Why are you looking for a change?
  • Q3. What are your salary expectations?
  • Q4. Share details of your previous job.
  • Q5. This was also the salary discuss round.

Interview Preparation Tips

Topics to prepare for Citicorp Senior Software Engineer interview:
  • Java
  • Core Java
  • Microservices
  • Spring Boot
  • Agile
Interview preparation tips for other job seekers - Keep the basic concepts upto date and clear.

I applied via Referral and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. Basic Java concepts like abstraction, JDK 1.8 architecture brief overview.
  • Q2. What is weak reference? garbage collection in case of such references?
  • Ans. 

    Weak reference is a reference that does not prevent the object from being garbage collected.

    • Weak references are used to refer to objects that can be garbage collected if there are no strong references to them.

    • They are typically used in scenarios where you want to hold a reference to an object, but don't want to prevent it from being collected.

    • Weak references are implemented using weak reference queues, which allow you ...

  • Answered by AI
  • Q3. Implementation of singleton pattern and ways of breaking it? singleton pattern implementation in a multithreaded environment?
  • Ans. 

    Singleton pattern ensures a class has only one instance, while allowing global access to it.

    • Implement a private constructor to prevent direct instantiation.

    • Create a static method to provide a single point of access to the instance.

    • Use lazy initialization to create the instance only when needed.

    • Ensure thread safety in a multithreaded environment using synchronization or double-checked locking.

    • Breaking the singleton patt...

  • Answered by AI
  • Q4. Annotations : @Component vs @service, @Controller vs @RESTController, @Configuration, @Transactional
  • Ans. 

    Annotations used in Spring Framework for defining components and services.

    • Annotations like @Component, @Service, and @Controller are used for defining components in Spring Framework.

    • @RestController is used for defining RESTful web services.

    • @Configuration is used for defining configuration classes.

    • @Transactional is used for defining transactional methods.

    • All these annotations help in defining and managing dependencies i

  • Answered by AI
  • Q5. Internal implementation of HashSet? Which scenario will generate same hashcode for a HashMap?
  • Ans. 

    HashSet is implemented using a HashMap internally. Same hashcode is generated when two objects have the same value for hashCode() and equals() methods.

    • HashSet internally uses a HashMap to store its elements.

    • The hashcode of an object is generated using the hashCode() method.

    • If two objects have the same value for hashCode() and equals() methods, they will generate the same hashcode.

    • For example, if two String objects have...

  • Answered by AI
  • Q6. What is SQL Cursor? Index? Aggregate Functions examples?
  • Ans. 

    SQL Cursor is a database object used to manipulate data row by row.

    • Cursor is used to fetch and process data row by row

    • Index is a database object used to speed up data retrieval

    • Aggregate functions are used to perform calculations on a set of values

    • Examples of aggregate functions are SUM, AVG, COUNT, MAX, MIN

  • Answered by AI
  • Q7. Basic Java programming question:- Generate palindrome string inputs for the program are length of the string and number of distinct characters. If n=5 & k=2 output = ababa/zzdzz/rerer. If n=7 & k=3 output=...
  • Ans. 

    Generate palindrome string with given length and distinct characters.

    • Create a char array of length n and fill it with distinct characters.

    • Loop through the array and add the characters in reverse order to create a palindrome.

    • Repeat the process until the required number of palindromes are generated.

    • If k is less than the length of the palindrome, use the first k distinct characters.

  • Answered by AI
  • Q8. Given an array with length n , find highest value which occurs same number of times within the array. [3,8,3,2,1,3,2] 3 occurs 3 times output=3. [4,6,7,6,7,5,4,2,4,9,4,1,9] 4 occurs 3 times output=4
  • Ans. 

    Find the highest value that occurs the same number of times within an array.

    • Iterate through the array and count the occurrences of each value.

    • Store the counts in a dictionary or hash map.

    • Find the maximum count and check which value(s) have that count.

    • Return the highest value among those with the maximum count.

  • Answered by AI
  • Q9. Find number of occurrences of a character in string. Provide multiple approaches for the solution and choose the best why? For "string aabcadd output=a3b1c1d2
  • Ans. 

    Count occurrences of a character in a string and output in a specific format.

    • Use a hash table to store the count of each character.

    • Loop through the string and update the count in the hash table.

    • Create the output string using the hash table.

  • Answered by AI
  • Q10. Convert String from Camel case to Snake case
  • Ans. 

    Converts a string from Camel case to Snake case.

    • Loop through the string and check for uppercase letters

    • Insert an underscore before each uppercase letter

    • Convert the string to lowercase

  • Answered by AI
  • Q11. Given a class @Data class Account{String name; String acctBalance;}. Write logic to get Map using Stream API which shows the balance of each person i,e, key will be the name of the account holder and valu...
  • Ans. 

    Logic to get Map using Stream API to show balance of each person

    • Use Stream API to group accounts by name

    • Use map() to get the sum of balances for each group

    • Collect the results into a Map

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Marvelous interview experience. Although it was 7 rounds of process, each interviewer was best at his/her way.
Initial 2 rounds of interview will bring blood out of your veins , later rounds will bring a little pumping.

Skills evaluated in this interview

American Express Interview FAQs

How many rounds are there in American Express Software Engineer Intern Trainee interview?
American Express interview process usually has 3 rounds. The most common rounds in the American Express interview process are Aptitude Test, Coding Test and HR.

Tell us how to improve this page.

American Express Software Engineer Intern Trainee Interview Process

based on 1 interview

Interview experience

4
  
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
Wells Fargo Interview Questions
3.9
 • 563 Interviews
Citicorp Interview Questions
3.7
 • 563 Interviews
HSBC Group Interview Questions
4.0
 • 490 Interviews
UBS Interview Questions
4.0
 • 337 Interviews
BNY Interview Questions
3.9
 • 337 Interviews
Morgan Stanley Interview Questions
3.7
 • 306 Interviews
View all
Business Analyst
872 salaries
unlock blur

₹9.7 L/yr - ₹17 L/yr

Assistant Manager
712 salaries
unlock blur

₹14 L/yr - ₹42 L/yr

Senior Analyst
586 salaries
unlock blur

₹5.9 L/yr - ₹23 L/yr

Analyst
498 salaries
unlock blur

₹12.5 L/yr - ₹27 L/yr

Lead Analyst
496 salaries
unlock blur

₹4 L/yr - ₹13 L/yr

Explore more salaries
Compare American Express with

MasterCard

4.0
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