Upload Button Icon Add office photos

PayU Payments

Compare button icon Compare button icon Compare

Filter interviews by

PayU Payments Interview Questions, Process, and Tips

Updated 13 Feb 2025

Top PayU Payments Interview Questions and Answers

View all 39 questions

PayU Payments Interview Experiences

Popular Designations

54 interviews found

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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Analyst Interview Questions & Answers

user image Shreyansh Singhania

posted on 21 Nov 2024

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

I applied via Job Portal and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Case Study 

45 min analytical questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Send + more = money
  • Q2. Find the angle 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

  • Answered by AI

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. DSA round containing 2 coding questions along with some Java Questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Design Round along with some puzzles
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial Round

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 (196)

PayU Payments interview questions for popular designations

 Software Engineer

 (5)

 Software Developer

 (4)

 Data Scientist

 (2)

 Senior Software Engineer

 (2)

 Team Manager

 (2)

 Business Analyst

 (2)

 Analyst

 (1)

 Manager

 (1)

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

I applied via Recruitment Consulltant and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. 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 table.

    • RI...

  • Answered by AI
  • Q2. 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.

  • Answered by AI
  • Q3. 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, ena...

  • Answered by AI
  • Q4. 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.

  • Answered by AI
  • Q5. 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

  • Answered by AI
  • Q6. 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

  • Answered by AI
  • Q7. 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)

  • Answered by AI
  • Q8. 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.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please provide your feedback clearly along with appropriate solutions.

Top PayU Payments Associate Production Support Engineer Interview Questions and Answers

Q1. What are the different types of microservices that are commonly utilized?
View answer (1)

Associate Production Support Engineer Interview Questions asked at other Companies

Q1. What are the different types of microservices that are commonly utilized?
View answer (1)

Get interview-ready with Top PayU Payments Interview Questions

Team Manager Interview Questions & Answers

user image Anonymous

posted on 10 Jun 2024

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

(2 Questions)

  • Q1. Provide your Background information
  • Q2. What technologies you have worked on?
  • Ans. 

    I have experience working with a variety of technologies including Java, Python, SQL, and AWS.

    • Java

    • Python

    • SQL

    • AWS

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and tell all you know and how are you best fit for the applied role. What else advice I can give you.

Team Manager Interview Questions asked at other Companies

Q1. To maintain SIEM solution which are the daily activities that you will perform?
View answer (4)

Jobs at PayU Payments

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

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Coding Test 

Search in Rotated sorted array

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Team Manager Interview Questions & Answers

user image Anonymous

posted on 23 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About yourself and experience

Team Manager Interview Questions asked at other Companies

Q1. To maintain SIEM solution which are the daily activities that you will perform?
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Case Study 

Marketing campaign case study

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 (9)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. DBSCAN Clustering
  • Q2. How does current work helps solving use cases for PayU
  • Ans. 

    My current work involves analyzing transaction data to identify patterns and trends, which can help PayU optimize their payment processing services.

    • Analyzing transaction data to identify fraudulent activities and improve security measures for PayU

    • Developing predictive models to forecast transaction volumes and optimize payment processing times

    • Utilizing machine learning algorithms to personalize user experiences and inc...

  • Answered by AI

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)

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

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 750 Interviews
PhonePe Interview Questions
4.0
 • 299 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
HighRadius Interview Questions
2.9
 • 183 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
Mobikwik Interview Questions
3.7
 • 47 Interviews
BillDesk Interview Questions
3.2
 • 14 Interviews
Instamojo Interview Questions
3.6
 • 7 Interviews
View all

PayU Payments Reviews and Ratings

based on 441 reviews

3.5/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.4

Salary

3.2

Job security

3.4

Company culture

3.1

Promotions

3.3

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Software Engineer
183 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
178 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Manager
131 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
98 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare PayU Payments with

Razorpay

3.6
Compare

Paytm

3.3
Compare

Mobikwik

3.7
Compare

PhonePe

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