Upload Button Icon Add office photos

Filter interviews by

MasterCard Software Engineer II Interview Questions and Answers

Updated 22 Jun 2024

MasterCard Software Engineer II Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

First round was screening of resume and few basic coding questions

Round 2 - Coding Test 

In second round there is 3 panels at same day for 3 hours one after one all there round are technical and coding interviews level is hard one after another round. Situational questions and current project details in deep. Be prepare for coding.

Round 3 - HR 

(1 Question)

  • Q1. Normal discussion in HR Round about company details and salary discussions.

Interview Preparation Tips

Topics to prepare for MasterCard Software Engineer II interview:
  • Spring Boot
  • Java
  • java 8
  • JPA
  • Hibernate
  • Coding

Software Engineer II Jobs at MasterCard

View all

Interview questions from similar companies

I applied via Company Website and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Reverse the LL in k groups
  • Ans. 

    Reverse the linked list in groups of k

    • Iterate through the linked list in groups of k

    • Reverse each group of k nodes

    • Connect the reversed groups to form the final linked list

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Java related questions -> Hashing/Threads/Collections and Exception Handling
Round 3 - Mangerial 

(1 Question)

  • Q1. Leadership questions.. the manager was so rude, he wont let u answer completely, always interrupts in between your answer, he was in a mood to scold the interviewee as if he owns the company. Worst Manager...

Interview Preparation Tips

Interview preparation tips for other job seekers - NEVER EVER JOIN THIS COMPANY! The HRs and Managers all are unprofessional. They wont give you results and put u on hold and wont reply to your emails and calls.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly core Java questions and sql

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 rounds. 2 were technical and the other one is managerial. Mainly focused on core Java and sql only.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What are the best and worst solutions for the coding problem "Longest Substring Without Repeating Characters," including a detailed explanation of each solution along with their time and space complexity?
  • Ans. 

    The Longest Substring Without Repeating Characters problem involves finding the length of the longest substring without any repeating characters.

    • Best solution: Sliding Window approach with HashSet to track unique characters. Time complexity O(n), space complexity O(min(n, m)) where n is the length of the string and m is the size of the character set.

    • Worst solution: Brute force approach checking all substrings for uniqu...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions regarding Redis and cache eviction policies, and how would you implement a low-level design for the Least Recently Used (LRU) cache algorithm?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Merge two sorted linked lists
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list

    • Create a new linked list to store the merged result

    • Iterate through both input linked lists and compare nodes to determine the order in which they should be added to the result list

    • Handle cases where one list is longer than the other

  • Answered by AI
  • Q2. Check if paranthesis are balanced or not
  • Ans. 

    To check if parentheses are balanced, use a stack data structure to keep track of opening and closing parentheses.

    • Use a stack to push opening parentheses and pop when encountering a closing parenthesis

    • If stack is empty when encountering a closing parenthesis, return false

    • After iterating through all parentheses, if stack is empty, return true

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

(2 Questions)

  • Q1. Right view of a Binary Search tree
  • Ans. 

    The right view of a Binary Search Tree shows the nodes that are visible when viewing the tree from the right side.

    • The right view of a Binary Search Tree includes the rightmost node at each level.

    • Nodes at each level that are not visible from the right side are not included in the right view.

    • Example: For the Binary Search Tree with values 1, 2, 3, 4, 5, the right view would be 1, 3, 5.

  • Answered by AI
  • Q2. Few javascript questions on how to parse a json object without using inbuilt libraries.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa easy-medium and your projecs in depth.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

A test that covers all fundamental topics, including networking, object-oriented programming (OOP), and data structures and algorithms (DSA).

Round 2 - Technical 

(2 Questions)

  • Q1. Write code for quick sort
  • Q2. Puzzle
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
No response

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the react lifecycle functions and how they work
  • Ans. 

    React lifecycle functions are methods that are automatically called at specific points in a component's life cycle.

    • Mounting: constructor, render, componentDidMount

    • Updating: render, componentDidUpdate

    • Unmounting: componentWillUnmount

  • Answered by AI
  • Q2. Css box model, difference between padding and margin
  • Ans. 

    Padding is the space inside the border of an element, while margin is the space outside the border.

    • Padding is used to create space between the content and the border of an element.

    • Margin is used to create space between the border of an element and other elements.

    • Padding affects the size of the content area, while margin affects the positioning of the element.

    • Example: padding: 10px will create 10 pixels of space inside ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations in CTC and variables?
  • Q2. Will you relocate to the location required?

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare everything bookish! don't only speak related to your experience

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Java coding questions, basic Java questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Java basics questions.
  • Q2. Live coding.
Round 3 - Technical 

(2 Questions)

  • Q1. Discussion on previous experience and projects.
  • Q2. System design question
Round 4 - Technical 

(2 Questions)

  • Q1. Questions on SQL, Java advanced, personal projects, Java frameworks, UI based questions, Agile methodologies.
  • Q2. Interview discussion with the whole team.
Round 5 - HR 

(2 Questions)

  • Q1. Benefits discussion.
  • Q2. Salary discussion.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

Basic Oops MCQ and aptitude and one da

Round 2 - Technical 

(1 Question)

  • Q1. Basic dsa and project
Round 3 - Technical 

(1 Question)

  • Q1. DSA and project related
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. They asked Java coding question

MasterCard Interview FAQs

How many rounds are there in MasterCard Software Engineer II interview?
MasterCard interview process usually has 3 rounds. The most common rounds in the MasterCard interview process are Coding Test and HR.
How to prepare for MasterCard Software Engineer II 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 MasterCard. The most common topics and skills that interviewers at MasterCard expect are Information Security, Remote Sensing, SQL, Agile Coaching and Corporate Security.

Tell us how to improve this page.

MasterCard Software Engineer II 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
Paytm Interview Questions
3.3
 • 769 Interviews
FIS Interview Questions
3.9
 • 478 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
PhonePe Interview Questions
4.0
 • 302 Interviews
PayPal Interview Questions
3.9
 • 208 Interviews
View all
MasterCard Software Engineer II Salary
based on 95 salaries
₹10 L/yr - ₹26.5 L/yr
16% more than the average Software Engineer II Salary in India
View more details

MasterCard Software Engineer II Reviews and Ratings

based on 9 reviews

3.5/5

Rating in categories

3.7

Skill development

3.1

Work-life balance

3.1

Salary

2.9

Job security

2.9

Company culture

2.5

Promotions

2.8

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer II

Pune

5-10 Yrs

Not Disclosed

Software Engineer-II (PL/SQL)

Vadodara

3-6 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
713 salaries
unlock blur

₹13.5 L/yr - ₹45 L/yr

Software Engineer2
245 salaries
unlock blur

₹9.6 L/yr - ₹30 L/yr

Software Engineer
236 salaries
unlock blur

₹6.1 L/yr - ₹22.9 L/yr

Consultant
183 salaries
unlock blur

₹13.6 L/yr - ₹40 L/yr

Lead Software Engineer
138 salaries
unlock blur

₹20 L/yr - ₹57.5 L/yr

Explore more salaries
Compare MasterCard with

PayPal

3.9
Compare

Visa

3.5
Compare

American Express

4.2
Compare

Discover Financial Services

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview