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 Development Engineer Interview Questions and Answers

Updated 23 Nov 2024

Paytm Software Development Engineer Interview Experiences

3 interviews found

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

I applied via campus placement at Delhi College of Engineering (DCE), Delhi and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Backend Questions related to project I mentioned on resume
  • Q2. LinkedList questions from easy to medium. One was like to insert the gcd of consecutive two nodes in between them .
Round 2 - HR 

(2 Questions)

  • Q1. Basic Hr questions.why you wanna join.
  • Q2. Star questions in behaviour round

Interview Preparation Tips

Interview preparation tips for other job seekers - Interact with interview as much as poss

Software Development Engineer interview

user image Aim2Crack

posted on 24 Nov 2021

Software Development Engineer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given an acyclic graph of a city where each edge represents a roa ... read more
asked in Hike
Q2. You have application which shows list of all contacts, the Name c ... read more
asked in Amazon
Q3. Given a m * n matrix filled with '0's and 'x's at random position ... read more
asked in Samsung
Q4. puzzle-There are 1000 wine bottles. One of the bottles contains p ... read more
asked in Accenture
Q5. Have you worked on cloud technology? Architecture of cloud

Software Development Engineer interview

user image Shanu Garg

posted on 24 Nov 2021

Interview questions from similar companies

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

I applied via Referral and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. /Tell me about your day to day activities
Round 2 - HR 

(1 Question)

  • Q1. What will do if your manager doesn't allow leave to you but to colleague.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Coding Test 

One question related to object-oriented programming and one question related to data structures and algorithms.

Round 2 - Technical 

(1 Question)

  • Q1. DSA - 2 questions need to solve in 45 min with optimal solution one based on recursion and another is based on 2 pointers.
Round 3 - Technical 

(1 Question)

  • Q1. Can you describe the system design for the checkout feature on Amazon, including the request body, API calls, load balancing, database caching, and content delivery network (CDN) considerations?
Round 4 - Behavioral 

(1 Question)

  • Q1. Questions regarding your resume, previous company project work, and behavioral topics.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. What are software development design patterns? Can you explain singleton design pattern and code an example to show that?
  • Ans. 

    Software development design patterns are reusable solutions to common problems encountered in software design.

    • Design patterns help in creating maintainable, scalable, and efficient software.

    • Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Example: Implementing a singleton class in Java -

    • public class Singleton { private static Singleton instance; private Singleto...

  • Answered by AI
  • Q2. Can you develop and simple API app to show its running and anyone request sending to it?
  • Q3. What kind of databases you’ve worked on? And explain what is DML!
  • Ans. 

    I have worked on relational databases like MySQL and PostgreSQL. DML stands for Data Manipulation Language.

    • Worked on MySQL and PostgreSQL databases

    • Familiar with writing SQL queries for data manipulation

    • DML stands for Data Manipulation Language

  • Answered by AI
  • Q4. When we work with micro services , what is your experience which becomes challenge?
  • Ans. 

    One challenge when working with microservices is managing communication between services.

    • Ensuring proper service discovery and registration

    • Handling network latency and failures

    • Implementing effective monitoring and logging

    • Maintaining consistency and data integrity across services

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. What are the types of deployments?
  • Ans. 

    Types of deployments include blue-green, canary, rolling, and immutable.

    • Blue-green deployment involves running two identical production environments and switching between them.

    • Canary deployment gradually rolls out changes to a small subset of users before deploying to the entire infrastructure.

    • Rolling deployment updates a few instances at a time, ensuring continuous availability.

    • Immutable deployment creates new instanc

  • Answered by AI
  • Q2. What is Blue Green Deployment ?
  • Ans. 

    Blue Green Deployment is a software release strategy that reduces downtime and risk by running two identical production environments.

    • In Blue Green Deployment, one environment (blue) is live and serving production traffic while the other (green) is idle and ready to be switched to at any time.

    • This strategy allows for zero downtime deployments, as the switch between blue and green environments can be done seamlessly.

    • Blue...

  • Answered by AI
  • Q3. I was asked travelling salesman problem to solve.!
Round 3 - Bar Raiser 

(6 Questions)

  • Q1. Tell me what you liked in last 2 rounds!
  • Ans. 

    I enjoyed the challenging technical questions and the opportunity to showcase my problem-solving skills.

    • Challenging technical questions

    • Opportunity to showcase problem-solving skills

  • Answered by AI
  • Q2. Explain me the best project as per you which you worked upon and features of it.
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Implemented user authentication and authorization using JWT tokens

    • Integrated real-time chat feature using WebSockets

    • Utilized React for front-end and Node.js for back-end development

  • Answered by AI
  • Q3. Some RegEx related questions were asked.
  • Q4. How vector databases work?
  • Ans. 

    Vector databases store data in a vector format, allowing for efficient querying and analysis of high-dimensional data.

    • Vector databases use vectors to represent data points in a multi-dimensional space.

    • They are commonly used in machine learning and data science applications for tasks like similarity search and clustering.

    • Examples of vector databases include Faiss, Annoy, and Milvus.

  • Answered by AI
  • Q5. If I give you a coding problem to solve in the language you don’t know, can you solve it, when you’re allowed to refer Google search?
  • Ans. 

    Yes, I can solve a coding problem in a language I don't know with Google search.

    • Utilize Google search to understand syntax and concepts in the unfamiliar language

    • Break down the problem into smaller parts and search for solutions to each part

    • Refer to online resources, forums, and documentation for guidance

    • Practice writing and testing code snippets in the new language before attempting the full solution

  • Answered by AI
  • Q6. How you can parse location and shop name from a card transaction string?
  • Ans. 

    Use regex to extract location and shop name from transaction string.

    • Use regular expressions to match patterns for location and shop name.

    • Look for keywords like 'at', 'from', 'in' to identify location.

    • Consider variations in transaction strings and account for them in regex patterns.

    • Example: 'Spent $50 at Starbucks Coffee' -> Location: Starbucks Coffee, Shop Name: Starbucks Coffee

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - We really can’t have fixed questions, be sure with what you’ve worked upon. And also be clear about what you admire as next step to work.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

A test that covers all fundamental topics, including networking, object-oriented programming (OOP), and data structures and algorithms (DSA).

Round 2 - Technical 

(2 Questions)

  • Q1. Write code for quick sort
  • Q2. Puzzle
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
No response

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the react lifecycle functions and how they work
  • Ans. 

    React lifecycle functions are methods that are automatically called at specific points in a component's life cycle.

    • Mounting: constructor, render, componentDidMount

    • Updating: render, componentDidUpdate

    • Unmounting: componentWillUnmount

  • Answered by AI
  • Q2. Css box model, difference between padding and margin
  • Ans. 

    Padding is the space inside the border of an element, while margin is the space outside the border.

    • Padding is used to create space between the content and the border of an element.

    • Margin is used to create space between the border of an element and other elements.

    • Padding affects the size of the content area, while margin affects the positioning of the element.

    • Example: padding: 10px will create 10 pixels of space inside ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations in CTC and variables?
  • Q2. Will you relocate to the location required?

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare everything bookish! don't only speak related to your experience

Skills evaluated in this interview

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

Write code for advance surrying in js

Round 2 - Coding Test 

Implement custom hook for api call

Round 3 - Behavioral 

(2 Questions)

  • Q1. Basic questions arounf my previous work
  • Q2. Technical questions around performance and code optimization
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

Basic Oops MCQ and aptitude and one da

Round 2 - Technical 

(1 Question)

  • Q1. Basic dsa and project
Round 3 - Technical 

(1 Question)

  • Q1. DSA and project related

Paytm Interview FAQs

How many rounds are there in Paytm Software Development Engineer interview?
Paytm interview process usually has 2 rounds. The most common rounds in the Paytm interview process are Technical and HR.
How to prepare for Paytm Software Development 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 Agile, Android, Automation, Debugging and Linux.
What are the top questions asked in Paytm Software Development Engineer interview?

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

  1. LinkedList questions from easy to medium. One was like to insert the gcd of con...read more
  2. Star questions in behaviour ro...read more

Tell us how to improve this page.

Paytm Software Development Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

FIS Interview Questions
3.9
 • 480 Interviews
PhonePe Interview Questions
4.0
 • 307 Interviews
PayPal Interview Questions
3.9
 • 211 Interviews
Fiserv Interview Questions
3.0
 • 171 Interviews
Visa Interview Questions
3.5
 • 137 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
Angel One Interview Questions
3.9
 • 134 Interviews
Revolut Interview Questions
2.6
 • 95 Interviews
View all
Paytm Software Development Engineer Salary
based on 62 salaries
₹7.3 L/yr - ₹23.5 L/yr
At par with the average Software Development Engineer Salary in India
View more details

Paytm Software Development Engineer Reviews and Ratings

based on 5 reviews

3.8/5

Rating in categories

4.0

Skill development

3.5

Work-life balance

3.7

Salary

2.5

Job security

3.7

Company culture

1.9

Promotions

2.9

Work satisfaction

Explore 5 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
976 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.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview