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

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

3 questions were asked that were easy to medium related to array, linked list and string

Round 2 - One-on-one 

(2 Questions)

  • Q1. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a collision occurs and the key-value pairs are stored in a linked list at that inde...

  • Answered by AI
  • Q2. Detect cycle in linked list
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect cycle in a linked list.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at any point, there is a cycle in the linked list.

  • Answered by AI
Round 3 - Coding Test 

Interviewer asked for the upi design

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Online assement was on a platform which I don't remember at the moment
But it had 3 basic questions around DSA , try to write quality code as much as possible as questions were easy and doable by everyone

Round 2 - One-on-one 

(2 Questions)

  • Q1. Check wether a given binary tree is a BST or not
  • Ans. 

    To check if a binary tree is a BST, we can perform an in-order traversal and ensure that the elements are in sorted order.

    • Perform an in-order traversal of the binary tree

    • Check if the elements are in sorted order

    • If any element is not in sorted order, then the tree is not a BST

  • Answered by AI
  • Q2. Merge sort using Linked list ( psuedo code )
  • Ans. 

    Merge sort using linked list is a sorting algorithm that divides the list into smaller sublists, sorts them, and then merges them back together.

    • Create a function to merge two sorted linked lists

    • Divide the linked list into two halves using slow and fast pointers

    • Recursively sort the two halves

    • Merge the sorted halves back together

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Stack question of next greater element
  • Q2. Gfg Puzzle around some horse

Interview Preparation Tips

Topics to prepare for Paytm Software Engineer interview:
  • DSA
  • Gfg puzzles

Skills evaluated in this interview

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Maulana Azad National Institute of Technology (NIT), Bhopal and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Question on double linked list , Red and black tree

Round 2 - Technical 

(2 Questions)

  • Q1. Understanding on Double linked list
  • Q2. Understanding on BST.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Puzzles and DSA and OOPS concepts

Round 2 - Coding Test 

Data Structures and Algorithms

Round 3 - Coding Test 

Data Structures and Algorithms, OOPS

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA

Paytm interview questions for designations

 Senior Software Engineer

 (37)

 Software Development Engineer

 (1)

 Software Testing Engineer

 (1)

 Senior Software Engineer Testing

 (1)

 Senior Software Quality Engineer

 (1)

 Software Development Engineer II

 (1)

 Senior Software Engineer 2

 (1)

 Software Development Engineer Test

 (1)

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

I applied via Referral and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - Coding Test 

2 Leetcode easy to medium questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Array based question
Round 3 - Technical 

(1 Question)

  • Q1. Data Structures medium level questions
Round 4 - Behavioral 

(1 Question)

  • Q1. Basic Technical and Behavioural Questions

Get interview-ready with Top Paytm Interview Questions

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

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Duration : 1 Hr
No. of Questions : 3
Topics : Array, Greedy

Round 2 - Technical 

(2 Questions)

  • Q1. Heap Related Question
  • Q2. Convert BST in range
  • Ans. 

    Convert a Binary Search Tree (BST) into a new BST containing only nodes within a given range.

    • Perform inorder traversal of the original BST and only add nodes within the given range to the new BST.

    • Recursively call the function on left and right subtrees while checking the node values against the range.

    • Adjust the pointers of the nodes to form the new BST.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What you like in cricket. Give 3 reasons.
  • Q2. What are you planning for your future like studies and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your confidence high.

Skills evaluated in this interview

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

I was interviewed in Apr 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    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 help Dora obtain the minimum number...

Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Asked three coding questions and CS fundamentals

  • Q1. 

    Min Stack Problem Statement

    Design a special stack that supports the following operations in constant time:

    1. Push(num): Insert the given number into the stack.
    2. Pop: Remove and return the top element ...
  • Q2. 

    Number In Arithmetic Progression Problem

    Given three integers X, C, and Y, where X is the first term of an arithmetic sequence with a common difference of C, determine if Y is part of this arithmetic sequ...

  • Q3. 

    Decode String Problem Statement

    Your task is to decode a given encoded string back to its original form.

    Explanation:

    An encoded string format is <count>[encoded_string], where the 'encoded_string...

Round 3 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

Coding questions and questions related to my project

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Q2. 

    Kth Smallest Element Problem Statement

    You are provided with an array of integers ARR of size N and an integer K. Your task is to find and return the K-th smallest value present in the array. All elements...

Round 4 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

Coding question and project discussion

  • Q1. 

    Detect and Remove Loop in Linked List

    For a given singly linked list, identify if a loop exists and remove it, adjusting the linked list in place. Return the modified linked list.

    Expected Complexity:

    A...

  • Q2. Can you discuss the projects you have worked on?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as Software Engineer in NoidaEligibility criteriaAbove 7.5 CGPAPaytm (One97 Communications Limited) interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPs, Operating System, Machine Learning Projects, DBMSTime required to prepare for the interview - 12 monthsInterview preparation tips for other job seekers

Tip 1 : Focus more on problem solving skills (DSA and CP questions)
Tip 2 : Keep your fundamentals crystal clear
Tip 3 : Read interview experiences on different platforms

Application resume tips for other job seekers

Tip 1 : Keep it limited to one page only.
Tip 2 : Do not put false things on resume. Put only the projects on which you have worked.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via campus placement at Inderprastha Engineering College, Ghaziabad and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Coding Test 

One easy and one medium level question was asked

Round 2 - Technical 

(1 Question)

  • Q1. 2 coding question was asked both on array medium level difficulty and computer science fundamentals and oops concept.
Round 3 - Technical 

(1 Question)

  • Q1. One coding question on array and others managerial question
Round 4 - HR 

(1 Question)

  • Q1. Normal HR Question
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Easy to medium-level array question
  • Q2. Easy to medium-level matrix question
Round 2 - Technical 

(1 Question)

  • Q1. Discussion on my project

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.

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
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
912 salaries
unlock blur

₹2.2 L/yr - ₹8.4 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