Upload Button Icon Add office photos

Filter interviews by

Adyen Software Java Engineer Interview Questions and Answers

Updated 16 Oct 2024

Adyen Software Java Engineer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

5 questions in 3 hours via hackerrank:
- Java question more ds
- Given the scheleton of a project and UML implement it
- SQL questions

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Aptitude Test 

30 min, adyen formula

Software Java Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. How do you manage memory leakage in your application?
asked in TCS
Q2. Stream Api program to sort employees using cities ?
asked in TCS
Q3. can we use lambda expression without functional interface
asked in TCS
Q4. What is your technology stack?
asked in TCS
Q5. Write program to find even and odd number using lambda expression

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

Coding question on string manipulation like tell the type of card based on the string constraints of the given card number.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on string handling.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

They asked me about a coding problem related to string parsing. It was to formate the string with brackets. I completed both parts of the solution, and asked relevant questions, but got a rejection mail.

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

1 hour interview. Needed to solve parts of single question. Next part would open only after completing the current part

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

I applied via Company Website and was interviewed in Jul 2023. There were 3 interview rounds.

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 

Implement the function "Printlast10lines" such that the program prints the last 10 (or less) in a given string

Round 3 - Technical 

(1 Question)

  • Q1. Delete nth node in a singe linked list
  • Ans. 

    To delete the nth node in a single linked list, we need to find the (n-1)th node and update its next pointer.

    • Traverse the linked list to find the (n-1)th node

    • Update the next pointer of the (n-1)th node to skip the nth node

    • Free the memory allocated to the nth node

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask more question probe as much as possible and take time and respond.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Screening round was a 1 hour coding test. Mostly non leetcode style where the question is incremental - Eg. Identify a pattern in a given text value and extract it then perform subsequent transformations. There is no right or wrong its just how well you are able to do the task.

Round 2 - System Design 

(1 Question)

  • Q1. Resume related system design deep dive
Round 3 - Coding Test 

Another round similar to the first one with an incremental coding test. Question was very lengthy.

Round 4 - Bug Bash 

(1 Question)

  • Q1. SQL database and you need to find out what is wrong with the data
Round 5 - Integration Test 

(1 Question)

  • Q1. Another coding round where you need to go clone a repo and extend an existing feature using the libraries in the documentation provided.

Interview Preparation Tips

Interview preparation tips for other job seekers - Not the kind of test you can prepare for with just Leetcode. Process wears you down.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

LLD for load balancer

Round 2 - One-on-one 

(1 Question)

  • Q1. API integrations, integrate 3rd party API to visualize ride locations and generate images
Round 3 - Coding Test 

Solve a bug in JSON like parsing library

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

It was 30 min coding test and question was from easy level DSA question

Round 2 - Technical 

(2 Questions)

  • Q1. Difference between react and next
  • Ans. 

    React is a JavaScript library for building user interfaces, while Next is a framework for building server-side rendered React applications.

    • React is a JavaScript library for building user interfaces.

    • Next is a framework for building server-side rendered React applications.

    • Next provides features like server-side rendering, static site generation, and routing out of the box.

  • Answered by AI
  • Q2. What is Nodejs and its event loop
  • Ans. 

    Node.js is a runtime environment that allows you to run JavaScript on the server side.

    • Node.js is built on Chrome's V8 JavaScript engine.

    • It uses an event-driven, non-blocking I/O model.

    • The event loop is responsible for handling asynchronous operations in Node.js.

    • Example: Reading a file asynchronously in Node.js using fs module.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Machine coding.
Code structure, naming, best practices are more important than time or space complexity.

Round 2 - Coding Test 

Same as Round 1, except more complex problem statement

Round 3 - Technical 

(1 Question)

  • Q1. Integration round. Given a library, do some operations with it, i.e. pull specific data point from file, make an POST call using different data point etc.
Round 4 - Technical 

(1 Question)

  • Q1. Given a codebase, fix a specific bug
  • Ans. 

    I would start by reproducing the bug, analyzing the code, identifying the root cause, implementing a fix, testing the fix, and finally deploying it.

    • Reproduce the bug by following the steps that lead to the issue.

    • Analyze the code surrounding the bug to understand the context and potential causes.

    • Identify the root cause of the bug by debugging and tracing the code execution.

    • Implement a fix by making the necessary code ch...

  • Answered by AI
Round 5 - Technical 

(1 Question)

  • Q1. Standard HLD/LLD design problem
  • Ans. 

    HLD focuses on overall system architecture, while LLD delves into specific implementation details.

    • HLD includes components, modules, interfaces, and dependencies.

    • LLD involves detailed class diagrams, data structures, algorithms, and database schema.

    • Example: HLD may outline a system using microservices architecture, while LLD may specify how each microservice communicates and stores data.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewing here is very very different than MAANG companies.
Speed of execution matters, but best practices matter more.
Time and space complexity is not tested at all!

Skills evaluated in this interview

Adyen Interview FAQs

How many rounds are there in Adyen Software Java Engineer interview?
Adyen interview process usually has 1 rounds. The most common rounds in the Adyen interview process are Coding Test and Aptitude Test.

Tell us how to improve this page.

Adyen Software Java Engineer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 752 Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
BigBasket Interview Questions
3.9
 • 359 Interviews
PolicyBazaar Interview Questions
3.6
 • 349 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
CARS24 Interview Questions
3.6
 • 331 Interviews
View all
Compare Adyen with

PayPal

3.9
Compare

Stripe

3.5
Compare

Square

3.3
Compare

Razorpay

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