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

Filter interviews by

Paytm Backend Developer Intern Interview Questions and Answers

Updated 3 Nov 2024

Paytm Backend Developer Intern Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Resume Grilling
  • Q2. Java based technical questions

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Nov 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About oops dsa questions based on arrays
  • Q2. Sequencing substring
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Assignment 

They call it a Machine coding round where in a call they will provide you with the problem statement and then give you 90 mins to create an LLD patterns-based working solution in any language you are comfortable with.

Round 2 - Coding Test 

2 Coding questions based on graphs and arrays. It was medium to hard leetcode and you need to solve both to proceed to the next round.

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Instahyre and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Machine Coding round on codesignal

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was a machine coding round which revolves around designing a simple application primarily on OOPS

Round 2 - DSA 

(2 Questions)

  • Q1. Best time to sell stocks
  • Ans. 

    The best time to sell stocks is when the market is high and the stock has reached its peak value.

    • Sell when the stock has reached its peak value to maximize profits

    • Consider selling if the company's fundamentals have changed negatively

    • Sell if you need to rebalance your portfolio or have reached your financial goals

  • Answered by AI
  • Q2. Best time to sell stocks 2
  • Ans. 

    The best time to sell stocks is when the market is at a peak and the stock price is high.

    • Monitor market trends and stock performance regularly.

    • Consider selling when the stock reaches a new high or when you have achieved your profit goals.

    • Sell if there are negative news or events that could impact the stock price negatively.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Five advantages of spring boot Which java version you currently use? Features of the java version you use Output from the code Difference between this and super In order to update the string, which will be...
  • Ans. 

    Spring Boot offers advantages like rapid development, easy configuration, embedded servers, production-ready features, and more.

    • Rapid development: Spring Boot simplifies the setup and configuration of Spring applications, allowing developers to focus on writing business logic.

    • Easy configuration: Spring Boot provides auto-configuration, reducing the need for manual setup and boilerplate code.

    • Embedded servers: Spring Boo...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for PayPal Backend Developer interview:
  • Core Java
  • Spring Boot
  • Aspect oriented programming
  • Design Patterns
  • Exception handling
Interview preparation tips for other job seekers - Be prepared with core java concepts and the questions may come from the development side

Skills evaluated in this interview

I applied via Referral and was interviewed in Sep 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Self Introduction about yourself
  • Ans. 

    I am a Backend Associate with experience in developing and maintaining server-side applications.

    • Proficient in programming languages like Java and Python

    • Experience in working with databases like MySQL and MongoDB

    • Familiar with RESTful APIs and microservices architecture

    • Strong problem-solving and debugging skills

    • Ability to work in a team and collaborate effectively

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. How much you know about who's your admire person in your life ?
  • Ans. 

    My admired person in life is my mother.

    • My mother has always been my source of inspiration and support.

    • She has taught me the values of hard work, perseverance, and kindness.

    • Her selflessness and dedication to her family and community are admirable.

    • She has overcome numerous challenges and always remains positive.

    • I strive to be like her in both my personal and professional life.

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

(1 Question)

  • Q1. How much you have experienced, specify about your experience
  • Ans. 

    I have 3 years of experience in backend development.

    • 3 years of experience in backend development

    • Proficient in programming languages like Java and Python

    • Experience with databases like MySQL and MongoDB

    • Familiarity with RESTful APIs and web services

    • Knowledge of version control systems like Git

  • Answered by AI
Round 5 - Graduate with all docs. 

(1 Question)

  • Q1. Do you have all document like your graduation and experience certificate
  • Ans. 

    Yes, I have all the required documents.

    • I have my graduation certificate from XYZ University.

    • I also have experience certificates from my previous employers.

    • I can provide these documents upon request.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, when ever you got a call from HR put ear plugs so that you can hear properly what HR asking to you on a perticular questions.

I was interviewed before Apr 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with 2 DSA problems.

  • Q1. Detect cycle in undirected graph

    You have been given an undirected graph with 'N' vertices and 'M' edges. The vertices are labelled from 1 to 'N'.

    Your task is to find if the grap...

  • Ans. 

    DFS can be used to detect cycle in an undirected graph. Do a DFS traversal of the given graph. For every visited vertex ‘v’, if there is an adjacent ‘u’ such that u is already visited and u is not parent of v, then there is a cycle in graph.

    If we don’t find such an adjacent for any vertex, we say that there is no cycle.

    Pseudocode :

     

    DetectCycle(graph, v, visited[], parent)
    {
    	// mark the current node as visited
    ...
  • Answered by CodingNinjas
  • Q2. Zig-Zag Tree Traversal

    Given a binary tree, return the zigzag level order traversal of the nodes' values of the given tree. Zigzag traversal means starting from left to right, then right to left for th...

  • Ans. 

    This problem can be solved using two stacks.
    Assume the two stacks are current: currentlevel and nextlevel. We would also need a variable to keep track of the current level order(whether it is left to right or right to left). We pop from the currentlevel stack and print the nodes value. Whenever the current level order is from left to right, push the nodes left child, then its right child to the stack nextlevel. 
    Si...

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaytm money interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Instahyre and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Find loop in linked list
  • Ans. 

    To find a loop in a linked list, we use Floyd's cycle-finding algorithm.

    • Floyd's cycle-finding algorithm uses two pointers, one moving at a rate of one node per iteration and the other moving at a rate of two nodes per iteration.

    • If there is a loop in the linked list, the two pointers will eventually meet at some node.

    • To find the starting point of the loop, we reset one of the pointers to the head of the linked list and ...

  • Answered by AI
  • Q2. What challenging task you have done
  • Q3. System design related question
  • Q4. Explain your current project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for data structures and algorithms from gfg.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Cycle detection in a directed graph
  • Ans. 

    Cycle detection in a directed graph

    • Use Depth First Search (DFS) algorithm to detect cycles in a directed graph

    • Maintain a visited set to keep track of visited nodes

    • Maintain a recursion stack to keep track of nodes in the current DFS traversal

    • If a node is visited and is already in the recursion stack, then a cycle is detected

  • Answered by AI
  • Q2. Zig Zag order traversal of a binary tree
  • Ans. 

    Zig Zag order traversal of a binary tree is a way to traverse the tree in a zigzag pattern.

    • Start from the root node and traverse the tree level by level.

    • For odd levels, traverse from right to left.

    • For even levels, traverse from left to right.

    • Use a stack to keep track of the nodes to be traversed.

    • Repeat until all nodes have been visited.

  • Answered by AI
  • Q3. SQL Design: There are multiple trains travelling between multiple stations, write a query to find the number of trains between 2 given station.
  • Ans. 

    Query to find number of trains between 2 given stations in SQL design.

    • Use a JOIN statement to join the tables containing train and station information.

    • Filter the results based on the given stations.

    • Count the number of trains in the result set.

    • Consider the direction of travel and the order of the stations in the query.

    • Handle cases where there are no trains between the given stations.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA properly along with SQL and computer fundamentals.

Skills evaluated in this interview

Paytm Interview FAQs

How many rounds are there in Paytm Backend Developer Intern interview?
Paytm interview process usually has 1 rounds. The most common rounds in the Paytm interview process are One-on-one Round.
What are the top questions asked in Paytm Backend Developer Intern interview?

Some of the top questions asked at the Paytm Backend Developer Intern interview -

  1. Java based technical questi...read more
  2. Resume Grill...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

FIS Interview Questions
3.9
 • 468 Interviews
PhonePe Interview Questions
4.0
 • 297 Interviews
PayPal Interview Questions
3.9
 • 205 Interviews
Fiserv Interview Questions
3.2
 • 166 Interviews
Visa Interview Questions
3.6
 • 134 Interviews
MasterCard Interview Questions
4.0
 • 128 Interviews
Angel One Interview Questions
3.9
 • 126 Interviews
TransUnion Interview Questions
4.0
 • 87 Interviews
Revolut Interview Questions
2.6
 • 87 Interviews
View all
Team Lead
2k salaries
unlock blur

₹2.2 L/yr - ₹9.4 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹10 L/yr - ₹41 L/yr

Software Engineer
1.4k salaries
unlock blur

₹6 L/yr - ₹22.5 L/yr

Sales Executive
960 salaries
unlock blur

₹1 L/yr - ₹6.4 L/yr

Senior Associate
906 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