Upload Button Icon Add office photos

Filter interviews by

PayU Payments Interview Questions, Process, and Tips

Updated 18 Jan 2025

Top PayU Payments Interview Questions and Answers

View all 42 questions

PayU Payments Interview Experiences

Popular Designations

51 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Merge two sorted linked lists
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list

    • Create a new linked list to store the merged result

    • Iterate through both input linked lists and compare nodes to determine the order in which they should be added to the result list

    • Handle cases where one list is longer than the other

  • Answered by AI
  • Q2. Check if paranthesis are balanced or not
  • Ans. 

    To check if parentheses are balanced, use a stack data structure to keep track of opening and closing parentheses.

    • Use a stack to push opening parentheses and pop when encountering a closing parenthesis

    • If stack is empty when encountering a closing parenthesis, return false

    • After iterating through all parentheses, if stack is empty, return true

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

(2 Questions)

  • Q1. Right view of a Binary Search tree
  • Ans. 

    The right view of a Binary Search Tree shows the nodes that are visible when viewing the tree from the right side.

    • The right view of a Binary Search Tree includes the rightmost node at each level.

    • Nodes at each level that are not visible from the right side are not included in the right view.

    • Example: For the Binary Search Tree with values 1, 2, 3, 4, 5, the right view would be 1, 3, 5.

  • Answered by AI
  • Q2. Few javascript questions on how to parse a json object without using inbuilt libraries.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa easy-medium and your projecs in depth.

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Sdet Interview Questions & Answers

user image Swetha

posted on 12 Nov 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. WHAT IS OOPS, INHERITANCE, STATIC DYNAMIC BINDING
  • Ans. 

    OOPS is Object-Oriented Programming, Inheritance is the ability of a class to inherit properties and behavior from another class, Static Binding is resolved at compile time, Dynamic Binding is resolved at runtime.

    • OOPS stands for Object-Oriented Programming, which is a programming paradigm based on the concept of objects.

    • Inheritance is a feature in OOP that allows a class to inherit properties and behavior from another ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for PayU Payments Sdet interview:
  • Selenium

Sdet Interview Questions asked at other Companies

Q1. Given a M x N 2D array containing random alphabets and a function Dict(string word) which returns whether the 'word' is a valid English word. Find all possible valid words you can get from the 2D array, where the alphabets are adjacent to e... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions like what is useEffect hook used for and other basic javascript and react questions

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Case Study 

Case study analysis of your project management skills

Round 2 - Technical 

(2 Questions)

  • Q1. About yourself?
  • Q2. Projects you've worked on?, Detailed discussion about the project , and your role in it?

Technical Project Manager and Scrum Master Interview Questions asked at other Companies

Q1. Have you used 'a specific GCP' solution?
View answer (1)

PayU Payments interview questions for popular designations

 Software Engineer

 (5)

 Software Developer

 (4)

 Business Analyst

 (2)

 Data Scientist

 (2)

 Accounts & Finance Manager

 (1)

 Accounts Payable Executive

 (1)

 Analyst

 (1)

 Assistant Manager

 (1)

Intern-Data Interview Questions & Answers

user image Janki Singh

posted on 24 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are bagging and boosting techniques in machine learning?

Get interview-ready with Top PayU Payments Interview Questions

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Just to know more about why i want the role
Round 2 - Coding Test 

Testing an payment flow on the application

Top PayU Payments Software Engineer Interview Questions and Answers

Q1. Maximum Subarray SumYou are given an array (ARR) of length N, consisting of integers. You have to find the sum of the subarray (including empty subarray) having maximum sum among all subarrays. A subarray is a contiguous segment of an array... read more
View answer (6)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Jobs at PayU Payments

View all

Business Analyst Interview Questions & Answers

user image 217023 ncr.eee.15

posted on 6 Jan 2025

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

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. A tough sql question

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (8)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Lazy loading and eager loading in Java in context of Singleton class
  • Ans. 

    Lazy loading defers the initialization of an object until it is actually needed, while eager loading initializes the object immediately.

    • Lazy loading is commonly used in Singleton pattern to delay the creation of the instance until it is requested.

    • Eager loading initializes the Singleton instance at the time of class loading.

    • Lazy loading can help improve performance by only creating the instance when needed, while eager ...

  • Answered by AI
  • Q2. Connect master and slave instances of a DB in spring boot project
  • Ans. 

    Use Spring Boot configuration to connect master and slave instances of a DB

    • Configure multiple data sources in application.properties or application.yml file

    • Use @Primary annotation for the master data source and @Qualifier annotation for the slave data source

    • Define separate DataSource, JdbcTemplate, and EntityManager beans for each data source

    • Use @Transactional annotation with the appropriate data source to specify whic

  • Answered by AI
  • Q3. Global Exception handler in Spring boot
  • Ans. 

    Global exception handler in Spring Boot handles all exceptions thrown by the application.

    • Global exception handler can be implemented using @ControllerAdvice annotation in Spring Boot.

    • It allows centralized exception handling for all controllers in the application.

    • You can define methods annotated with @ExceptionHandler to handle specific exceptions.

    • Global exception handler can return custom error responses or redirect to

  • Answered by AI

Skills evaluated in this interview

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked ListYou are given two Singly Linked List of integers, which are merging at some node of a third linked list. Your task is to find the data of the node at which merging starts. If there is no merging, return -1. For ex... read more
View answer (4)

GenAI Intern Interview Questions & Answers

user image Anonymous

posted on 12 Aug 2024

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

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

Round 1 - Coding Test 

DSA Questions and resume

Round 2 - One-on-one 

(2 Questions)

  • Q1. Asked to code regression taking any example
  • Q2. About my past internship
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Case Study 

A case study was given which was very confusing, i came up with the solution but seemed that I misinterpreted the scenario.

Round 2 - Technical 

(2 Questions)

  • Q1. What does project manager do
  • Q2. Tell us some risks identified
  • Ans. 

    Some risks identified include budget overruns, scope creep, resource constraints, and stakeholder conflicts.

    • Budget overruns: Potential for unexpected expenses exceeding the allocated budget.

    • Scope creep: Risk of project scope expanding beyond initial requirements.

    • Resource constraints: Possibility of not having enough resources (time, money, personnel) to complete the project.

    • Stakeholder conflicts: Risks associated with ...

  • Answered by AI

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)

PayU Payments Interview FAQs

How many rounds are there in PayU Payments interview?
PayU Payments interview process usually has 2-3 rounds. The most common rounds in the PayU Payments interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for PayU Payments interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at PayU Payments. The most common topics and skills that interviewers at PayU Payments expect are Financial Services, Agile, Python, SQL and investment.
What are the top questions asked in PayU Payments interview?

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

  1. What are the different types of microservices that are commonly utiliz...read more
  2. What types of IT Service Management (ITSM) tools are availab...read more
  3. Which dashboards do you use for monitoring purpos...read more
How long is the PayU Payments interview process?

The duration of PayU Payments interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

PayU Payments Interview Process

based on 28 interviews in last 1 year

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 752 Interviews
FIS Interview Questions
3.9
 • 469 Interviews
PhonePe Interview Questions
4.0
 • 297 Interviews
PayPal Interview Questions
3.9
 • 206 Interviews
HighRadius Interview Questions
2.9
 • 176 Interviews
Razorpay Interview Questions
3.6
 • 151 Interviews
Mobikwik Interview Questions
4.0
 • 44 Interviews
BillDesk Interview Questions
3.2
 • 13 Interviews
Instamojo Interview Questions
3.4
 • 7 Interviews
View all

PayU Payments Reviews and Ratings

based on 413 reviews

3.6/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.5

Salary

3.3

Job security

3.4

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 413 Reviews and Ratings
Data Scientist (Telco)

Gurgaon / Gurugram,

Bangalore / Bengaluru

4-7 Yrs

Not Disclosed

Engineering Manager

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Explore more jobs
Assistant Manager
196 salaries
unlock blur

₹4.6 L/yr - ₹15.8 L/yr

Senior Software Engineer
170 salaries
unlock blur

₹13.3 L/yr - ₹42 L/yr

Software Engineer
169 salaries
unlock blur

₹12 L/yr - ₹33 L/yr

Senior Manager
126 salaries
unlock blur

₹10.5 L/yr - ₹40 L/yr

Manager
99 salaries
unlock blur

₹6.1 L/yr - ₹25 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