Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Revolut Team. If you also belong to the team, you can get access from here

Revolut Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Revolut Backend Developer Interview Questions and Answers

Updated 3 Nov 2024

Revolut Backend Developer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

I have to write code for a load balancer. The code should be testable and imahoild be thread safe

Interview Preparation Tips

Topics to prepare for Revolut Backend Developer interview:
  • Core Java
Interview preparation tips for other job seekers - Careful Attention to all the details should be given. Example like using list or set etc
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. General HR topics, hashmap compleity

Backend Developer Interview Questions Asked at Other Companies

asked in NoBroker
Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, yo ... read more
asked in Simpplr
Q2. Array Sum Calculation Calculate the sum of all elements in an arr ... read more
Q3. Given 9 ball all of which weigh the same except for one, what is ... read more
asked in Simpplr
Q4. Remove Duplicates from String Problem Statement You are provided ... read more
asked in BlackNGreen
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

Interview questions from similar companies

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

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

There are 3 questions. basic to medium level.

Round 2 - One-on-one 

(4 Questions)

  • Q1. Introduction about yourself
  • Q2. Explain about your projects
  • Q3. Solve a Coding problem
  • Q4. Walk through project code
  • Ans. 

    I will walk through a project code to explain its structure and functionality.

    • Start by explaining the overall architecture of the project

    • Discuss the main components/modules and their interactions

    • Explain any key algorithms or data structures used

    • Highlight any design patterns or best practices implemented

    • Provide examples of specific code snippets to illustrate your points

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2023. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Consider an e-commerce site's feature that tells you by what time the parcel will reach a pincode. We discussed on architecture, whether the service that responds with the same should have the rules coupl...
  • Ans. 

    The rules for parcel delivery time estimation should be decoupled from the service for better maintainability and flexibility.

    • Decoupling the rules from the service allows for easier maintenance and updates without affecting the service itself.

    • Separating the rules also enables reusability across different services or components.

    • Using a separate rules engine or configuration file can provide flexibility to adjust the del...

  • Answered by AI
  • Q2. Classic Stock Buy and Sell once for maxium profit
  • Ans. 

    The problem involves finding the maximum profit that can be made by buying and selling a stock once.

    • Iterate through the array of stock prices and keep track of the minimum price seen so far.

    • Calculate the profit that can be made by selling at the current price minus the minimum price.

    • Update the maximum profit if a higher profit is found.

    • Return the maximum profit at the end.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer was good, he gave a detailed explanation of the company and the products. He also elaborated on what he expects from the role. He asked about me, the reason I am leaving my job, a system design question and a DSA problem. I was able to answer the behavourial questions and DSA ones; but I think I lost on System Design.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Five advantages of spring boot Which java version you currently use? Features of the java version you use Output from the code Difference between this and super In order to update the string, which will be...
  • Ans. 

    Spring Boot offers advantages like rapid development, easy configuration, embedded servers, production-ready features, and more.

    • Rapid development: Spring Boot simplifies the setup and configuration of Spring applications, allowing developers to focus on writing business logic.

    • Easy configuration: Spring Boot provides auto-configuration, reducing the need for manual setup and boilerplate code.

    • Embedded servers: Spring Boo...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for PayPal Backend Developer interview:
  • Core Java
  • Spring Boot
  • Aspect oriented programming
  • Design Patterns
  • Exception handling
Interview preparation tips for other job seekers - Be prepared with core java concepts and the questions may come from the development side

Skills evaluated in this interview

Backend Developer Interview Questions & Answers

Slice user image Shubham Bhalerao

posted on 11 Jun 2024

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

A basic coding question was asked regarding a buisness logic.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest, and practice your problem solving skills
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

There are 3 questions. basic to medium level.

Round 2 - One-on-one 

(4 Questions)

  • Q1. Introduction about yourself
  • Q2. Explain about your projects
  • Q3. Solve a Coding problem
  • Q4. Walk through project code
  • Ans. 

    I will walk through a project code to explain its structure and functionality.

    • Start by explaining the overall architecture of the project

    • Discuss the main components/modules and their interactions

    • Explain any key algorithms or data structures used

    • Highlight any design patterns or best practices implemented

    • Provide examples of specific code snippets to illustrate your points

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2023. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Consider an e-commerce site's feature that tells you by what time the parcel will reach a pincode. We discussed on architecture, whether the service that responds with the same should have the rules coupl...
  • Ans. 

    The rules for parcel delivery time estimation should be decoupled from the service for better maintainability and flexibility.

    • Decoupling the rules from the service allows for easier maintenance and updates without affecting the service itself.

    • Separating the rules also enables reusability across different services or components.

    • Using a separate rules engine or configuration file can provide flexibility to adjust the del...

  • Answered by AI
  • Q2. Classic Stock Buy and Sell once for maxium profit
  • Ans. 

    The problem involves finding the maximum profit that can be made by buying and selling a stock once.

    • Iterate through the array of stock prices and keep track of the minimum price seen so far.

    • Calculate the profit that can be made by selling at the current price minus the minimum price.

    • Update the maximum profit if a higher profit is found.

    • Return the maximum profit at the end.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer was good, he gave a detailed explanation of the company and the products. He also elaborated on what he expects from the role. He asked about me, the reason I am leaving my job, a system design question and a DSA problem. I was able to answer the behavourial questions and DSA ones; but I think I lost on System Design.

Skills evaluated in this interview

I applied via Instahyre and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Find loop in linked list
  • Ans. 

    To find a loop in a linked list, we use Floyd's cycle-finding algorithm.

    • Floyd's cycle-finding algorithm uses two pointers, one moving at a rate of one node per iteration and the other moving at a rate of two nodes per iteration.

    • If there is a loop in the linked list, the two pointers will eventually meet at some node.

    • To find the starting point of the loop, we reset one of the pointers to the head of the linked list and ...

  • Answered by AI
  • Q2. What challenging task you have done
  • Q3. System design related question
  • Q4. Explain your current project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for data structures and algorithms from gfg.

Skills evaluated in this interview

Backend Developer Interview Questions & Answers

Slice user image Shubham Bhalerao

posted on 11 Jun 2024

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

A basic coding question was asked regarding a buisness logic.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest, and practice your problem solving skills

Revolut Interview FAQs

How many rounds are there in Revolut Backend Developer interview?
Revolut interview process usually has 1 rounds. The most common rounds in the Revolut interview process are Coding Test and HR.

Tell us how to improve this page.

Revolut Backend Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Backend Developer Interview Questions from Similar Companies

View all
Support Specialist
363 salaries
unlock blur

₹3.7 L/yr - ₹8.2 L/yr

Financial Crime Analyst
92 salaries
unlock blur

₹4.5 L/yr - ₹10 L/yr

Strategy and Operations Manager
83 salaries
unlock blur

₹18 L/yr - ₹57.5 L/yr

Team Lead
79 salaries
unlock blur

₹8 L/yr - ₹14 L/yr

Financial Analyst
50 salaries
unlock blur

₹5.5 L/yr - ₹10 L/yr

Explore more salaries
Compare Revolut with

Paytm

3.3
Compare

PhonePe

4.0
Compare

Mobikwik

4.0
Compare

Payed

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