Upload Button Icon Add office photos

PayU Payments

Compare button icon Compare button icon Compare

Filter interviews by

PayU Payments Interview Questions and Answers

Updated 4 Jun 2025
Popular Designations

38 Interview questions

An Associate Production Support Engineer was asked 5mo ago
Q. Which dashboards do you use for monitoring purposes?
Ans. 

I use Grafana and Kibana dashboards for monitoring purposes.

  • Grafana is used for visualizing time series data and monitoring metrics.

  • Kibana is used for analyzing and visualizing logs and other time-series data.

View all Associate Production Support Engineer interview questions
An Associate Production Support Engineer was asked 5mo ago
Q. What is the maximum salary in the employee table?
Ans. 

The maximum salary in the employee table can be found by querying the database for the highest salary value.

  • Query the employee table for the maximum salary using SQL: SELECT MAX(salary) FROM employee;

  • Check for any outliers or errors in the salary data before determining the maximum value.

  • Consider any potential bonuses or additional compensation that may affect the salary values.

View all Associate Production Support Engineer interview questions
An Associate Production Support Engineer was asked 5mo ago
Q. What are the different types of microservices that are commonly utilized?
Ans. 

Common types of microservices include API gateways, service discovery, and event-driven architecture.

  • API gateways: Acts as a single entry point for multiple microservices, handling authentication, routing, and load balancing.

  • Service discovery: Allows microservices to find and communicate with each other dynamically, without hardcoding IP addresses.

  • Event-driven architecture: Microservices communicate through events...

View all Associate Production Support Engineer interview questions
An Associate Production Support Engineer was asked 5mo ago
Q. What are joins in SQL, and how do they function?
Ans. 

Joins in SQL are used to combine rows from two or more tables based on a related column between them.

  • Joins are used to retrieve data from multiple tables based on a related column.

  • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • INNER JOIN returns rows when there is at least one match in both tables.

  • LEFT JOIN returns all rows from the left table and the matched rows from the right tab...

View all Associate Production Support Engineer interview questions

What people are saying about PayU Payments

View All
terrificpuri
Verified Icon
2w
works at
PayU Payments
What is the Ideal CTC for a Data Analyst with 4 Years of Experience?
Hi, I am a Data Analyst (SQL, Python, Tableau) with 4 years of experience. My current CTC is ₹9.9 LPA, including variables. What should be my expected CTC be as per industry standards?
Got a question about PayU Payments?
Ask anonymously on communities.
An Associate Production Support Engineer was asked 5mo ago
Q. What type of database is used?
Ans. 

The type of database used is a relational database management system (RDBMS).

  • Uses tables to store data

  • Supports SQL for querying and managing data

  • Examples include MySQL, PostgreSQL, Oracle

View all Associate Production Support Engineer interview questions
An Associate Production Support Engineer was asked 5mo ago
Q. What are the different types of VLOOKUP formulas?
Ans. 

VLOOKUP formulas are used in Excel to search for a value in a table and return a corresponding value from another column.

  • VLOOKUP with exact match: =VLOOKUP(lookup_value, table_array, col_index_num, FALSE)

  • VLOOKUP with approximate match: =VLOOKUP(lookup_value, table_array, col_index_num, TRUE)

  • VLOOKUP with wildcard characters: =VLOOKUP(CONCATENATE('*', lookup_value, '*'), table_array, col_index_num, FALSE)

View all Associate Production Support Engineer interview questions
An Associate Production Support Engineer was asked 5mo ago
Q. What types of APIs have you used?
Ans. 

I have used RESTful APIs, SOAP APIs, and GraphQL APIs in my previous projects.

  • RESTful APIs: Used for creating, updating, reading, and deleting resources over HTTP.

  • SOAP APIs: Used for exchanging structured information in the implementation of web services.

  • GraphQL APIs: Used for querying specific data requirements and receiving a predictable response.

View all Associate Production Support Engineer interview questions
Are these interview questions helpful?
An Associate Production Support Engineer was asked 5mo ago
Q. What types of IT Service Management (ITSM) tools are available?
Ans. 

ITSM tools are software solutions that help organizations manage and optimize their IT services.

  • Incident management tools

  • Change management tools

  • Problem management tools

  • Asset management tools

  • Service catalog tools

  • Service desk tools

View all Associate Production Support Engineer interview questions
An Analyst was asked 7mo ago
Q. How do you calculate the angle between the hour and minute hands on a clock at 3:20?
Ans. 

To find the angle at 3:20, we need to calculate the minute hand's position relative to the hour hand.

  • Calculate the angle made by the hour hand with the 12 o'clock position at 3:20 (20 minutes past 3)

  • Calculate the angle made by the minute hand with the 12 o'clock position at 3:20

  • Find the difference between the two angles to get the angle at 3:20

View all Analyst interview questions
A Project Manager was asked 7mo ago
Q. Tell us about some risks you have 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 ...

View all Project Manager interview questions

PayU Payments Interview Experiences

57 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.
  • Ans. 

    Learn how to manually parse a JSON object in JavaScript without using built-in libraries.

    • Use string manipulation methods like split() to break down the JSON string.

    • Identify key-value pairs by looking for ':' and separating them.

    • Handle nested objects by recursively parsing the string.

    • Convert strings to appropriate data types (e.g., numbers, booleans).

    • Example: For a string '{"name":"John"}', split by '{', '}', and ':'.

  • Answered by AI

Interview Preparation Tips

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

Skills evaluated in this interview

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

I appeared for an interview in Jan 2025.

Round 1 - One-on-one 

(1 Question)

  • Q1. Deep dive into java concepts. Max diameter of a tree in java.
  • Ans. 

    Max diameter of a tree in Java is the longest path between any two nodes in a tree.

    • The diameter of a tree can be calculated by finding the longest path between any two nodes in the tree.

    • This can be done by finding the longest path from the root to a leaf node, and then finding the longest path from another leaf node to the root.

    • The sum of these two paths gives the diameter of the tree.

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

(1 Question)

  • Q1. Lld of loan and borrower design. Design dbs schema. About connection pool, db isolation.
Round 3 - One-on-one 

(1 Question)

  • Q1. Hiring manager round, more about previous experience and some hypothetical questions.

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
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
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?

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?
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

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

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

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. Which dashboards do you use for monitoring purpos...read more
  3. few javascript questions on how to parse a json object without using inbuilt li...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.

Overall Interview Experience Rating

4.3/5

based on 58 interview experiences

Difficulty level

Easy 8%
Moderate 81%
Hard 12%

Duration

Less than 2 weeks 75%
2-4 weeks 17%
6-8 weeks 4%
More than 8 weeks 4%
View more

Interview Questions from Similar Companies

PayPal Interview Questions
3.8
 • 224 Interviews
Razorpay Interview Questions
3.6
 • 159 Interviews
Angel One Interview Questions
3.8
 • 148 Interviews
Visa Interview Questions
3.5
 • 145 Interviews
MasterCard Interview Questions
3.9
 • 144 Interviews
Revolut Interview Questions
2.6
 • 103 Interviews
TransUnion Interview Questions
3.9
 • 93 Interviews
Rupeek Interview Questions
3.7
 • 65 Interviews
View all

PayU Payments Reviews and Ratings

based on 504 reviews

3.5/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

3.4

Salary

3.1

Job security

3.4

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 504 Reviews and Ratings
Assistant Manager
224 salaries
unlock blur

₹4.9 L/yr - ₹17.5 L/yr

Software Engineer
201 salaries
unlock blur

₹12.1 L/yr - ₹36 L/yr

Senior Software Engineer
183 salaries
unlock blur

₹13.5 L/yr - ₹42 L/yr

Senior Manager
145 salaries
unlock blur

₹11.5 L/yr - ₹40 L/yr

Manager
103 salaries
unlock blur

₹8.5 L/yr - ₹28 L/yr

Explore more salaries
Compare PayU Payments with

Angel One

3.8
Compare

Broadridge Financial Solutions

3.9
Compare

AGS Transact Technologies

3.0
Compare

PayPal

3.8
Compare
write
Share an Interview