Upload Button Icon Add office photos

Filter interviews by

PayU Payments Sde1 Interview Questions and Answers

Updated 9 Jul 2022

PayU Payments Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image madhulika ghosh

posted on 9 Jul 2022

I applied via Naukri.com and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Coding Test 

In apri basic question logicial quesion

Round 2 - Aptitude Test 

The test was easy basic questins they asked

Interview Preparation Tips

Interview preparation tips for other job seekers - ds 1st 2nd desing and 3rd managerial and 4th normal hr. lear ds and also

Interview questions from similar companies

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

(1 Question)

  • Q1. Question on DSA and Projects

Sde1 Interview Questions & Answers

Rupeek user image Anonymous

posted on 31 Aug 2024

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

I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. LinkedList / Tree
  • Q2. DP - Recursion - PnC
Round 2 - One-on-one 

(1 Question)

  • Q1. Projects , Last Exp
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain the last technically challenging topic that you have worked on. The engineering manager is only interested in self boasting. Without even trying to understand the entire problem statement, they try...

Interview Preparation Tips

Interview preparation tips for other job seekers - To pass engineering manager round, you will always have to agree to the hiring manager. Even if technically it doesn't make sense, just nod. The entire interview is to boost his ego. The comments that they pass without even understanding the entire picture is generally astonishing.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Exam to test reasoning and aptitude, and speed to answer them

Round 2 - Coding Test 

Dsa question easy to medium level

Round 3 - Behavioral 

(5 Questions)

  • Q1. Just culture fit question, and medium dsa questions
  • Q2. Print pyramid from Fibonacci sequence
  • Ans. 

    Print pyramid from Fibonacci sequence

    • Generate Fibonacci sequence up to a certain number

    • Use the Fibonacci numbers to create the pyramid structure

    • Print each row of the pyramid with appropriate spacing

  • Answered by AI
  • Q3. Linked list sort
  • Q4. Design SQL tables for library management system
  • Ans. 

    Design SQL tables for library management system

    • Create tables for books, authors, members, transactions, etc.

    • Use primary and foreign keys to establish relationships between tables

    • Include columns like book title, author name, member ID, due date, etc.

  • Answered by AI
  • Q5. Valid bracket dsa question

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is java multithreading
  • Ans. 

    Java multithreading is a feature that allows concurrent execution of multiple threads within a single process.

    • Multithreading in Java allows multiple threads to run concurrently within a single process.

    • Each thread has its own stack and executes independently, but shares the same memory space.

    • Java provides built-in support for multithreading through the java.lang.Thread class and java.lang.Runnable interface.

    • Multithreadi...

  • Answered by AI
  • Q2. Explain exception hierarchy
  • Ans. 

    Exception hierarchy is a way to organize and categorize different types of exceptions in a software system.

    • Exceptions are organized in a tree-like structure with a base class at the top and more specific exception classes below.

    • Base class usually is 'Exception' or 'Throwable', with more specific classes like 'IOException', 'NullPointerException', etc.

    • Subclasses can provide more specific information about the cause of t...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Explain Concurrency
  • Ans. 

    Concurrency is the ability of a system to execute multiple tasks simultaneously.

    • Concurrency allows multiple tasks to run concurrently, improving performance and efficiency.

    • Concurrency can be achieved through multithreading or multiprocessing.

    • Example: A web server handling multiple requests simultaneously using multithreading.

  • Answered by AI
  • Q2. Explain Acid principles
  • Ans. 

    ACID principles are a set of properties that guarantee database transactions are processed reliably.

    • Atomicity: Transactions are all or nothing. If one part of the transaction fails, the entire transaction is rolled back.

    • Consistency: Transactions bring the database from one valid state to another. All constraints are satisfied.

    • Isolation: Transactions are isolated from each other until they are completed.

    • Durability: Once...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Sql unix transactions flow
  • Q2. Sql Java ATM POS transactions flow

Interview Preparation Tips

Interview preparation tips for other job seekers - Lear
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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

The coding test was based on quants and coding

Round 3 - Technical 

(1 Question)

  • Q1. Mostly based on development and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - basics are important
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Aug 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Keep your problem solving skills upto the mark

Round 3 - Coding Test 

Dsa is important like arrays linkedlist stack queue and tree

Round 4 - One-on-one 

(2 Questions)

  • Q1. Write a program for bubble sorting techniques?
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process until the end of the list is reached

    • Repeat the above steps for each element in the list

    • The list is now sorted in ascending order

  • Answered by AI
  • Q2. Write a question for printing factorial using recursion
  • Ans. 

    What is the recursive function to print the factorial of a given number?

    • Define a function that takes an integer as input

    • Check if the input is 0 or 1, return 1 if true

    • Otherwise, call the function recursively with n-1 as input and multiply it with n

    • Print the result

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - the interview was okayish ut i lost confidence and ruined it so stay cconfident

Skills evaluated in this interview

PayU Payments Interview FAQs

How many rounds are there in PayU Payments Sde1 interview?
PayU Payments interview process usually has 2 rounds. The most common rounds in the PayU Payments interview process are Coding Test and Aptitude Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 747 Interviews
PhonePe Interview Questions
4.0
 • 297 Interviews
PayPal Interview Questions
3.9
 • 206 Interviews
HighRadius Interview Questions
2.9
 • 182 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
Angel One Interview Questions
4.0
 • 135 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
Revolut Interview Questions
2.5
 • 95 Interviews
View all
PayU Payments Sde1 Salary
based on 4 salaries
₹14.3 L/yr - ₹25 L/yr
17% less than the average Sde1 Salary in India
View more details

PayU Payments Sde1 Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
195 salaries
unlock blur

₹4.6 L/yr - ₹15.8 L/yr

Software Engineer
184 salaries
unlock blur

₹13 L/yr - ₹33 L/yr

Senior Software Engineer
178 salaries
unlock blur

₹13.7 L/yr - ₹41 L/yr

Senior Manager
131 salaries
unlock blur

₹10.5 L/yr - ₹44 L/yr

Manager
101 salaries
unlock blur

₹7.2 L/yr - ₹27.4 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