Upload Button Icon Add office photos

PayU Payments

Compare button icon Compare button icon Compare

Filter interviews by

PayU Payments Program Manager Interview Questions and Answers

Updated 23 May 2024

PayU Payments Program Manager Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is api ?
  • Ans. 

    API stands for Application Programming Interface. It is a set of rules and protocols that allows different software applications to communicate with each other.

    • APIs define the methods and data formats that applications can use to request and exchange information.

    • They allow developers to access the functionality of a system or service without needing to understand its internal workings.

    • Examples of APIs include Google Ma...

  • Answered by AI
  • Q2. What is rest api ?
  • Ans. 

    REST API stands for Representational State Transfer Application Programming Interface. It is a set of rules and protocols for building and interacting with web services.

    • REST API is a type of web service that allows communication between different systems over the internet.

    • It uses standard HTTP methods like GET, POST, PUT, DELETE to perform operations on resources.

    • REST APIs typically return data in JSON or XML format.

    • Th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not too technical

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. What is your goal

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice interview I have to learn nice concepts
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Onky check my performance
Round 2 - One-on-one 

(1 Question)

  • Q1. Do you have experience in sales
  • Ans. 

    Yes, I have 5 years of experience in sales, including managing a team and exceeding sales targets.

    • 5 years of experience in sales

    • Managed a team

    • Exceeded sales targets

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

(1 Question)

  • Q1. Ask for past performance and growth

I applied via LinkedIn and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. General question about bigadata, and it’s implementation
  • Q2. Managing program in distributed environments
  • Ans. 

    Managing programs in distributed environments requires effective communication, collaboration, and coordination.

    • Establish clear communication channels and protocols

    • Use collaboration tools such as video conferencing and project management software

    • Ensure all team members have access to necessary resources and information

    • Establish regular check-ins and progress updates

    • Anticipate and address potential challenges related to...

  • Answered by AI
  • Q3. Key challenges faced and its solutions
  • Ans. 

    Key challenges faced and solutions as a Program Manager

    • One of the key challenges is managing stakeholder expectations

    • Solution is to establish clear communication channels and set realistic goals

    • Another challenge is managing project scope and changes

    • Solution is to have a change management process in place and regularly review project scope

    • Resource allocation and management can also be a challenge

    • Solution is to have a cl...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Job description to be followed
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - HR 

(1 Question)

  • Q1. How well do you know about your previous company, and what do you know about the company of your interviewer?
  • Ans. 

    I have a strong understanding of my previous company's operations and culture. I have also researched the interviewer's company to gain insights.

    • I have worked at my previous company for X years, gaining experience in various departments such as sales, marketing, and operations.

    • I am familiar with the company's mission, values, and key stakeholders.

    • I have researched the interviewer's company online, learning about their ...

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. How important is it to work on your voice tone, English proficiency, and understanding of your job profile?
  • Ans. 

    Working on voice tone, English proficiency, and job understanding is crucial for an Assistant Manager.

    • Voice tone impacts communication with team members and superiors.

    • English proficiency ensures clear and effective communication in a professional setting.

    • Understanding of job profile leads to better decision-making and problem-solving.

    • Improving these skills can enhance leadership abilities and overall performance.

  • Answered by AI

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

test timing: 7-8 pm
2 programming questions
webcam proctored

  • Q1. 

    Minimum Cost to Reach End Problem

    You are provided with an array ARR of integers of size 'N' and an integer 'K'. The goal is to move from the starting index to the end of the array with the minimum possib...

  • Ans. 

    Find minimum cost to reach end of array by jumping with constraints

    • Use dynamic programming to keep track of minimum cost at each index

    • Iterate through the array and update the minimum cost based on reachable indices within K steps

    • Calculate cost to jump from current index to reachable indices and update minimum cost accordingly

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteria7 CGPA and above, no dead backlogsVisa interview preparation:Topics to prepare for the interview - Data Structures, Dynamic Programming, OOPS, Computer Architecture, Algorithms, Bit Manipulation, Operating System, Computer Networking, Cloud conceptsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Ability to apply data structures in questions(practice graph and Tree questions)
Tip 2 : Thorough knowledge of the projects done
Tip 3 : Good knowledge about computer science concepts

Application resume tips for other job seekers

Tip 1 : Mention projects that you have done yourself and are thorough with 
Tip 2 : mention soft skills

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    The task is to check whether a given string is a palindrome or not, considering only alphabets and numbers and ignoring symbols and whitespaces.

    • Convert the string to lowercase and remove all symbols and whitespaces.

    • Reverse the modified string and compare it with the original string.

    • If they are equal, then the string is a palindrome.

    • If not, then the string is not a palindrome.

  • Answered by AI
  • Q2. 

    Square Root (Integral) Problem Statement

    Given a number N, calculate its square root and output the integer part only.

    Example:

    Input:
    18
    Output:
    4
    Explanation:

    The square root of 18 is approximate...

  • Ans. 

    The task is to find the integral part of the square root of a given number.

    • Use the built-in square root function to find the square root of the number.

    • Convert the result to an integer by rounding down or using the floor function.

    • Print the integer part of the square root as the output.

  • Answered by AI
  • Q3. 

    Min Steps to One Using Dynamic Programming

    Given a positive integer N, your task is to determine the minimum number of steps required to reduce N to 1.

    Allowed Operations:

    1) Subtract 1 from it: n = n -...
  • Ans. 

    The task is to find the minimum number of steps required to reduce a positive integer to 1 using three given operations.

    • Use dynamic programming to solve the problem efficiently.

    • Create an array to store the minimum steps required for each number from 1 to N.

    • Iterate from 2 to N and calculate the minimum steps for each number based on the three operations.

    • Return the minimum steps for N.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

They started Fundamentals of OOP- Inheritance, Polymorphism

  • 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]
    Out...
  • Ans. 

    The maximum sum of any contiguous subarray in an array is found using Kadane's algorithm in O(N) time.

    • Initialize two variables, maxSum and currentSum, both set to the first element of the array.

    • Iterate through the array from the second element.

    • For each element, update currentSum by adding the element to it.

    • If currentSum becomes negative, reset it to 0.

    • If currentSum is greater than maxSum, update maxSum.

    • After iterating ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Medium

Some people had two HR interviews but I only had one and interview went up till 11:30 pm and you get only 5-10 minutes to prepare for HR on Zoom

Interview Preparation Tips

Eligibility criteria7 cgpaMasterCard interview preparation:Topics to prepare for the interview - DBMS, Data Structures and Algorithms , OOP, Maths puzzles, Aptitude , CN, OSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Solve atleast 200 problems
Tip 2 : Focus on all data structures 
Tip 3 : Build some good projects

Application resume tips for other job seekers

Tip 1 : Keep it precise and concise.
Tip 2 : Build your resume yourself according your skills

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. More about my technical side.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay connected with good data which may help in current situation for interview process.

I applied via Naukri.com and was interviewed in Feb 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About the project, Spring concepts, core Java, JUnits etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, know what you are speaking, clear your mind before the interview and get your thoughts together.

I applied via Campus Placement and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you ans calmly

PayU Payments Interview FAQs

How many rounds are there in PayU Payments Program Manager interview?
PayU Payments interview process usually has 1 rounds. The most common rounds in the PayU Payments interview process are One-on-one Round.
How to prepare for PayU Payments Program Manager 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 Agile, Analytical, Business Analysis, CATIA and Coo.
What are the top questions asked in PayU Payments Program Manager interview?

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

  1. What is ap...read more
  2. What is rest ap...read more

Tell us how to improve this page.

PayU Payments Program Manager Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

PayPal Interview Questions
3.9
 • 212 Interviews
HighRadius Interview Questions
2.8
 • 186 Interviews
Razorpay Interview Questions
3.6
 • 154 Interviews
Visa Interview Questions
3.5
 • 141 Interviews
MasterCard Interview Questions
3.9
 • 139 Interviews
Angel One Interview Questions
4.0
 • 138 Interviews
Revolut Interview Questions
2.5
 • 100 Interviews
Rupeek Interview Questions
3.7
 • 62 Interviews
View all
PayU Payments Program Manager Salary
based on 6 salaries
₹12 L/yr - ₹20 L/yr
32% less than the average Program Manager Salary in India
View more details

PayU Payments Program Manager Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

1.0

Skill development

3.0

Work-life balance

2.0

Salary

2.0

Job security

3.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
201 salaries
unlock blur

₹4.6 L/yr - ₹16.7 L/yr

Senior Software Engineer
186 salaries
unlock blur

₹12.3 L/yr - ₹42 L/yr

Software Engineer
177 salaries
unlock blur

₹12 L/yr - ₹36 L/yr

Senior Manager
139 salaries
unlock blur

₹10.5 L/yr - ₹42 L/yr

Manager
93 salaries
unlock blur

₹8.1 L/yr - ₹24.7 L/yr

Explore more salaries
Compare PayU Payments with

Angel One

4.0
Compare

HighRadius

2.8
Compare

Broadridge Financial Solutions

3.9
Compare

AGS Transact Technologies

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