Upload Button Icon Add office photos

PayU Payments

Compare button icon Compare button icon Compare

Filter interviews by

PayU Payments Senior Manager Interview Questions and Answers

Updated 25 Oct 2023

PayU Payments Senior Manager Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(1 Question)

  • Q1. Past experience
Round 3 - One-on-one 

(1 Question)

  • Q1. Least experience and domain and market related

Interview questions from similar companies

I applied via IIM Jobs and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - Case Study 

With one of the team members. Case study to gauge problem solving skills, analytical abilities. What could be different reasons for drop in sale, how can each be identified and mitigated?

Round 2 - One-on-one 

(1 Question)

  • Q1. Stakeholder discussion This was with one of the senior stakeholders, to determine your communication skills as well as understanding about completely new business problem/sector in limited amount of time. ...
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion with the HOD Usual fitment test. Past work experience, aspirations etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Case study was the deciding factor for my interview. First principle thinking is what the recruiters were looking for.
If you have the exact similar past experience, chances of selection are way too high. The startup industry just doesn't prefer to hire a person with conventional business experience.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Why do u want join visa
  • Q2. Why should we hire u
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Work Experience
  • Q2. Adaptability to change

Senior Manager Interview Questions & Answers

Angel One user image Vipul K Parmar /Risk and Surveillance/ABL

posted on 29 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Risk & Surveillance related question.
  • Q2. Rms process related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare for anything. Practice mindfulness.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(1 Question)

  • Q1. Business Round Checking on Skills
Round 3 - HR 

(1 Question)

  • Q1. Assessing the cultural fit and overall suitability for the role.

I applied via Company Website and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Rate Limiter Design, Code Hash map from scratch, Integer to roman, rectangle overlap, repeating non overlapping subsequence in a given string
  • Q2. Few questions related to SQL, Merchant Onboard ing design, Restaurant design

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode, Interviewbit PayPal questions

Interview Questionnaire 

6 Questions

  • Q1. Strings
  • Q2. Java 8 features like lamba expressions stream API
  • Q3. Collections
  • Q4. Autoboxing and Unboxing
  • Q5. Generics
  • Q6. String manipulation problems
  • Ans. 

    String manipulation problems involve modifying or analyzing strings of characters.

    • Use built-in string methods like substring, replace, and split.

    • Regular expressions can be powerful tools for pattern matching and manipulation.

    • Be mindful of edge cases like empty strings and null values.

    • Consider the time and space complexity of your solution.

    • Practice with coding challenges on websites like LeetCode and HackerRank.

  • Answered by AI

Skills evaluated in this interview

Interview Preparation Tips

Round: Technical Interview
Tips: Have a good grasp of DS algo, java, etc.(Here CGPA doesn't matter)

General Tips: Do’s and Don’ts :
1. Be confident and to be confident prepare well.
2. Set the priority of your companies 
3. Don't start preparation at end. Don't ignore the content of resume.

Be confident and start preparation as soon as possible.
College Name: IIT Kanpur

Software Developer Interview Questions & Answers

Visa user image Pranav Bhat Thirthahalli

posted on 3 Dec 2015

Interview Questionnaire 

14 Questions

  • Q1. What is race condition and how can it be eliminated
  • Ans. 

    Race condition is a situation where multiple threads/processes access and manipulate shared data simultaneously.

    • It can be eliminated by using synchronization techniques like locks, semaphores, and mutexes.

    • Another way is to use atomic operations that ensure the data is accessed and modified atomically.

    • Using thread-safe data structures can also prevent race conditions.

    • Example: Two threads trying to increment a shared var...

  • Answered by AI
  • Q2. What is JCube?
  • Ans. 

    JCube is a Java library for creating and manipulating Rubik's Cube puzzles.

    • JCube provides classes for representing Rubik's Cube puzzles and algorithms for solving them.

    • It supports various cube sizes and can generate random scrambles.

    • JCube can be used in Java applications or as a standalone command-line tool.

    • It is open source and available on GitHub.

  • Answered by AI
  • Q3. What is regression testing?
  • Ans. 

    Regression testing is the process of testing changes made to a software application to ensure that existing functionality still works.

    • It is performed after making changes to the software

    • It ensures that existing functionality is not affected by the changes

    • It helps to catch any defects or bugs that may have been introduced

    • It can be automated using testing tools

    • Examples include retesting after bug fixes, testing after new

  • Answered by AI
  • Q4. Discussion on different sorting techniques
  • Q5. Discussion on SQL and SQL optimisaion
  • Q6. Software engineering principles
  • Ans. 

    Software engineering principles are the best practices and guidelines for developing high-quality software.

    • Software should be designed with modularity and scalability in mind.

    • Code should be well-documented and easy to read.

    • Testing and debugging should be an integral part of the development process.

    • Version control should be used to manage code changes.

    • Security and privacy should be considered throughout the development

  • Answered by AI
  • Q7. Java and OOP's question
  • Q8. Define Singleton class
  • Ans. 

    A Singleton class is a class that can only have one instance at a time.

    • It restricts the instantiation of a class to a single object.

    • It provides a global point of access to that instance.

    • It is often used in situations where a single object is required to coordinate actions across a system.

    • Example: Database connection manager, Configuration manager, Logger manager.

  • Answered by AI
  • Q9. Explain Testing principles and Design principles
  • Ans. 

    Testing principles ensure software quality, while design principles guide software development.

    • Testing principles include unit testing, integration testing, and acceptance testing.

    • Design principles include SOLID, DRY, and KISS.

    • Testing principles ensure that software meets requirements and is free of defects.

    • Design principles guide software development to be modular, maintainable, and scalable.

  • Answered by AI
  • Q10. Types of machine learning and methods and examples, they may give you a situation and ask you which technique is good and why
  • Q11. Why choose you for VISA?
  • Ans. 

    I have the necessary skills, experience, and passion to contribute to VISA's success.

    • I have a strong background in software development and have worked on projects similar to those at VISA.

    • I am a quick learner and can adapt to new technologies and programming languages easily.

    • I am passionate about creating high-quality software that meets the needs of users and exceeds their expectations.

    • I am a team player and can work...

  • Answered by AI
  • Q12. Which profile is good for you?
  • Ans. 

    A profile that challenges me to learn and grow while allowing me to contribute to a team.

    • A position that encourages continuous learning and development

    • A role that allows me to collaborate with a team and contribute to projects

    • A company culture that aligns with my values and work ethic

  • Answered by AI
  • Q13. About the work culture at VISA Inc
  • Q14. If u already have a placement, why this company
  • Ans. 

    I am interested in exploring new opportunities and challenges that this company can offer.

    • I am impressed with the company's reputation and growth potential.

    • I am excited about the projects and technologies this company is working on.

    • I believe this company can provide me with a better work-life balance and career growth opportunities.

    • I am looking for a company culture that aligns with my values and goals.

    • I am open to exp...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Online Test on mettl.com
- 2 coding questions ( 15*2 = 30 marks ) - Moderate level
- 10 MCQs on Programming and Java ( 1*10 = 10)
- 6 MCQs on Machine Learning and Hadoop ( 1*6 = 6 )
- 6 MCQs on Computer Networks ( 1*6 = 6 )
- 6 MCQs on Computer Infrastructure and Architecture ( 1*6 = 6)
- 6 MCQs on Application security and Cryptography ( 1*6 = 6)
15 shortlisted from here including 8 B.Techs and 7 M.Techs for F2F interviews, which were taken by VISA employees from their US and Singapore offices( since they don't have any office at India ).

Round: Technical Interview
Experience: They may give you a situation and ask you to explain which Software engineering principles will you use. They ask you how will you explain the concept of stacks and queues to a 7 year old, or to a granny, so as to encourage programming(like seriously ? )

General Tips: Nothing as such, since this was my second on-campus placement, I had good experience of interviews.
Keep your fundamentals in all computer science subjects open. Unlike other companies they don't focus much on coding alone. The only other company which also looks at perfection in all computer science aspects is Xerox Research Center India.
Challenging and Equally rewarding, but seriously a unique experience with no much tension
Skills:
College Name: NIT Surathkal

Skills evaluated in this interview

PayU Payments Interview FAQs

How many rounds are there in PayU Payments Senior Manager interview?
PayU Payments interview process usually has 3 rounds. The most common rounds in the PayU Payments interview process are Resume Shortlist, HR and One-on-one Round.
How to prepare for PayU Payments Senior 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 Financial Services, Sales, investment, Account Management and Banking.

Tell us how to improve this page.

PayU Payments Senior Manager Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
PayU Payments Senior Manager Salary
based on 139 salaries
₹10.5 L/yr - ₹42 L/yr
13% more than the average Senior Manager Salary in India
View more details

PayU Payments Senior Manager Reviews and Ratings

based on 12 reviews

4.1/5

Rating in categories

3.4

Skill development

4.0

Work-life balance

3.7

Salary

4.0

Job security

3.6

Company culture

3.3

Promotions

3.8

Work satisfaction

Explore 12 Reviews and Ratings
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