Upload Button Icon Add office photos

Filter interviews by

PayU Payments Software Developer Interview Questions and Answers

Updated 10 Jul 2024

PayU Payments Software Developer Interview Experiences

4 interviews found

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

(1 Question)

  • Q1. Basic DSA Question
Round 2 - Technical 

(1 Question)

  • Q1. Mobile Development Related Questions
Round 3 - HR 

(1 Question)

  • Q1. Basic HR Questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Durgapur and was interviewed in Dec 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Moderate coding which will be easy if you are a computer science student

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What is your favourite subject

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Nice environment

  • Q1. 

    Zigzag Traversal of Binary Tree

    Given a binary tree with integer values in its nodes, your task is to print the zigzag traversal of the tree.

    Note:

    In zigzag order, level 1 is printed from left to right...
  • Ans. Brute force

    We can use level order traversal (recursive) to explore all levels of the tree. Also, at each level nodes should be printed in alternating order. 

     

    For example - First level of tree should be printed in left to right manner, Second level of tree should be printed in right to left manner, Third again in left to right order and so on.

     

    So, we will use a Direction variable whose value will toggle a...

  • Answered Anonymously
Round 2 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Nice Environment

  • Q1. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. Brute force approach

    We use Brute Force to solve this problem.

     

    1. We iterate from 2 to N.
    2. For each number num, we check if it is prime or not. We use the following approach to check if a given number is prime.
      1. We loop through all numbers from 2 to num - 1.
      2. For every number in the loop, we check if it divides num.
      3. If we find any number that divides num, we can say num is not prime.
      4. If num is prime, we store it in the result...
  • Answered Anonymously
  • Q2. What was the use of DBMS in your project, and how did you handle the problems that arose?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPayU interview preparation:Topics to prepare for the interview - Array ,DP ,Graph ,Recursion, Tree ,Queue,BSTTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 good projects
Tip 2 : Practice Atleast 300 Questions
Tip 3 : Should be able to explain your project

Application resume tips for other job seekers

Tip 1 : Always be true with the resume
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Round: Technical Interview
Experience: Finally, I got the offer from PayU. I was very Happy. Thanks AmbitionBox for helping me in my preparation

Skills: Algorithm, data structures
College Name: Na

PayU Payments interview questions for designations

 Software Developer Intern

 (1)

 Senior Software Developer

 (1)

 Software Engineer

 (5)

 Senior Software Engineer

 (2)

 Associate Software Engineer

 (1)

 React Js Frontend Developer

 (1)

 QA Engineer

 (1)

 Sdet

 (1)

Interview questions from similar companies

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
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Basic oops, .net, c# coding, sql questions
Round 2 - Technical 

(1 Question)

  • Q1. More coding and details on project
Round 3 - Technical 

(1 Question)

  • Q1. More on projects and system design and troubleshooting approach
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
Round 5 - Technical 

(1 Question)

  • Q1. More technical + managerial round even after HR round
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. LLD HLD HM rounds
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Guwahati and was interviewed in Nov 2023. There were 4 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 - Coding Test 

Mcqs based on cs fundamentals and 2_3 coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. 2-3 DSA questions to be written on paper in the interview itself
  • Q2. Merge 2 sorted Linked list into 1
  • Ans. 

    Merge two sorted linked lists into one.

    • Create a new linked list to store the merged list.

    • Compare the values of the nodes from both lists and add the smaller value to the new list.

    • Move the pointer of the list with the smaller value to the next node.

    • Repeat the comparison and addition until one of the lists is empty.

    • Add the remaining nodes from the non-empty list to the new list.

    • Return the new merged list.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. A full cv analysis interview round discussion on all the projects and team work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for DSA quite well and make sure you know everything about your CV and must have some team work skills

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Assignment 

Data Structures Algorithms

Round 2 - Coding Test 

Data Structures and Algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for DSA
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Time ,speed ,distance

Round 2 - Assignment 

Java application using oops concept

Round 3 - Technical 

(1 Question)

  • Q1. Inheritance , oops
Round 4 - HR 

(1 Question)

  • Q1. Tell me about urself

PayU Payments Interview FAQs

How many rounds are there in PayU Payments Software Developer interview?
PayU Payments interview process usually has 3 rounds. The most common rounds in the PayU Payments interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in PayU Payments Software Developer interview?

Some of the top questions asked at the PayU Payments Software Developer interview -

  1. Mobile Development Related Questi...read more
  2. Basic DSA Quest...read more

Tell us how to improve this page.

PayU Payments Software Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
PayU Payments Software Developer Salary
based on 27 salaries
₹8.8 L/yr - ₹25 L/yr
116% more than the average Software Developer Salary in India
View more details

PayU Payments Software Developer Reviews and Ratings

based on 5 reviews

4.0/5

Rating in categories

4.3

Skill development

3.8

Work-life balance

3.8

Salary

2.8

Job security

3.7

Company culture

3.1

Promotions

3.7

Work satisfaction

Explore 5 Reviews and Ratings
Assistant Manager
195 salaries
unlock blur

₹4.6 L/yr - ₹15.8 L/yr

Software Engineer
184 salaries
unlock blur

₹13 L/yr - ₹33 L/yr

Senior Software Engineer
178 salaries
unlock blur

₹13.7 L/yr - ₹41 L/yr

Senior Manager
131 salaries
unlock blur

₹10.5 L/yr - ₹44 L/yr

Manager
101 salaries
unlock blur

₹7.2 L/yr - ₹27.4 L/yr

Explore more salaries
Compare PayU Payments with

Razorpay

3.6
Compare

Paytm

3.3
Compare

Mobikwik

4.0
Compare

PhonePe

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview