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.2k Reviews

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. Binary strings with no consecutive 1s. You have been given an integer K. Your task is to generate all binary strings of length K such that there are no consecutive 1s in ...read more
  • Q3. Longest Consecutive Sequence You are given an unsorted array/list 'ARR' of 'N' integers. Your task is to return the length of the longest consecutive sequence. The consec ...read more
View all 89 questions

Paytm Software Engineer Interview Experiences

57 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

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 DuplicateYou have been given an integer array/list(ARR) of s ... 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

 (36)

 Software Development Engineer

 (3)

 Software Testing Engineer

 (2)

 Lead Software Engineer

 (1)

 Senior Software Engineer Testing

 (1)

 Senior Software Engineer 2

 (1)

 Senior Software Quality Engineer

 (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

Software Engineer interview

user image Tech My Hire

posted on 14 Dec 2021

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

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 32 interviews in last 1 year

3 Interview rounds

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

People are getting interviews through

based on 25 Paytm interviews
Campus Placement
Job Portal
Referral
WalkIn
44%
24%
16%
4%
12% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.
Paytm Software Engineer Salary
based on 1.4k salaries
₹5.5 L/yr - ₹23 L/yr
62% 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.2

Skill development

2.6

Work-Life balance

2.6

Salary & Benefits

2.2

Job Security

2.4

Company culture

2.2

Promotions/Appraisal

2.7

Work Satisfaction

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

₹2 L/yr - ₹9.2 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹10 L/yr - ₹41 L/yr

Software Engineer
1.4k salaries
unlock blur

₹5.5 L/yr - ₹23 L/yr

Sales Executive
960 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