Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Paytm Team. If you also belong to the team, you can get access from here

Paytm Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 7.1k Reviews

Filter interviews by

Paytm Software Testing Engineer Interview Questions and Answers

Updated 24 Mar 2022

Paytm Software Testing Engineer Interview Experiences

2 interviews found

I was interviewed in Nov 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Started with the introduction.
Then there were two-three coding questions.
Some OS and DBMS concepts were asked.
Questions related to testing were also included.

  • Q1. Reverse the String

    You are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string.

    For example:

     If the given string is: STR...
  • Ans. Optimal Solution
    • Traverse the string and swap the first character with the last character, the second character with the second last character and so on.
    • Basically, you need to swap the i-th character with the (N-i-1)-th character where N is the length of the string and 0-based indexing is considered.
    Space Complexity: O(1)Explanation:

    O(1).

     

    In the worst case, only constant extra space is required.

    Time Complexity: O(...
  • Answered by CodingNinjas
  • Q2. Number And Digits

    You are given a positive number ‘N.’ You need to find all the numbers such that the sum of digits of those numbers to the number itself is equal to ‘N.’

    For example:
    You are given ‘N’ a...
  • Ans. Brute Force

    In this approach, we iterate through the numbers from 1 to N. We will find the sum of its digits and add it to the integer itself for each number. Then, we check if the obtained sum is equal to N.

    We create a recursive function called sumOfDigits(num) that returns the sum of digits of the number num.

     

    Algorithm:

    • The function sumOfDigits(num) 
      • If num is equal to 0 return 0
      • Otherwise, return num % 10 + su...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

This was quite a tough round that can be cleared only by practice and understanding the problem. They asked about the profile first, then questions related to testing, SDLC, and so on. And then, I was asked to write test cases for two to three problems. Writing a test case was a task in this round. The interview was a senior testing engineer and was very friendly and helpful also and answered all my queries related to work.

  • Q1. Technical Questions

    Test Cases for Paytm Wallet (at least 10)

    You are downloading a file in your system, write test cases for this situation (5-6 TEST CASES)

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indira Gandhi Delhi Technical University for Women. I applied for the job as Software Testing Engineer in NoidaEligibility criteria6.8 and above CGPA, Active and dead backlogs not allowedPaytm (One97 Communications Limited) interview preparation:Topics to prepare for the interview - OOPS, Data Structures and Algorithms, Operating System, Low-Level Design, DBMSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice question from every section (Arrays, String, Data Structures) 
Tip 2 : Practice question that required you to write test cases for a problem (as they judge you on your practical implementation)
Tip 3 : Practice low level designing questions (it indirectly helps you to write test cases )
Tip 4 : Choose your favorite Data Structure and practice well on it (as this is the most commonly asked question)

Application resume tips for other job seekers

Tip 1 : Have at least three projects in your resume (Include only those which you can explain and demonstrate)
Tip 2 : Include a column of "Position of Responsibility" in addition to your work experience and technicalities (it is impactful as it shows your extra activities apart from your regular curriculum)

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Testing Engineer interview

user image Mohanty Academy

posted on 21 Mar 2022

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write a Java Program to reverse a string
  • Ans. 

    Java program to reverse a string

    • Create a char array from the input string

    • Use two pointers to swap characters at opposite ends

    • Continue swapping until the pointers meet in the middle

  • Answered by AI
  • Q2. Write a program to find duplicate in given string and print the count of characters
  • Ans. 

    Program to find duplicates in a given string and print the count of characters

    • Iterate through each character in the string and store the count of each character in a hashmap

    • Print the characters with count greater than 1 to find duplicates

    • Handle both uppercase and lowercase characters separately if needed

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. API test cases, API workflow
  • Q2. Test cases for mobile recharge
  • Ans. 

    Test cases for mobile recharge feature

    • Verify user can successfully recharge their mobile with valid amount

    • Verify user receives confirmation message after successful recharge

    • Verify user cannot recharge with invalid amount

    • Verify user cannot recharge with insufficient balance

    • Verify user cannot recharge if network connection is lost

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - 15 minutes interview 

(2 Questions)

  • Q1. What features of playwright did you use in project
  • Q2. How would you do api chaining
  • Ans. 

    API chaining is the process of making multiple API calls in a sequence to achieve a desired outcome.

    • Identify the APIs that need to be called in sequence

    • Extract necessary data from the response of one API call to use in the next call

    • Handle errors and exceptions that may occur during the chaining process

    • Use tools like Postman, RestAssured, or programming languages like Python to automate the chaining process

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Write page object for login
  • Ans. 

    Page object for login functionality

    • Create a LoginPage class with methods for entering username, password, and clicking login button

    • Use locators to identify the username input field, password input field, and login button

    • Implement a method to perform the login action and return the next page object

  • Answered by AI
  • Q2. What is extension of eslint file and how do you combine rules in eslint
  • Ans. 

    Eslint file extension is .eslintrc.js and rules can be combined using extends property

    • Eslint file extension is .eslintrc.js

    • Rules can be combined using the 'extends' property in the eslint configuration file

    • For example, to combine rules from multiple eslint configurations, you can use: 'extends: ['eslint:recommended', 'plugin:react/recommended']

  • Answered by AI
  • Q3. Write a program on wellformed braces
  • Ans. 

    Program to check if braces are well-formed

    • Use a stack to keep track of opening braces

    • Iterate through the input string and push opening braces onto the stack

    • When a closing brace is encountered, pop from the stack and check if it matches the corresponding opening brace

    • If stack is empty at the end and all braces are matched, return true

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain testing framework used in project
  • Ans. 

    The testing framework used in the project is Selenium with TestNG for automated testing.

    • Selenium is used for automating web applications testing

    • TestNG is used for organizing test cases and generating reports

    • Framework allows for easy maintenance and scalability

    • Integration with CI/CD tools like Jenkins for continuous testing

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain SOLID principle
  • Ans. 

    SOLID is a set of five design principles to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without aff...

  • Answered by AI
  • Q2. Memory Allocation in Java
  • Ans. 

    Memory allocation in Java is managed by the JVM using the heap and stack memory areas.

    • Java uses the heap memory for storing objects and the stack memory for storing method calls and local variables.

    • Memory allocation in Java is automatic and managed by the garbage collector.

    • Java provides the 'new' keyword to allocate memory for objects on the heap.

    • Primitive data types are stored on the stack, while objects are stored on

  • Answered by AI

Skills evaluated in this interview

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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write a Java Program to reverse a string
  • Ans. 

    Java program to reverse a string

    • Create a char array from the input string

    • Use two pointers to swap characters at opposite ends

    • Continue swapping until the pointers meet in the middle

  • Answered by AI
  • Q2. Write a program to find duplicate in given string and print the count of characters
  • Ans. 

    Program to find duplicates in a given string and print the count of characters

    • Iterate through each character in the string and store the count of each character in a hashmap

    • Print the characters with count greater than 1 to find duplicates

    • Handle both uppercase and lowercase characters separately if needed

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. API test cases, API workflow
  • Q2. Test cases for mobile recharge
  • Ans. 

    Test cases for mobile recharge feature

    • Verify user can successfully recharge their mobile with valid amount

    • Verify user receives confirmation message after successful recharge

    • Verify user cannot recharge with invalid amount

    • Verify user cannot recharge with insufficient balance

    • Verify user cannot recharge if network connection is lost

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Previous project experience
Round 2 - One-on-one 

(1 Question)

  • Q1. Jenkins Jira and Banking operations
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Data Structure coding

Paytm Interview FAQs

How to prepare for Paytm Software Testing Engineer 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 Paytm. The most common topics and skills that interviewers at Paytm expect are Technical Support.

Tell us how to improve this page.

Interview Questions from Similar Companies

FIS Interview Questions
3.9
 • 464 Interviews
PhonePe Interview Questions
4.0
 • 289 Interviews
PayPal Interview Questions
3.9
 • 202 Interviews
Fiserv Interview Questions
3.3
 • 165 Interviews
Visa Interview Questions
3.7
 • 131 Interviews
MasterCard Interview Questions
4.0
 • 125 Interviews
Angel One Interview Questions
3.9
 • 123 Interviews
TransUnion Interview Questions
4.0
 • 87 Interviews
Revolut Interview Questions
2.6
 • 86 Interviews
View all
Paytm Software Testing Engineer Salary
based on 4 salaries
₹8 L/yr - ₹19.7 L/yr
82% more than the average Software Testing Engineer Salary in India
View more details
Team Lead
2k salaries
unlock blur

₹2 L/yr - ₹11.4 L/yr

Software Engineer
1.4k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹10 L/yr - ₹41 L/yr

Sales Executive
957 salaries
unlock blur

₹1 L/yr - ₹6.4 L/yr

Senior Associate
903 salaries
unlock blur

₹2.1 L/yr - ₹9 L/yr

Explore more salaries
Compare Paytm with

BharatPe

3.5
Compare

Zerodha

4.2
Compare

Razorpay

3.6
Compare

Mobikwik

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