Upload Button Icon Add office photos
Premium 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 and Answers

Updated 19 Dec 2024

81 Interview questions

A Software Engineer was asked 8mo ago
Q. Given an m x n matrix, where each row and each column is sorted in ascending order, design an efficient algorithm to search for a specific value in the 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

A Software Engineer was asked 10mo ago
Q. What are the differences between a HashMap and a 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 i...

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
A Software Engineer was asked 10mo ago
Q. What are the differences 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 ACI...

A Software Engineer was asked 12mo ago
Q. How do you convert a Binary Search Tree (BST) to a 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.

A Software Engineer was asked
Q. Given the head of a linked list, rotate the list to the right by k places.
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

A Software Engineer was asked
Q. Given a rotated sorted array, find the index of a target element. Return -1 if the element is not found.
Ans. 

Find an element in a rotated sorted array using binary search for efficient lookup.

  • A rotated sorted array is created by taking a sorted array and rotating it at a pivot point.

  • Example: [4, 5, 6, 7, 0, 1, 2] is a rotated version of [0, 1, 2, 4, 5, 6, 7].

  • Use binary search to find the target element, adjusting the search range based on the pivot.

  • If the middle element is greater than the rightmost element, the pivot is...

Paytm HR Interview Questions

146 questions and answers

Q. Can you describe your job journey?
Q. Can you provide information about yourself and your most recent work experience?
Q. Could you please provide a brief overview of your work experience?
A Software Engineer was asked
Q. Implement the quick sort algorithm.
Ans. 

Quick sort is an efficient sorting algorithm that uses a divide-and-conquer approach to sort elements in an array.

  • 1. Choose a 'pivot' element from the array.

  • 2. Partition the array into two sub-arrays: elements less than the pivot and elements greater than the pivot.

  • 3. Recursively apply the above steps to the sub-arrays.

  • 4. Combine the sorted sub-arrays and the pivot to get the final sorted array.

  • Example: For array ...

Are these interview questions helpful?
A Software Engineer was asked
Q. What are five of your strengths and weaknesses?
Ans. 

Strengths: Problem-solving skills, teamwork, adaptability, attention to detail, communication. Weaknesses: Impatience, public speaking, delegation, perfectionism, time management.

  • Strengths: Problem-solving skills - I enjoy tackling complex issues and finding creative solutions.

  • Teamwork - I work well with others and value collaboration in achieving common goals.

  • Adaptability - I am able to quickly adjust to new situ...

A Software Engineer was asked
Q. Given an array, find the next greater element (NGE) for every element. The Next greater Element for an element x is the first greater element on the right side of x in the array. Elements for which no great...
Ans. 

Find the next greater element for each element in an array using a stack for efficient processing.

  • Use a stack to keep track of elements for which we need to find the next greater element.

  • Iterate through the array from right to left.

  • For each element, pop elements from the stack until you find a greater element or the stack is empty.

  • If the stack is not empty, the top element is the next greater element; otherwise, i...

A Software Engineer was asked
Q. Write the pseudo code for Merge Sort using a Linked List.
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

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
  • 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
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
  • Q2. Difference between mongodb and sql

Skills evaluated in this interview

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.
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
  • Q2. Find the element in rotated sorted array

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
  • Q2. Level order traversal with alternate order

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
1w
a team lead
FeedCard Image
Got a question about Paytm?
Ask anonymously on communities.

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.

Overall Interview Experience Rating

4.2/5

based on 40 interview experiences

Difficulty level

Easy 13%
Moderate 88%

Duration

Less than 2 weeks 91%
2-4 weeks 9%
View more
Paytm Software Engineer Salary
based on 1.4k salaries
₹10 L/yr - ₹17.3 L/yr
38% more than the average Software Engineer Salary in India
View more details

Paytm Software Engineer Reviews and Ratings

based on 195 reviews

2.9/5

Rating in categories

3.2

Skill development

2.7

Work-life balance

2.6

Salary

2.3

Job security

2.5

Company culture

2.3

Promotions

2.8

Work satisfaction

Explore 195 Reviews and Ratings
Software Engineer-Flutter Developer -Paytm Money

Noida,

Bangalore / Bengaluru

1-2 Yrs

₹ 4.8-16 LPA

Software Engineer-Flutter Developer -Paytm Money

Bangalore / Bengaluru

2-4 Yrs

₹ 10-15 LPA

Backend - Software Engineer

Noida

1-3 Yrs

₹ 3.8-24 LPA

Explore more jobs
Team Lead
2k salaries
unlock blur

₹3.9 L/yr - ₹8.6 L/yr

Senior Software Engineer
1.5k salaries
unlock blur

₹14.8 L/yr - ₹32 L/yr

Software Engineer
1.4k salaries
unlock blur

₹10 L/yr - ₹17.3 L/yr

Senior Associate
953 salaries
unlock blur

₹3.3 L/yr - ₹7.5 L/yr

Key Account Manager
903 salaries
unlock blur

₹4.5 L/yr - ₹10 L/yr

Explore more salaries
Compare Paytm with

BharatPe

3.5
Compare

Zerodha

4.3
Compare

Razorpay

3.6
Compare

Mobikwik

3.5
Compare
write
Share an Interview