Upload Button Icon Add office photos

Filter interviews by

PayPay Corporation Qa Automation Testing Engineer Interview Questions and Answers

Updated 15 Sep 2024

PayPay Corporation Qa Automation Testing Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding Online Test Full Testing question including 2 coding

Round 2 - One-on-one 

(5 Questions)

  • Q1. About webservice architecture
  • Q2. Dynamic Programming question
  • Q3. How Kafka works and scenario based
  • Q4. Scenario based architecture question
  • Q5. Design patterns

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Question of test automation framework
  • Q2. Coding problems on Arrays, Strings
  • Q3. Basic questions on selenium
  • Q4. Git commands. What is git stash used for?
  • Ans. 

    Git stash is used to temporarily store changes that are not ready to be committed.

    • Git stash is used to save changes that are not ready to be committed, allowing you to switch branches or work on something else.

    • It is useful when you want to temporarily store changes without committing them.

    • You can later apply the stashed changes back to your working directory.

    • Example: git stash save 'work in progress'

    • Example: git stash

  • Answered by AI
  • Q5. How to handle conflicts in git
  • Ans. 

    Conflicts in git can be handled by resolving them through merging, rebasing, or using tools like git mergetool.

    • Communicate with team members to understand changes causing conflicts

    • Resolve conflicts by manually editing files or using git mergetool

    • Use git rebase to reapply changes on top of another branch

    • Merge conflicting branches after resolving conflicts

  • Answered by AI
  • Q6. Questions on Data Provider, TestNG annotations

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Basic Selenium and Java questions
Frequency counter code in Java
Gmail login Automation

Round 2 - Behavioral 

(2 Questions)

  • Q1. Why looking for another job
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic work environment.

    • Looking for opportunities to expand my skill set and knowledge in automation testing

    • Seeking a more collaborative team environment to enhance my learning and development

    • Interested in working on cutting-edge technologies and projects to further my career

  • Answered by AI
  • Q2. Expected salary
  • Ans. 

    Negotiable based on experience and responsibilities

    • Salary expectations are based on industry standards, experience, and responsibilities of the role

    • Research average salaries for Qa Automation Testing Engineers in the specific location

    • Consider benefits, bonuses, and other perks in addition to base salary

    • Be prepared to discuss salary range during negotiation

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions of selenium.
  • Q2. Some java conceptual questions
Round 2 - Technical 

(1 Question)

  • Q1. Asked to write code of how read data from excel and explain the entire project structure.
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain HashMap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap is part of the Java Collections framework.

    • It uses hashing to store key-value pairs in an array.

    • Keys in a HashMap must be unique, but values can be duplicated.

    • HashMap allows for quick retrieval of values based on keys.

    • Example: HashMap map = new HashMap<>();

  • Answered by AI
  • Q2. Is Cucumber Data Driven Framework?
  • Ans. 

    Yes, Cucumber is a Data Driven Framework.

    • Cucumber allows for writing test cases in plain English using Gherkin syntax

    • Data can be stored in external files like Excel, CSV, or JSON and easily integrated into test scripts

    • Scenarios can be parameterized to run with different test data sets

  • Answered by AI
  • Q3. Explain Apium and PT
  • Ans. 

    Appium is an open-source tool for automating mobile applications, while PT stands for Page Object Model Testing.

    • Appium is used for automating mobile apps on iOS and Android platforms.

    • It supports multiple programming languages like Java, Python, and Ruby.

    • Page Object Model Testing (PT) is a design pattern used in test automation to create an object repository for web elements on a web page.

    • PT helps in reducing code dupli...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Qa Automation Testing Engineer interview:
  • HashMaps
Interview preparation tips for other job seekers - Accenture name is big but they are hiring for some other role and select people from other role in the interview, my interviewer was also very rude

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was Average.......,....

Round 2 - Coding Test 

Medium level of difficulties

Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a QA Automation Testing Engineer with 5 years of experience in creating and executing test cases for software applications.

    • 5 years of experience in QA Automation Testing

    • Proficient in creating and executing test cases

    • Strong knowledge of automation tools like Selenium and JUnit

    • Experience in testing web and mobile applications

    • Familiar with Agile methodology

  • Answered by AI
  • Q2. Tell me about your family
  • Q3. How was your day
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Difference between hash map and hash table
  • Ans. 

    HashMap is non-synchronized and allows null values and keys, while HashTable is synchronized and does not allow null values or keys.

    • HashMap is non-synchronized and not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values and keys, while HashTable does not allow null values or keys.

    • HashMap is generally preferred over HashTable for non-thread-safe operations due to better performance.

  • Answered by AI
  • Q2. What is final finally finalize
  • Ans. 

    final, finally, and finalize are keywords in Java used for different purposes.

    • final is a keyword used to declare constants, prevent method overriding, and prevent inheritance.

    • finally is a block of code that is always executed, whether an exception is thrown or not.

    • finalize is a method used for cleanup operations before an object is garbage collected.

  • Answered by AI
  • Q3. What is idempotent in API
  • Ans. 

    Idempotent in API means that making the same request multiple times has the same effect as making it once.

    • Idempotent operations produce the same result regardless of how many times they are called.

    • GET and PUT requests are typically idempotent, while POST requests are not.

    • For example, sending a PUT request to update a resource should have the same result whether it is sent once or multiple times.

  • Answered by AI
  • Q4. Pillars of JAVA and explain with example
  • Ans. 

    The pillars of JAVA are Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability of a method to do different things based on the ob...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops concept asked
  • Q2. Programming on reverse the number
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Sep 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Automation related selenium Java concepts must be know
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at GH Raisoni College of Engineering, Nagpur and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Normal aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. Explain about Oops concept
  • Ans. 

    Oops concept stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • Oops concept focuses on creating objects that contain data in the form of fields (attributes) and code in the form of procedures (methods).

    • Encapsulation, inheritance, polymorphism, and abstraction are the four main principles of Oops concept.

    • Encapsulation refers to the bundling of data and methods th...

  • Answered by AI
  • Q2. Situation based hr questions

PayPay Corporation Interview FAQs

How many rounds are there in PayPay Corporation Qa Automation Testing Engineer interview?
PayPay Corporation interview process usually has 2 rounds. The most common rounds in the PayPay Corporation interview process are Coding Test and One-on-one Round.
What are the top questions asked in PayPay Corporation Qa Automation Testing Engineer interview?

Some of the top questions asked at the PayPay Corporation Qa Automation Testing Engineer interview -

  1. How Kafka works and scenario ba...read more
  2. Scenario based architecture quest...read more
  3. About webservice architect...read more

Tell us how to improve this page.

Senior Software Engineer
6 salaries
unlock blur

₹45 L/yr - ₹70 L/yr

QA Manager
4 salaries
unlock blur

₹60.4 L/yr - ₹94 L/yr

Software Engineer2
4 salaries
unlock blur

₹25 L/yr - ₹45 L/yr

Software Engineer
3 salaries
unlock blur

₹13 L/yr - ₹38 L/yr

Software Developer
3 salaries
unlock blur

₹30 L/yr - ₹47.7 L/yr

Explore more salaries
Compare PayPay Corporation with

Paytm

3.3
Compare

PhonePe

4.0
Compare

Mobikwik

4.0
Compare

Freecharge

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