GeeksforGeeks Experience · Jul 2025

Paytm Interview Experience (For 2 -3 years Experienced)

Interview Experience

Recently I got a call from the Paytm Money HR team through one Job portal where I have put my profile. Feb 2021 There were total 4 rounds (online test+2 technical on Googl...

Full Details

Recently I got a call from the Paytm Money HR team through one Job portal where I have put my profile. Feb 2021 There were total 4 rounds (online test+2 technical on Google Meet +HR)
1. Online Test: There were 2 coding questions asked and 1.5 hrs. Time was given to solve both the problems on the Mettl test platform. I had to implement alt+tab functionality of computer keyword was recently used window should populate first while pressing alt+tab buttons, for Example [2,3,4,1] four windows are opened in a given order if I recently used 3rd window then the output should be [3,2,4,1]. Using two stacks I solved the problem and all test cases were run. Count minimum swap to make string palindrome. ( https://www.geeksforgeeks.org/dsa/count-minimum-swap-to-make-string-palindrome/ ) I could solve this problem partially. Next day after the test, I got mail that they have shortlisted me for further interview rounds. 2. Technical Interview

Round 1 The interviewer was a very cool person he asked to tell me about yourself and some project-related basic questions that I am currently working on. Reverse the linked list using recursion and asked me to write the code, I tried to write the code, but I was stuck while writing the recursion logic, I told him I can write the code without recursion using while loop then he agreed and wrote the code for same. He asked me to find the loop in the linked list: First I told him the brute force approach using two for loops by comparing each node's next pointer, he asked me to optimize the problem, I told him o(n)

time complexity logic using hash map but, he wanted me to write the logic without any extra space. Then I finally gave him Floyd's Cycle-Finding Algorithm logic and wrote the code for the same.

Coding question he asked me to double all zeros in its adjacent index and shift next elements to its right next index and remove the elements which exceed the size of the array. For example,

Input -[1,2,0,4,0,6,3,8] Output- [1,2,0,0,4,0,0,6] First I gave brute force approach in O(n2)

time complexity he asked me to write the code in o(n)

time complexity I gave the solution using extra O(n) space in O(n) time complexity. He asked me about one java related question about the final class and its certain scenarios I gave him an answer, but he was not satisfied and corrected me where I was wrong. At the last he asked me, do you have any questions? I asked a few of the questions related to the team and project that I was being

hired for, I was so nervous after my java question's answer and asked the recruiter about the feedback and can I expect a second round? , he laughed and told me he can not share my feedback right now. Luckily next day I got called for the next interview round. 3.Technical Interview

Round 2 First, the interviewer asked me about tell me about yourself then he gave me one coding question find the element in rotated sorted array I told him the first approach by checking all the elements in o(n) time he asked me to optimize further than I told him binary search approach in o(logn) time he asked me to write the code for this approach I started to write the code on notepad but stuck in between then he gave me one hint, and then I wrote complete code. After that he asked me some web services related questions that I have mentioned in my resume, Hash Map functionality, he asked me one question about all the life cycles in the thread I told him I have never written thread code by myself, but I know how multithreading works in java and explained him. Further, he asked me about DNS and how it works I told him I am not aware of this. Later he asked me do you have any question, I asked some questions related to Paytm Company, technologies, etc. 4.

HR Round: This was a very small discussion on the phone where HR asked me why do you want to leave my current job and CTC that they are offering and all. Key Points: Do not try to give the answer if you are not aware simply you can tell them that you are not aware and be confident. BEST OF LUCK For your interview. Thanks, GeeksforGeeks, I have done all my preparation from here only and your companies wise practice segment helped me a lot.

Free preview — 6 questions shown. Unlock all Paytm questions →

Topics

Arrays Strings Linked List Recursion Binary Search Hash Table

About Paytm Interview Reports

This question was reported by a candidate who interviewed at Paytm. LeakCode aggregates interview reports from 10+ sources, including 1Point3Acres, Glassdoor, LeetCode Discuss, Blind, Reddit, Indeed, and Nowcoder. Each report is translated where necessary, deduplicated against existing entries, and tagged by company, role, round type, and reporting date.

Use this question as one calibration data point, not a memorization target. Companies typically rotate their question pools every 2-4 months; the exact wording of a 2024 question may differ from what you encounter today. The underlying pattern, difficulty level, and follow-up depth at Paytm are the higher-signal extractions to take from this report.

For broader preparation context, the Paytm interview process typically includes a recruiter screen, one or two technical phone screens, and a 4-5 round on-site loop covering coding, system design (at L4+ levels), and behavioral. Reports tagged on LeakCode show the round-by-round distribution and typical difficulty calibration. To browse questions filtered by round type and seniority, use the company hub linked above.

How To Practice This Type of Question

Solve similar problems on LeetCode under timed conditions (25-35 minutes per medium difficulty). The goal is pattern recognition: recognize the underlying technique (sliding window, two-pointer, BFS, memoized recursion, etc.) within 60-90 seconds of reading. Strong candidates verbalize their hypothesis out loud before coding, then iterate based on feedback. Weak candidates dive into implementation immediately, lose time on the wrong approach, and run out of time for follow-ups.

Companies update their question pools every 2-4 months. The exact wording of any given question may have been retired by the time you interview. Focus your prep on the pattern, not the specific problem. The patterns that appear in Paytm reports consistently are the ones worth investing in; one-off niche problems are not.

During Your Paytm Round

Apply the standard interview round template: clarify requirements (2-3 minutes), state your approach out loud and confirm direction with the interviewer (3-5 minutes), code with narration (15-25 minutes), test with concrete examples including edge cases (5 minutes), discuss optimization or trade-offs if time permits (5 minutes). This template is universally accepted across FAANG and adjacent companies; deviating from it produces weaker interviewer feedback signal.

The single most predictive failure mode in Paytm reports tagged "no hire": not asking clarifying questions. Interviewers are explicitly trained to weight this. Strong candidates ask 3-5 clarifying questions even on problems that look obvious; weak candidates dive into code immediately. The clarifying-question check is often the first signal recorded in the interviewer's written notes.