Upload Button Icon Add office photos

Filter interviews by

American Express SDE-2 Interview Questions and Answers for Freshers

Updated 21 May 2022

American Express SDE-2 Interview Experiences for Freshers

1 interview found

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 21 May 2022

I was interviewed in Jan 2022.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It was a L1 technical round where questions from DS algo were asked, along with my work exp and projects. It was a face to face video round with 2 panel members

  • Q1. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. 

    Count the number of islands in a 2D matrix of 1s and 0s.

    • Use Depth First Search (DFS) or Breadth First Search (BFS) to traverse the matrix and identify connected groups of 1s.

    • Maintain a visited array to keep track of visited cells to avoid revisiting them.

    • Increment the island count each time a new island is encountered.

    • Consider all eight possible directions for connectivity between cells.

    • Handle edge cases like out of bo

  • Answered by AI
  • Q2. How can you prevent the breaking of the singleton pattern using reflections?
  • Ans. 

    Prevent breaking singleton pattern using reflections by throwing an exception in the private constructor.

    • Throw an exception in the private constructor if an instance already exists.

    • Use a flag to track if an instance has been created and throw an exception if an attempt is made to create another instance.

    • Use enums to create a singleton to prevent reflection attacks.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

It was a System design round and the interviewer was very friendly, he gave ample hints and it was a productive interaction.

  • Q1. Design an LRU (Least Recently Used) cache.
  • Ans. 

    Design an LRU cache to store and retrieve data based on least recently used policy.

    • Use a doubly linked list to keep track of the order of usage of the cache entries.

    • Maintain a hash map to quickly access the cache entries based on their keys.

    • When a new entry is accessed, move it to the front of the linked list to mark it as the most recently used.

    • If the cache is full, remove the least recently used entry from the end of...

  • Answered by AI
Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Easy

It was a standard manager where I was asked many questions related to my work exp and behavioural questions

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from IIIT,BBSR. I applied for the job as SDE - 2 in GurgaonEligibility criteriaNoAmerican Express interview preparation:Topics to prepare for the interview - Data Structures, OOPS, System Design, Java, DatabaseTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on Core Java and development 
Tip 2 : Practise easy -medium questions

Application resume tips for other job seekers

Tip 1 : Projects should be well defined use bullet points
Tip 2 : Describe your work ex/ intern exp well

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. About yourself?
  • Ans. List of companies I worked with and experiences in various domains I had
  • Answered by Atul Byale
  • Q2. Tell me about architecture followed in your project
  • Ans. I told them what was entry point to microservices architecture project different layer what was direct API or you can say API gateway what all are there what all features of microservices are there what was the database getting interacting with houses services where configured how the services were communicating with each other what was the configuration server what was the Repo and
  • Answered by Atul Byale

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for design interview with lld and hld
Tell me more about yourself focus on the Technologies you work on
Prepare from Core Java, right from hashcode and equals method to collecti ons and concurrency

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

Round 1 - Coding Test 

Assignment was given which was to be completed in a weeks time.

Round 2 - HR 

(2 Questions)

  • Q1. Expected CTC and other basic details
  • Q2. Willing to relocate to the company location

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to the basics and prepare according to JD, ask if you have any doubts during interview.

SDE-2 Interview Questions & Answers

PayPal user image Anonymous

posted on 17 May 2022

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

There will be 2 coding questions easy to medium based on DP and linkedlist.

  • Q1. 

    Count Ways To Reach The N-th Stair Problem Statement

    You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. ...

  • Ans. 

    The problem involves finding the number of distinct ways to climb to the N-th stair by taking one or two steps at a time.

    • Use dynamic programming to solve this problem efficiently.

    • The number of ways to reach the N-th stair is the sum of the number of ways to reach the (N-1)th stair and the (N-2)th stair.

    • Handle large inputs by taking modulo 10^9+7 of the result.

    • Example: For N=3, there are 3 ways to climb to the third sta

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

the questions will be be based on trees, linked list and stacks and queues, DP

  • Q1. 

    Left View of a Binary Tree

    Given a binary tree, your task is to print the left view of the tree. The left view of a binary tree contains the nodes visible when the tree is viewed from the left side.

    Inpu...

  • Ans. 

    The task is to print the left view of a binary tree, which contains the nodes visible when the tree is viewed from the left side.

    • Traverse the tree level by level and keep track of the leftmost node at each level

    • Use a queue for level order traversal and a map to store the leftmost nodes

    • Print the values of the leftmost nodes stored in the map as the left view of the tree

  • Answered by AI
  • Q2. 

    Next Greater Element Problem Statement

    You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater ele...

  • Ans. 

    The task is to find the next greater element for each element in an array to its right, if no greater element exists, return -1.

    • Use a stack to keep track of elements for which the next greater element is not found yet.

    • Iterate through the array from right to left and pop elements from the stack until a greater element is found.

    • Store the next greater element for each element in a separate array.

    • If the stack is empty afte...

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

(DSA, work experience and personal projects)

  • Q1. 

    Problem: Sort an Array of 0s, 1s, and 2s

    Given an array/list ARR consisting of integers where each element is either 0, 1, or 2, your task is to sort this array in increasing order.

    Input:

    The input sta...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in increasing order.

    • Use a three-pointer approach to partition the array into sections of 0s, 1s, and 2s.

    • Iterate through the array and swap elements based on their values to achieve the sorting.

    • Time complexity should be O(N) where N is the number of elements in the array.

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It started in the afternoon after the lunch.

  • Q1. You will be given certain conditions for which you need to design a system. Can you explain your approach to low-level system design?
  • Ans. 

    Approach to low-level system design involves understanding requirements, breaking down components, defining interfaces, and optimizing performance.

    • Understand the requirements and constraints of the system

    • Break down the system into smaller components/modules

    • Define clear interfaces between components for communication

    • Optimize performance by considering data structures, algorithms, and resource utilization

  • Answered by AI
Round 5 - HR 

(1 Question)

Round duration - 25 minutes
Round difficulty - Easy

Once all the rounds were cleared. I was told that i have 1 more round with manager.

  • Q1. How do you handle critical situations in a workplace?
  • Ans. 

    I remain calm, assess the situation, prioritize tasks, communicate effectively, and collaborate with team members to find a solution.

    • Remain calm and composed under pressure

    • Assess the situation to understand the root cause

    • Prioritize tasks based on urgency and impact

    • Communicate effectively with team members and stakeholders

    • Collaborate with team members to brainstorm and implement solutions

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Babu Banarasi Das University. I applied for the job as SDE - 2 in ChennaiEligibility criteria2 years of experience.Paypal interview preparation:Topics to prepare for the interview - Arrays, Hashmap, String, LinkedList, Stacks and queues, recursion, DP, Backtracking, graphTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : If you are good with any programming Language(Java and C++ preferred but again its your choice) start with DSA directly. Learn the basic Arrays, Linked List, Stacks, Queues, Trees, Hashing, Graphs, Dynamic programming, Heaps, searching and sorting. (PS:-Courses and resources i will not mention as there are many materials available just choose the one you like and start preparing!!)

Tip 2 : Once you feel OK start practising problems try to solve by yourself, if not take hints, and at the end you can check solution if still unsolved.

Tip 3 : Try to connect with people on linkedin. Try to know the techstacks and try to get referrals. Keep on applying once feel ready 80% because you are never 100% ready for anything.

Application resume tips for other job seekers

Tip 1 : Keep your resume updated with all the tech stacks you worked on, your projects, your latest experience.
Tip 2 : The resume need to be short and crisp. it takes only a min. For HR to read your resume. and align it with job requirement.

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

PayPal user image Anonymous

posted on 21 May 2022

I was interviewed before May 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

Problem-solving round in javascript.
Asked me questions of easy to medium level data structures and algorithm.

  • Q1. 

    Similar String Groups Problem Statement

    Two strings S1 and S2 are considered similar if either S1 equals S2 or we can swap two letters of S1 at different positions so that it equals S2.

    Input:

    The first...
  • Ans. 

    The problem involves determining the number of similar string groups in a given list of strings based on a specific criteria.

    • Iterate through each pair of strings in the list and check if they are similar based on the given criteria.

    • Use a hash set to keep track of visited strings to avoid counting duplicates in the same group.

    • Consider implementing a function to check if two strings are similar by allowing at most one sw...

  • Answered by AI
Round 2 - Video Call 

Round duration - 50 minutes
Round difficulty - Medium

Javascrip specific questions

Round 3 - HR 

Round duration - 50 minutes
Round difficulty - Easy

Focussed on behavioural aptitude

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BangaloreEligibility criteriaNo criteriaPaypal interview preparation:Topics to prepare for the interview - JavaScript, ReactJS, Redux, DS, Algorithms.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare the concepts of JavaScript and react thoroughly
Tip 2 : Practice using projects
Tip 3 : Practice data structure and algorithms and practice there questions

Application resume tips for other job seekers

Tip 1 : Use keywords in technologies where you want to be shortlisted in
Tip 2 : Do not put false things in your resume

Final outcome of the interviewSelected

SDE-2 Interview Questions & Answers

PayPal user image Anonymous

posted on 25 May 2022

I was interviewed in May 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Medium

There were 2 coding questions. One was easy to medium difficult and other was of medium difficulty.

  • Q1. 

    Sum Queries in a Sorted Array

    Given two arrays arr and queries, your task is to determine the sum of all elements in arr that are less than or equal to each element in queries. The array arr is provided i...

  • Ans. 

    Find sum of elements in a sorted array less than or equal to each element in queries.

    • Iterate through queries and for each query, find the sum of elements in arr less than or equal to the query element.

    • Use binary search to efficiently find the index of the last element less than or equal to the query element.

    • Keep track of cumulative sum while iterating through arr to avoid recalculating sums.

    • Return the list of sums for

  • Answered by AI
  • Q2. 

    Find K Closest Elements

    Given a sorted array 'A' of length 'N', and two integers 'K' and 'X', your task is to find 'K' integers from the array closest to 'X'. If two integers are at the same distance, pre...

  • Ans. 

    Given a sorted array, find K integers closest to X, preferring smaller ones in case of same distance.

    • Use binary search to find the closest element to X in the array.

    • Maintain two pointers to expand around the closest element to find K closest elements.

    • Compare distances and values to select the K closest elements, preferring smaller ones if distances are equal.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Reverse Only Letters Problem Statement

    You are given a string S. The task is to reverse the letters of the string while keeping non-alphabet characters in their original position.

    Example:

    Input:
    S = "...
  • Ans. 

    Reverse the letters of a string while keeping non-alphabet characters in their original position.

    • Iterate through the string and store the non-alphabet characters in their original positions.

    • Reverse the letters of the string using two pointers approach.

    • Combine the reversed letters with the non-alphabet characters to get the final reversed string.

  • Answered by AI
  • Q2. 

    Find The Sum Of The Left Leaves Problem Statement

    Given a binary tree with ‘root’, your task is to find and return the sum of all the left leaf nodes.

    Example:

    Input:
    1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1...
  • Ans. 

    Find and return the sum of all the left leaf nodes in a binary tree.

    • Traverse the binary tree using depth-first search (DFS)

    • Check if a node is a leaf node and a left child

    • Sum up the values of all left leaf nodes

  • Answered by AI
Round 3 - Video Call 

Round duration - 60 Minutes
Round difficulty - Easy

Questions related to Java, OOPs, SQL etc. 

Round 4 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

It was an HR round.Questions related to resume, Low level design, work experience, behavioural etc. This round stretched more than scheduled time so another round was scheduled which was again a DSA based technical round.

Round 5 - Video Call 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 3 problems. easy, medium and hard.

  • Q1. 

    Median of Two Sorted Arrays

    Given two sorted arrays A and B of sizes N and M, find the median of the merged array formed by combining arrays A and B. If the total number of elements, N + M, is even, the m...

  • Ans. 

    Find the median of two sorted arrays by merging them and calculating the median of the combined array.

    • Merge the two sorted arrays into one sorted array.

    • Calculate the median of the combined array based on the total number of elements.

    • Return the median as the result.

  • Answered by AI
  • Q2. 

    Palindrome Checker Problem Statement

    Given an alphabetical string S, determine whether it is a palindrome or not. A palindrome is a string that reads the same backward as forward.

    Input:

    The first line ...
  • Ans. 

    Check if a given string is a palindrome or not.

    • Iterate through the string from both ends and compare characters.

    • If all characters match, return 1 indicating a palindrome.

    • If any characters don't match, return 0 indicating not a palindrome.

  • Answered by AI
  • Q3. 

    Minimum Character Deletion Problem Statement

    You have been provided a string STR. Your task is to find and return the minimum number of characters that need to be deleted from STR so that each character's...

  • Ans. 

    Find the minimum number of character deletions needed to make each character's frequency unique in a given string.

    • Iterate through the string and count the frequency of each character.

    • Identify characters with the same frequency and calculate the minimum deletions needed to make them unique.

    • Return the total minimum deletions for each test case.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Mechanical Engineering from King Khalid University. I applied for the job as SDE - 2 in BengaluruEligibility criteriaNo CirteriaPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating System, DBMS, Computer Network, OOPS, System Design (HLD/LLD)Time required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Daily. Consistency is the key
Tip 2 : Try to do at least 5 questions daily (LC, gfg, etc any platform u are comfortable with)
Tip 3 : Have some projects on resume related to the tech stack you want to work with.

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Be prepared with in depth questions on whatever is written on resume

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

PayPal user image Anonymous

posted on 4 Aug 2024

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

I applied via Referral and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Had questions on graph

Round 2 - Technical 

(1 Question)

  • Q1. Binary Search leftmost rightmost
Round 3 - Technical 

(1 Question)

  • Q1. Monotonic stack question
Round 4 - Technical 

(1 Question)

  • Q1. System design round, discussed subscriber publisher design pattern

I was interviewed in Mar 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 80 minutes
Round difficulty - Medium

  • Q1. 

    Longest Increasing Path in Matrix Problem Statement

    Given a 2-D matrix mat with 'N' rows and 'M' columns, where each element at position (i, j) is mat[i][j], determine the length of the longest increasing...

  • Ans. 

    The problem involves finding the length of the longest increasing path in a 2-D matrix starting from a given cell.

    • Use dynamic programming to keep track of the longest increasing path starting from each cell.

    • Implement a recursive function to explore all possible paths from a cell.

    • Update the length of the longest path for each cell based on the maximum path length from its neighbors.

    • Consider edge cases such as boundary c...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Hard

It was purely Data Structures and Maths.

  • Q1. 

    Arithmetic Progression Queries Problem Statement

    Given an integer array ARR of size N, perform the following operations:

    - update(l, r, val): Add (val + i) to arr[l + i] for all 0 ≤ i ≤ r - l.

    - rangeSu...

  • Ans. 

    Implement update and rangeSum operations on an integer array based on given queries.

    • Implement update(l, r, val) by adding (val + i) to arr[l + i] for all i in range (0, r - l).

    • Implement rangeSum(l, r) to return the sum of elements in the array from index l to r.

    • Handle queries using 1-based indexing.

    • Ensure constraints are met for input values.

    • Output the sum of arr[l..r] for each rangeSum operation.

  • Answered by AI
Round 3 - Video Call 

Round duration - 70 Minutes
Round difficulty - Easy

Round 4 - Coding Test 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

  • Q1. 

    Pattern Matching Problem Statement

    Given a pattern as a string and a set of words, determine if the pattern and the words list align in the same sequence.

    Input:
    T (number of test cases)
    For each test ca...
  • Ans. 

    The problem involves determining if a given pattern aligns with a list of words in the same sequence.

    • Iterate through the pattern and words list simultaneously to check for matching sequences.

    • Use a hashmap to store the mapping between characters in the pattern and words in the list.

    • Compare the mappings to determine if the pattern and words align in the same sequence.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Maharaja Surajmal Institute Of Technology. I applied for the job as SDE - 2 in MumbaiEligibility criteriaNoJPMorgan Chase & Co. interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, Probability, System Design, Project (thoroughly).Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : I solved Interviewbit mostly
Tip 2 : Revised my Coding Ninjas Course 
Tip 3 : Created One Project (Helped me a lot during Design Interview )

Application resume tips for other job seekers

Tip 1 : I have done some internship as a Software Developer.
Tip 2 : Have some good project on my resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

DSA, Leetcode medium -2 problems

Round 2 - One-on-one 

(2 Questions)

  • Q1. Easy Leetcode Problem: Count of substrings with no repeating characters
  • Ans. 

    Count substrings with unique characters in a given string

    • Use a sliding window approach to keep track of unique characters in a substring

    • Use a set to store characters in the current window and update the window accordingly

    • Increment the count of valid substrings whenever a new character is added to the set

  • Answered by AI
  • Q2. Debugging a Java Code
  • Ans. 

    Debugging a Java code involves identifying and fixing errors in the code to ensure it runs correctly.

    • Start by understanding the error message or symptoms of the issue.

    • Use debugging tools like breakpoints, watches, and logging to track the flow of the code.

    • Review the code logic and check for common mistakes like typos, incorrect variable assignments, or logic errors.

    • Test different scenarios to reproduce the issue and na...

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

(1 Question)

  • Q1. Design Parking System
  • Ans. 

    Design a parking system with different types of parking spots

    • Create classes for different types of parking spots (e.g. compact, regular, handicap)

    • Implement methods for checking availability, reserving, and releasing spots

    • Consider implementing a parking lot class to manage all parking spots

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement

Interview Questionnaire 

2 Questions

  • Q1. Why this specific profile? (analyst)
  • Ans. 

    I am passionate about analyzing data and deriving insights to drive strategic decision-making.

    • I have a strong background in data analysis and statistics.

    • I enjoy problem-solving and finding patterns in data.

    • I believe that my analytical skills can add value to the organization by providing actionable insights.

    • I have experience using various analytical tools such as Excel, SQL, and Tableau.

    • I am detail-oriented and thrive

  • Answered by AI
  • Q2. Why finance?
  • Ans. 

    Passion for analyzing data and making informed financial decisions.

    • I have always been fascinated by numbers and analyzing trends.

    • I enjoy the challenge of making sense of complex financial data.

    • I believe finance plays a crucial role in driving business success and growth.

    • I am motivated by the opportunity to help companies make informed financial decisions.

    • I find satisfaction in using data to identify opportunities for i

  • Answered by AI

Interview Preparation Tips

Round: Case Study Interview
Experience: Q: Give me five steps to estimate the number of traffic lights in Bombay.
Me: I will divide the city into equidistant lines, both vertical and horizontal; sort of a mesh. Then I would take vertical and horizontal rectangles i.e. the rectangles which fall on length and breadth of the city. Starting with the horizontal ones I would try to estimate the number of roads going from east to west in each rectangle(depending on the type of area: residential, commercial or a highway) Similarly I would try to estimate the number of roads going from north to south in each vertical rectangle. Now I have the average number of roads per unit length and per unit breadth. Now, I can calculate the average number of roads intersecting per rectangle. Now if I have the data, I can also use the traffic density data to further improve my estimate, i.e. whether the traffic light is required in that rectangle or not.(depending upon the traffic density)
Q: Lets say that golden quadrilateral gets completed tomorrow. What would be its impact on the sales of Ashok Leyland?
Me: Sir, they would increase, as more and more traffic will shift from railways to roadways as the average time taken by road will decrease.
Q: If I say that the sales will decreases by road, the truk will make the same number of trips in less amount of time, thereby rendering overcapacity in the road transport market therefore the sales will decrease.
Me: (I actually didn't let him complete, I interrupted him in between and said that I got the logic)
Tips: Don't try to overstate the facts.

Skills:
Duration: 3
College Name: IIM Lucknow

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.8
 • 569 Interviews
Citicorp Interview Questions
3.7
 • 568 Interviews
HSBC Group Interview Questions
4.0
 • 491 Interviews
BNY Interview Questions
3.9
 • 341 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morgan Stanley Interview Questions
3.7
 • 308 Interviews
View all

American Express SDE-2 Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

3.0

Salary

5.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Business Analyst
875 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
702 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
590 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
544 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Analyst
491 salaries
unlock blur

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