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

Filter interviews by

Paytm Back end Executive Interview Questions and Answers

Updated 8 Jun 2023

Paytm Back end Executive Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Group Discussion 

Its only one round that is Hr round and its lit easy

Round 3 - One-on-one 

(2 Questions)

  • Q1. Self introductio
  • Q2. Question related to resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy to crack

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
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 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 Problem Statement

    You are provided with an undirected graph composed of 'N' vertices and 'M' edges, where vertices are labeled from 1 to 'N'.

    Your task is to determine if...

  • 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 Anonymously
  • Q2. 

    Zig-Zag Level Order Traversal of Binary Tree

    Given a binary tree, your task is to perform a zigzag level order traversal. This traversal starts from left to right on the first level, then switches to righ...

  • 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 Anonymously

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

I was interviewed in Jan 2021.

Interview Questionnaire 

1 Question

  • Q1. Insurance

Interview Preparation Tips

Interview preparation tips for other job seekers - 3 years experience

Paytm Interview FAQs

How many rounds are there in Paytm Back end Executive interview?
Paytm interview process usually has 3 rounds. The most common rounds in the Paytm interview process are Resume Shortlist, Group Discussion and One-on-one Round.

Tell us how to improve this page.

Paytm Back end Executive Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

FIS Interview Questions
3.9
 • 479 Interviews
PhonePe Interview Questions
4.0
 • 303 Interviews
PayPal Interview Questions
3.9
 • 209 Interviews
Fiserv Interview Questions
3.1
 • 168 Interviews
Visa Interview Questions
3.5
 • 137 Interviews
MasterCard Interview Questions
4.0
 • 133 Interviews
Angel One Interview Questions
3.9
 • 131 Interviews
Revolut Interview Questions
2.6
 • 93 Interviews
View all
Paytm Back end Executive Salary
based on 6 salaries
₹1.1 L/yr - ₹3 L/yr
31% less than the average Back end Executive Salary in India
View more details
Team Lead
2k salaries
unlock blur

₹2 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
975 salaries
unlock blur

₹1 L/yr - ₹6.4 L/yr

Senior Associate
914 salaries
unlock blur

₹2.1 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