Upload Button Icon Add office photos

Filter interviews by

Paytm Money Sdet Engineer Interview Questions and Answers

Updated 10 Jan 2024

Paytm Money Sdet Engineer Interview Experiences

Interview questions from similar companies

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

I was interviewed before May 2023.

Round 1 - Coding Test 

Merge 2 unsorted array

Round 2 - Assignment 

Selenium automation framework
Redt assured automation framework

Interview Preparation Tips

Topics to prepare for Mobikwik Sdet Engineer interview:
  • Java
  • Restassured
  • MySQL
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There were 2 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 - Technical 

(3 Questions)

  • Q1. Merge two sorted arrays
  • Ans. 

    Merging two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Iterate through both arrays simultaneously, comparing elements and adding the smaller one to the result array

    • Handle cases where one array is longer than the other by appending the remaining elements

  • Answered by AI
  • Q2. Put patch and post in api testing
  • Ans. 

    Patch and post are HTTP methods used in API testing to update and create resources, respectively.

    • PATCH method is used to update an existing resource in the API

    • POST method is used to create a new resource in the API

    • Both methods are commonly used in RESTful APIs for CRUD operations

    • Example: PATCH /api/users/123 to update user with ID 123

    • Example: POST /api/users to create a new user

  • Answered by AI
  • Q3. Explain your automation framework
  • Ans. 

    My automation framework is a data-driven framework using Selenium WebDriver and TestNG for test execution and reporting.

    • Uses Selenium WebDriver for interacting with web elements

    • Utilizes TestNG for test execution and reporting

    • Follows a data-driven approach for test data management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basic dsa, leetcode problems are asked in interview

Skills evaluated in this interview

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

I was interviewed before May 2023.

Round 1 - Coding Test 

Merge 2 unsorted array

Round 2 - Assignment 

Selenium automation framework
Redt assured automation framework

Interview Preparation Tips

Topics to prepare for Mobikwik Sdet Engineer interview:
  • Java
  • Restassured
  • MySQL
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Asked spiral matrix question and some map related questions and optimise the approach

Round 2 - Technical 

(1 Question)

  • Q1. Asked to automate ui of the provided screen and backed framework of api testing Asked about the project and related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Asked about payment gateway related questions and how to deal with it

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the coding , ui automation and backend automation very well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Nov 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

JAVA,SQL,Testing Parameters

Round 3 - Technical 

(2 Questions)

  • Q1. Concept of oops
  • Ans. 

    Object-oriented programming paradigm that focuses on objects and classes for code organization and reusability.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object)

    • Inheritance: Ability of a class to inherit properties and behavior from another class

    • Polymorphism: Ability to present the same interface for different data types

  • Answered by AI
  • Q2. Code to move 0's to extreme right position
  • Ans. 

    Code to move 0's to extreme right position in an array of strings

    • Iterate through the array and move all 0's to the end of the array

    • Use two pointers approach to swap elements

    • Example: Input array ['1', '0', '3', '0', '5'], Output array ['1', '3', '5', '0', '0']

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. OOps,Hashmaps,Concept of Polymophism,Inheritance etc.
  • Q2. Java collections
Round 5 - HR 

(1 Question)

  • Q1. Basic personality review and your past carrer experience. Since i was a campus candidate they asked me about working in my college projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep an eye on what you write over your resume and be ready with all the possible standard questions from them.

SDE-2 Interview Questions & Answers

KhataBook user image CodingNinjas

posted on 4 Apr 2022

I was interviewed in Oct 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Normal intro followed by 1 DSA question

  • Q1. Alien Dictionary

    Ninja is learning a new but strange language known as Alien Language. Alien language possesses the same alphabets as of English language, but their order is different. The order of letters...

  • Ans. 

    The task is to check whether the given words are sorted lexicographically in an alien language.

    • Read the number of test cases

    • For each test case, read the number of words, the words themselves, and the order string

    • Check if the words are sorted lexicographically based on the given order string

    • Print 'YES' if the words are sorted, else print 'NO'

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

This round was based on checking the knowledge on component breaking of any web page and data flow

  • Q1. System Design Question

    Discuss the components breakdown of the play store home page.

  • Ans. 

    The play store home page consists of various components that provide a user-friendly interface for browsing and discovering apps.

    • Header section displaying the app logo, search bar, and navigation options

    • Featured apps section showcasing popular or recommended apps

    • Categories section for browsing apps based on different genres

    • Top charts section displaying the most downloaded or highest-rated apps

    • New releases section highl...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This round was focused on how the developer is going to contribute to designing the better user experience

  • Q1. System Design Question

    Design the wireframe of ledger management user interface

  • Ans. 

    Design a wireframe for a ledger management user interface.

    • Include a navigation bar for easy access to different sections of the ledger

    • Design a table layout to display the ledger entries with columns for date, description, debit, credit, and balance

    • Add filters and search functionality to easily find specific entries

    • Include options to add, edit, and delete ledger entries

    • Consider adding visual indicators for different typ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BengaluruEligibility criteria4 Years+ experienceKhatabook interview preparation:Topics to prepare for the interview - DSA, Javascript, LLD, System Design, Data flow(Frontend)Time required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 2 DSA Mid-level questions Daily.
Tip 2 : Be confident on the projects mentioned in the resume.

Application resume tips for other job seekers

Tip 1 : Stability in Resume
Tip 2 : Challenging Projects in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Round 1 - Coding Test 

1st Round.
Two DS problem from leetcode.
1.Array next permutation
2. Max share profit

Round 2 - Technical 

(1 Question)

  • Q1. OOPS, Threads, System Design

Interview Preparation Tips

Interview preparation tips for other job seekers - Do some preparation on leetcode for data structure

Paytm Money Interview FAQs

How many rounds are there in Paytm Money Sdet Engineer interview?
Paytm Money interview process usually has 1 rounds. The most common rounds in the Paytm Money interview process are One-on-one Round.

Tell us how to improve this page.

People are getting interviews through

based on 1 Paytm Money interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

HighRadius Interview Questions
2.9
 • 176 Interviews
Razorpay Interview Questions
3.6
 • 150 Interviews
Visa Interview Questions
3.6
 • 134 Interviews
Angel One Interview Questions
3.9
 • 125 Interviews
Kotak Securities Interview Questions
3.7
 • 110 Interviews
HDFC Securities Interview Questions
3.6
 • 99 Interviews
Sharekhan Interview Questions
3.9
 • 76 Interviews
Groww Interview Questions
3.8
 • 65 Interviews
Freecharge Interview Questions
4.0
 • 51 Interviews
Mobikwik Interview Questions
4.0
 • 44 Interviews
View all

Fast track your campus placements

View all

Paytm Money Sdet Engineer Reviews and Ratings

based on 2 reviews

4.6/5

Rating in categories

3.0

Skill development

5.0

Work-Life balance

4.0

Salary & Benefits

3.0

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
72 salaries
unlock blur

₹11 L/yr - ₹33 L/yr

Senior Associate
67 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Software Engineer
58 salaries
unlock blur

₹8.4 L/yr - ₹21.2 L/yr

Team Lead
46 salaries
unlock blur

₹2.5 L/yr - ₹10 L/yr

Associate
29 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Explore more salaries
Compare Paytm Money with

Zerodha

4.2
Compare

Groww

3.8
Compare

Upstox

3.7
Compare

ET Money

3.9
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