Upload Button Icon Add office photos

Filter interviews by

MasterCard Automation Tester Interview Questions and Answers

Updated 28 May 2024

MasterCard Automation Tester Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic core Java, selenium questions
Round 2 - Technical 

(1 Question)

  • Q1. Selenium questions and code to solve
Round 3 - Technical 

(1 Question)

  • Q1. Api testing, core Java , selenium questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Typically Managerial round, checks for hypothetical scenarios which I have faced with my work experience

Interview questions from similar companies

Software Tester Interview Questions & Answers

Fiserv user image Liudmila Khatsko

posted on 12 Jun 2024

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

I applied via Company Website and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. What is Jira?Difference between Zephyr and X-Ray?
  • Ans. 

    Jira is a project management tool. Zephyr and X-Ray are test management tools integrated with Jira.

    • Jira is a project management tool used for tracking issues, managing projects, and agile development.

    • Zephyr is a test management tool that integrates with Jira for test case management and execution.

    • X-Ray is another test management tool that integrates with Jira, offering more advanced test management features like test p

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be yourself
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. JAVA BASED SELENIUM QUESTIONS
Round 2 - HR 

(1 Question)

  • Q1. BASIC HR , JUST BE CONFIDENT
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about project
  • Q2. Selenium questions for element and selector
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at KIIT University, Bhuvaneshwar and was interviewed before Sep 2022. There were 4 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 

Reasoning, aptitude, mathematics

Round 3 - Technical 

(1 Question)

  • Q1. Question about basic of c , java, dbms, os cloud computing ,oops concept
Round 4 - Coding Test 

DSA , JAVA , dynamic Programing

Interview Questionnaire 

3 Questions

  • Q1. Puzzles are asked in Software Testing Interviews
  • Q2. How to cut cake in 8 pieces in only 3 slices?
  • Q3. Third one horizontal cut

Interview Questionnaire 

4 Questions

  • Q1.  You must be able to explain the flow of your project.
  • Q2. Must be thorogh in you SQL query. Like joins, different types of analytic function.
  • Q3. Need to have knowledge on DWH concept
  • Q4. No need to wory about Unix commands

Interview Questionnaire 

10 Questions

  • Q1. WAP to find if two strings are palindrome
  • Ans. 

    A program to check if two strings are palindromes.

    • Create a function that takes two strings as input.

    • Reverse the second string and compare it with the first string.

    • If they are the same, return true. Otherwise, return false.

  • Answered by AI
  • Q2. WAP to reverse a integer number without using String
  • Ans. 

    Reversing an integer without using string in Python

    • Convert the integer to a list of digits

    • Reverse the list

    • Convert the list back to an integer

  • Answered by AI
  • Q3. WAP to reverse characters of a String
  • Ans. 

    A program to reverse the characters of a given string.

    • Iterate through the string from the end and append each character to a new string.

    • Use built-in functions like reverse() or StringBuilder in Java.

    • Convert the string to an array, reverse the array, and convert it back to a string.

  • Answered by AI
  • Q4. Write test cases to test ATM MACHINE
  • Ans. 

    Test cases to test ATM machine

    • Verify if the ATM machine is dispensing the correct amount of cash

    • Check if the ATM machine is accepting valid debit/credit cards

    • Ensure that the ATM machine is providing proper instructions to the user

    • Test if the ATM machine is properly handling errors and exceptions

    • Validate if the ATM machine is maintaining transaction records accurately

  • Answered by AI
  • Q5. Difference between put patch and post
  • Ans. 

    PUT is used to update an existing resource, PATCH is used to partially update an existing resource, and POST is used to create a new resource.

    • PUT replaces the entire resource with the new one, while PATCH only updates the specified fields

    • PUT and PATCH are idempotent, meaning multiple identical requests will have the same effect as a single request

    • POST is not idempotent and creates a new resource

    • PUT and PATCH require th...

  • Answered by AI
  • Q6. How many classes can be present in a Java file
  • Ans. 

    A Java file can have multiple classes, but only one public class.

    • A Java file can have multiple non-public classes.

    • The name of the public class must match the name of the file.

    • Only the public class can be accessed from outside the file.

  • Answered by AI
  • Q7. What is non equi join
  • Ans. 

    Non equi join is a type of join in SQL where the condition used is not an equality operator.

    • Non equi join is used to join tables based on conditions other than equality.

    • It is used when the join condition involves operators like >, <, >=, <=, etc.

    • Non equi join can result in a Cartesian product if not used carefully.

    • Example: SELECT * FROM table1 JOIN table2 ON table1.column1 > table2.column2;

  • Answered by AI
  • Q8. What is SQL CASE STATEMENT
  • Ans. 

    SQL CASE statement is used to add conditional logic to SQL queries.

    • It allows for conditional execution of SQL statements.

    • It can be used in SELECT, WHERE, and ORDER BY clauses.

    • It can be used with multiple conditions and ELSE statements.

    • Example: SELECT name, CASE WHEN age < 18 THEN 'Minor' ELSE 'Adult' END AS age_group FROM users;

    • Example: SELECT name, CASE WHEN score >= 90 THEN 'A' WHEN score >= 80 THEN 'B' ELSE 'C' END

  • Answered by AI
  • Q9. How Do you initialise a browser using selenium
  • Ans. 

    To initialise a browser using Selenium, we need to create an instance of the WebDriver interface.

    • Import the necessary packages for Selenium and WebDriver

    • Create an instance of the desired browser driver

    • Use the driver instance to open a new browser window

  • Answered by AI
  • Q10. How selenium works or communicate with browser
  • Ans. 

    Selenium uses browser-specific drivers to communicate with the browser and automate user actions.

    • Selenium sends commands to the browser driver, which translates them into browser-specific actions.

    • The driver then sends the results back to Selenium.

    • Selenium can interact with the browser using various methods such as find elements, click, type, etc.

    • Selenium supports multiple browsers such as Chrome, Firefox, Safari, and m

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. STLC, Database, programming, functional

MasterCard Interview FAQs

How many rounds are there in MasterCard Automation Tester interview?
MasterCard interview process usually has 4 rounds. The most common rounds in the MasterCard interview process are Technical and One-on-one Round.
How to prepare for MasterCard Automation Tester 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 Agile, Automation Framework, Automation Testing, Core Java and Cucumber.
What are the top questions asked in MasterCard Automation Tester interview?

Some of the top questions asked at the MasterCard Automation Tester interview -

  1. Api testing, core Java , selenium questi...read more
  2. selenium questions and code to so...read more
  3. Basic core Java, selenium questi...read more

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.4k Interviews
Paytm Interview Questions
3.3
 • 752 Interviews
FIS Interview Questions
3.9
 • 470 Interviews
American Express Interview Questions
4.2
 • 356 Interviews
PhonePe Interview Questions
4.0
 • 297 Interviews
PayPal Interview Questions
3.9
 • 206 Interviews
View all
Senior Software Engineer
713 salaries
unlock blur

₹13 L/yr - ₹44 L/yr

Software Engineer2
228 salaries
unlock blur

₹9.6 L/yr - ₹31 L/yr

Software Engineer
217 salaries
unlock blur

₹6.1 L/yr - ₹22 L/yr

Consultant
180 salaries
unlock blur

₹13.6 L/yr - ₹40 L/yr

Senior Analyst
137 salaries
unlock blur

₹11 L/yr - ₹38 L/yr

Explore more salaries
Compare MasterCard with

PayPal

3.9
Compare

Visa

3.6
Compare

American Express

4.2
Compare

Discover Financial Services

4.0
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