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

Clear (1)

Paytm Software Engineer Interview Questions, Process, and Tips

Updated 19 Dec 2024

Top Paytm Software Engineer Interview Questions and Answers

  • Q1. Puzzle : 100 people are standing in a circle .each one is allowed to shoot a person infront of him and he hands the gun to the next to next person for e.g 1st person kill ...read more
  • Q2. Generate Binary Strings with No Consecutive 1s Given an integer K , your task is to produce all binary strings of length 'K' that do not contain consecutive '1's. Input: ...read more
  • Q3. Minimum Number of Coins Problem Dora, on her visit to India, decides to enjoy Indian cuisine where payments are accepted only in specific denominations. Your task is to ...read more
View all 79 questions

Paytm Software Engineer Interview Experiences

51 interviews found

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

(3 Questions)

  • Q1. Search in a sorted matrix
  • Ans. 

    Search for a target value in a sorted matrix efficiently.

    • Start from the top right corner and move left or down based on comparison with target value

    • Utilize the sorted nature of the matrix to eliminate certain rows or columns

    • Implement binary search for more efficient search in each row or column

  • Answered by AI
  • Q2. Rotting orange graph
  • Q3. Database Indexing and SQL
Round 2 - Technical 

(3 Questions)

  • Q1. Design Patterns
  • Q2. Medium level Binary tree question
  • Q3. Previous work discussion

Skills evaluated in this interview

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

1st round was online test with 3 easy-medium leetcode questions

Round 2 - Technical 

(2 Questions)

  • Q1. Quick sort was asked to be implemented
  • Q2. Some SQL queries were asked involving joins
Round 3 - Technical 

(2 Questions)

  • Q1. Standard stack based question -> valid parenthesis
  • Q2. Only one question was asked

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between hashmap and hashtable
  • Ans. 

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

    • HashMap is non-synchronized, meaning it is not thread-safe, while Hashtable is synchronized and thread-safe.

    • HashMap allows null values and one null key, while Hashtable does not allow null keys or values.

    • HashMap is generally preferred for non-thread-safe applications, while Hashtable is used in thr

  • Answered by AI
  • Q2. Difference between mongodb and sql
  • Ans. 

    MongoDB is a NoSQL database while SQL is a relational database management system.

    • MongoDB is schema-less, allowing for flexible data models.

    • SQL databases use structured query language for defining and manipulating data.

    • MongoDB is better suited for unstructured or semi-structured data, while SQL is better for structured data.

    • SQL databases are ACID compliant, ensuring data integrity, while MongoDB sacrifices some ACID pro...

  • Answered by AI

Skills evaluated in this interview

Paytm interview questions for designations

 Senior Software Engineer

 (37)

 Software Development Engineer

 (1)

 Software Testing Engineer

 (1)

 Senior Software Quality Engineer

 (1)

 Senior Software Development Engineer

 (1)

 Software Development Engineer II

 (1)

 Senior Software Engineer 2

 (1)

 Software Development Engineer Test

 (1)

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

I applied via Referral and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Got an hackerRank test link which consists HTML, CSS, JS, React and DSA question with MCQs.

Round 2 - One-on-one 

(2 Questions)

  • Q1. JS related discussion.
  • Q2. DSA question
Round 3 - One-on-one 

(2 Questions)

  • Q1. React machine coding round
  • Q2. DSA question

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the basics and be consistent with your prepration.

Get interview-ready with Top Paytm Interview Questions

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

Medium level one coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Question related to project mentioned in resume
  • Q2. Question related to projects
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
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 - Technical 

(2 Questions)

  • Q1. Rotate a linked List
  • Ans. 

    Rotate a linked list by k positions

    • Traverse the linked list to find the length and the last node

    • Connect the last node to the head to make it a circular linked list

    • Traverse again to find the new tail node at position length - k % length

    • Set the new head as the next node of the new tail and update the new tail's next to null

  • Answered by AI
  • Q2. Find the element in rotated sorted array
  • Ans. 

    Use binary search to find the pivot point and then search for the target element in the appropriate half of the array.

    • Find the pivot point where the array is rotated

    • Use binary search to search for the target element in the appropriate half of the array

    • Handle cases where the target element is not found

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Kth element in a linked list
  • Ans. 

    To find the kth element in a linked list, iterate through the list and return the element at the kth position.

    • Iterate through the linked list while keeping track of the current position

    • Return the element when the current position equals k

    • Handle cases where k is out of bounds or the linked list is empty

  • Answered by AI
  • Q2. Level order traversal with alternate order
  • Ans. 

    Level order traversal of a binary tree with alternate order

    • Use a queue to perform level order traversal

    • Alternate the order of nodes at each level

    • Example: For a binary tree with nodes 1, 2, 3, 4, 5, the output could be ['1', '3 2', '4 5']

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Paytm Interview FAQs

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

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

  1. Puzzle : 100 people are standing in a circle .each one is allowed to shoot a pe...read more
  2. How will you implement a shuffle function for a playlist of so...read more
  3. How many BSTs are possible with two nodes and three nod...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.

Recently Viewed

DESIGNATION

Pyspark Developer

25 interviews

REVIEWS

Broadridge Financial Solutions

No Reviews

JOBS

Wipro

No Jobs

REVIEWS

Paytm

No Reviews

SALARIES

Wipro

SALARIES

Wipro

No Salaries

LIST OF COMPANIES

Paytm

Locations

SALARIES

Wipro

JOBS

Wipro

No Jobs

INTERVIEWS

Wipro

2.5k top interview questions

Tell us how to improve this page.

Paytm Software Engineer Interview Process

based on 40 interviews

4 Interview rounds

  • Coding Test Round
  • Technical Round - 1
  • Technical Round - 2
  • HR Round
View more

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

Paytm Software Engineer Salary
based on 1.4k salaries
₹6 L/yr - ₹23 L/yr
56% 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

₹2.5 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 - ₹40 L/yr

Sales Executive
974 salaries
unlock blur

₹1 L/yr - ₹6.4 L/yr

Senior Associate
916 salaries
unlock blur

₹2.2 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
Did you find this page helpful?
Yes No
write
Share an Interview