Upload Button Icon Add office photos

Filter interviews by

American Express SDE (Software Development Engineer) Interview Questions and Answers

Updated 26 Aug 2021

American Express SDE (Software Development Engineer) Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a software engineer with experience in developing web applications using various programming languages and frameworks.

    • Proficient in Java, Python, and JavaScript

    • Experience with front-end development using HTML, CSS, and React

    • Familiar with Agile development methodologies

    • Strong problem-solving and analytical skills

    • Worked on projects involving database management and API integration

  • Answered by AI
  • Q2. What you expect from amex
  • Ans. 

    I expect Amex to provide a challenging and collaborative work environment with opportunities for growth and learning.

    • Opportunities for professional development

    • Collaborative work culture

    • Challenging projects

    • Clear communication and feedback

    • Competitive compensation and benefits

  • Answered by AI
  • Q3. How sort function works in cpp
  • Ans. 

    Sort function in C++ sorts elements in an array in ascending or descending order.

    • The sort function is part of the library in C++.

    • It takes two iterators as arguments, representing the beginning and end of the array to be sorted.

    • By default, it sorts the array in ascending order, but a custom comparison function can be provided to sort in descending order.

    • The time complexity of the sort function is O(n log n).

Answered by AI
  • Q4. Tell me about your project
  • Ans. 

    Developed a web application for online shopping

    • Used HTML, CSS, and JavaScript for front-end development

    • Implemented a responsive design to ensure compatibility across different devices

    • Utilized PHP and MySQL for back-end development

    • Implemented user authentication and authorization for secure access

    • Integrated payment gateway for seamless online transactions

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be aware of your resume and keep track of what you are saying there.

    Skills evaluated in this interview

    Interview questions from similar companies

    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    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 

    Dynamic programming and trees topics are asked mostly

    Round 3 - Technical 

    (2 Questions)

    • Q1. It was 24 hrs long hackathon where we need to develop web projects based on problem statement.
    • Q2. There is an option of our choice on which technology we can develop

    Interview Preparation Tips

    Interview preparation tips for other job seekers - prepare well for coding test then we need to be good at web development skills
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    4-6 weeks
    Result
    Not Selected

    I applied via Company Website and was interviewed in Jun 2022. There were 5 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 - Aptitude Test 

    It was all basics, u can cover it in at Max 10 days.

    Round 3 - Coding Test 

    Prepare DSA well and also having CP experience gives an edge.

    Round 4 - Technical 

    (2 Questions)

    • Q1. Asked about the things mention in resume.
    • Q2. Prepare what u had mentioned in resume.
    Round 5 - HR 

    (1 Question)

    • Q1. Tell me about Yourself and other general stuff...

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare DSA and core subjects.
    Also be prepare to explain everything related to project u had done.

    I applied via Campus Placement and was interviewed before Jan 2021. 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 - One-on-one 

    (1 Question)

    • Q1. Most of the questions were centred around Derivatives and Fixed Income Securities

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Have a sound knowledge in Financial and Economics oriented topics.

    I applied via Referral and was interviewed before Sep 2020. There were 3 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Questions related to Python, my former organisation, why do you want to shift, questions related to different types of risk

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Please be on time and well dressed
    Communication must be good
    Answer questions if you can, if you don’t know just accept you don’t know

    I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Basic accounting questions, knowledge testing of Finance and Financial Statements.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be confident and don't speak lie.

    I applied via Campus Placement and was interviewed before Oct 2020. There were 5 interview rounds.

    Interview Questionnaire 

    2 Questions

    • Q1. Have you ever worked in a team and how did you manage conflicts?
    • Ans. Gave an example of an academic group project and explained in detail the conflict or clash of ideas and how we approached towards an agreement
    • Answered Anonymously
    • Q2. Why finance?
    • Ans. Natural skills of analysis and interest towards numbers. Love to deal anything involving money or resource management
    • Answered Anonymously

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be natural and your own true self. If your natural skills are inclined towards the requirements, you will be hired or you will know where you have to improve.

    I applied via Naukri.com and was interviewed before Oct 2020. There was 1 interview round.

    Interview Questionnaire 

    3 Questions

    • Q1. Tell me about yourself
    • Q2. Question realted to final year project
    • Q3. Why Morgan Stanley and what do you know about our company?

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Read the job description and know the job role as the interview questions are related to it.

    Interview Preparation Tips

    Round: Technical Interview
    Experience: Technical on paper test questions:(dis was only for 12 among d 26 shortlisted ppl after apti...others directly had interviews)
    5 wer selected in this test who wer nw sent for interviews
    TECHNICAL INTERVIEW: (pls list the questions asked in all the rounds)
    26 shortlisted after apti (14 directly for interviews & 12 had one more technical on paper test...mentioned above)
    der wer min 2 technical rounds for each of them...max were 5

    - You are given course dependencies
    A->B,C
    B->D
    C->A
    D->nothing
    The above dependencies mean...if you want to take course A...you should take courses B and C first....To take B,Course D must be taken first....D is an independent course and can be taken without any prior requirements.
    Now you are told these dependencies.Come up with an appropriate data structure to represent these dependencies.Then write a code that finds out all the courses that the student can take up...in this case the student can first take course D because its independent.Now that course D has been taken he can next take up B as it depends on B alone...But the courses A and C can never be taken because they depend on each other...So here all the courses that can be taken are B and D.
    After i wrote the code....he asked for all possible test cases
    -Given an array of length N....It can be filled with nos. only from 1 to N....find which nos are repeated in the array
    -Given pointers to two nodes in a binary tree....find their least common ancestor...each node has pointer to only the parent node...not the left and right child..
    -In a binary tree(Not necessarily a BST)...suppose the weight of any node is defined as the product of the key value of the node and the level of the node(Root at level 1)...find the node with maximum weight in the binary tree
    -A sorted array of size n is right circularly rotated k times and this rotated array is given to you as input...Find out the value of k in log n time .
    -There are some processes running at time T....and there are processes running at time T+30.
    You have to find out
    1)Which processes died at time T+30,which were alive at time T
    2)Which are the new processes at time T+30,which were not there at time T
    3)Which are the processes that were there at time T and are still running at time T+30
    What data structure will you use to represent the process lists and write code to find out the answers to the 3 questions above
    -Given a binary search tree...and a target sum...starting at the root...which all paths add up to the target sum?...if there are multiple paths....return the path with least no. of nodes.


    College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

    I appeared for an interview before Jun 2016.

    Interview Preparation Tips

    Round: Test
    Experience: 30 questions, 30

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    Wells Fargo Interview Questions
    3.8
     • 588 Interviews
    Citicorp Interview Questions
    3.7
     • 575 Interviews
    HSBC Group Interview Questions
    3.9
     • 492 Interviews
    BNY Interview Questions
    3.8
     • 353 Interviews
    UBS Interview Questions
    3.9
     • 339 Interviews
    Morgan Stanley Interview Questions
    3.6
     • 294 Interviews
    FactSet Interview Questions
    3.9
     • 210 Interviews
    View all
    American Express SDE (Software Development Engineer) Salary
    based on 12 salaries
    ₹10 L/yr - ₹22 L/yr
    44% less than the average SDE (Software Development Engineer) Salary in India
    View more details
    Business Analyst
    812 salaries
    unlock blur

    ₹9.5 L/yr - ₹16.8 L/yr

    Assistant Manager
    701 salaries
    unlock blur

    ₹14.5 L/yr - ₹42 L/yr

    Analyst
    622 salaries
    unlock blur

    ₹12.4 L/yr - ₹27 L/yr

    Senior Analyst
    604 salaries
    unlock blur

    ₹6 L/yr - ₹24.7 L/yr

    Lead Analyst
    494 salaries
    unlock blur

    ₹4.2 L/yr - ₹13 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
    Did you find this page helpful?
    Yes No
    write
    Share an Interview