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

Filter interviews by

Paytm Software Engineer Interview Questions, Process, and Tips for Experienced

Updated 19 Dec 2024

Top Paytm Software Engineer Interview Questions and Answers for Experienced

  • Q1. Find the row with max number of vowels in a 2×2 matrix. Given that first element of each row contains a vowel if there are any in the whole row.
  • Q2. Modify the given 2×2 matrix in such a way that if a cell contains 0 all the elements of corresponding row and columm becomes 0
  • Q3. 1. Find the no of rotations in a rotated sorted array.
View all 6 questions

Paytm Software Engineer Interview Experiences for Experienced

10 interviews found

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

Javascript, nodejs, react qustions

Round 2 - Technical 

(2 Questions)

  • Q1. Nodejs event loop
  • Q2. React lifecycle , hooks and redux
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 questions in DSA on arrays and linked list

Round 2 - Technical 

(1 Question)

  • Q1. 1 question on linked list and general discussion
Round 3 - One-on-one 

(1 Question)

  • Q1. Questions about realtime problem solving, no coding directly

Software Engineer Interview Questions Asked at Other Companies for undefined

Q1. String Compression Problem Statement Implement a program that per ... read more
asked in HCLTech
Q2. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q3. Total time: 110 mins 1. Find missing and duplicate numbers from g ... read more
asked in HCLTech
Q4. Reverse Array Elements Given an array containing 'N' elements, th ... read more
asked in Cisco
Q5. Intersection of Linked List Problem You are provided with two sin ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. LinkedIn List based problems
  • Ans. 

    LinkedIn List based problems involve manipulating linked lists to solve various coding challenges.

    • Implement common linked list operations like insertion, deletion, and traversal.

    • Solve problems involving reversing a linked list, detecting cycles, or finding the intersection point of two linked lists.

    • Use techniques like two pointers, recursion, or hash tables to optimize solutions.

  • Answered by AI
  • Q2. Hashing based problems and questions

Skills evaluated in this interview

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

1 hour, 3 questions, all dsa based

Round 2 - Technical 

(1 Question)

  • Q1. Merge sort was asked to me

Paytm interview questions for designations

 Senior Software Engineer

 (37)

 Software Testing Engineer

 (1)

 Software Development Engineer

 (1)

 Software Development Engineer II

 (1)

 Senior Software Development Engineer

 (1)

 Software Development Engineer Test

 (1)

 Software Development Engineer 1

 (1)

 Senior Software Engineer Testing

 (1)

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

I applied via Naukri.com and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Assignment 

Python, SQL related questions

Round 2 - Technical 

(2 Questions)

  • Q1. SQL, Python related
  • Q2. Spark internals
Round 3 - Technical 

(2 Questions)

  • Q1. SQL, Python related
  • Q2. Spark internals
Round 4 - One-on-one 

(1 Question)

  • Q1. General managerial questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with SQL, Python and Spark to clear data engineering interviews

Get interview-ready with Top Paytm Interview Questions

I applied via Naukri.com and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Multithreading, oops concepts
Round 2 - Technical 

(1 Question)

  • Q1. Sorting algorithm, tree and graph
Round 3 - Technical 

(1 Question)

  • Q1. Puzzles, different types of scenarios based questions
Round 4 - HR 

(1 Question)

  • Q1. Salary expectations, ready to relocate, what are the things you do in daily life
  • Ans. 

    I am open to discussing salary expectations and willing to relocate for the right opportunity. In my daily life, I engage in various activities such as coding, learning new technologies, and staying updated with industry trends.

    • Open to discussing salary expectations

    • Willing to relocate for the right opportunity

    • Engage in coding and programming activities

    • Constantly learning new technologies

    • Staying updated with industry tr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I am from java background, so be prepared of all java questions
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 Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Linux related commands
  • Q2. MySQL related commands

I applied via Referral

Interview Questionnaire 

4 Questions

  • Q1. 1. Find the no of rotations in a rotated sorted array.
  • Ans. 

    Find the number of rotations in a rotated sorted array.

    • Use binary search to find the minimum element in the array.

    • The number of rotations is equal to the index of the minimum element.

    • If the minimum element is at index 0, then there are no rotations.

    • If the array is not rotated, then the number of rotations is 0.

  • Answered by AI
  • Q2. House robber problem from leetcode
  • Q3. Modify the given 2×2 matrix in such a way that if a cell contains 0 all the elements of corresponding row and columm becomes 0
  • Ans. 

    Modify a 2x2 matrix to replace row and column with 0 if a cell contains 0.

    • Iterate through the matrix and find the cells with 0.

    • Store the row and column index of the cells with 0 in separate arrays.

    • Iterate through the row and column arrays and replace all elements with 0.

    • Return the modified matrix.

  • Answered by AI
  • Q4. Find the row with max number of vowels in a 2×2 matrix. Given that first element of each row contains a vowel if there are any in the whole row.
  • Ans. 

    Find row with max vowels in 2x2 matrix with first element of each row containing a vowel.

    • Iterate through each row and count the number of vowels in it.

    • Keep track of the row with max number of vowels.

    • If first element of a row is a vowel, start counting from that element.

    • Example: [['a', 'b'], ['e', 'i']] should return 2nd row.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Both the technical rounds were based on DSA. You need to give atleast 2 solutions for every problem. So dont focus just on the solution . They want optimized approach for each .

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What is solid principles
  • Ans. 

    SOLID principles are a set of five design principles for writing maintainable and scalable code.

    • S - Single Responsibility Principle

    • O - Open/Closed Principle

    • L - Liskov Substitution Principle

    • I - Interface Segregation Principle

    • D - Dependency Inversion Principle

  • Answered by AI
  • Q2. What are internal working of has set
  • Ans. 

    HashSet is a collection that stores unique elements by using a hash table.

    • Elements are stored based on their hash code

    • Uses hashCode() and equals() methods to check for duplicates

    • Does not maintain insertion order

    • Allows null values

    • Example: HashSet set = new HashSet<>(); set.add("apple"); set.add("banana");

Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Normal coding question medium level , approach focusing rounds actually how you get up to result

Interview Preparation Tips

Interview preparation tips for other job seekers - "GfG must do" should be solved properly alteast , otherwise go keep on practicing on any platform .

Paytm Interview FAQs

How many rounds are there in Paytm Software Engineer interview for experienced candidates?
Paytm interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Paytm interview process for experienced candidates are Technical, Coding Test and One-on-one Round.
How to prepare for Paytm Software Engineer interview for experienced candidates?
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 Application Development, Financial Services, Product Management, Backend and Javascript.
What are the top questions asked in Paytm Software Engineer interview for experienced candidates?

Some of the top questions asked at the Paytm Software Engineer interview for experienced candidates -

  1. Find the row with max number of vowels in a 2×2 matrix. Given that first eleme...read more
  2. Modify the given 2×2 matrix in such a way that if a cell contains 0 all the el...read more
  3. 1. Find the no of rotations in a rotated sorted arr...read more
How long is the Paytm Software Engineer interview process?

The duration of Paytm Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Paytm Software Engineer Interview Process for Experienced

based on 6 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more
Paytm Software Engineer Salary
based on 1.4k salaries
₹6 L/yr - ₹22.6 L/yr
55% more than the average Software Engineer Salary in India
View more details

Paytm Software Engineer Reviews and Ratings

based on 178 reviews

2.9/5

Rating in categories

3.1

Skill development

2.6

Work-life balance

2.6

Salary

2.2

Job security

2.4

Company culture

2.2

Promotions

2.7

Work satisfaction

Explore 178 Reviews and Ratings
Team Lead
2.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
1.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Executive
974 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
915 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Paytm with

BharatPe

3.5
Compare

Zerodha

4.1
Compare

Razorpay

3.6
Compare

Mobikwik

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