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 Intern Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Intern Interview Questions & Answers

Paytm user image Anonymous

posted on 19 Feb 2022

I applied via Job Fair and was interviewed before Feb 2021. 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 - Coding Test 

Can't Disclose

Interview Preparation Tips

Interview preparation tips for other job seekers - Do development and CP also.
Try to solve DSA problems.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Technical questions based on projects
  • Q2. Based on sql questions were asked

Intern Interview Questions & Answers

Visa user image Akshit Kanaujia

posted on 29 Jul 2022

I applied via Campus Placement and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Two Coding questions were asked -
1- Graph Connectivity with threshold
2-Find length of longest subsequence of one string which is substring of another string

Round 2 - Technical 

(3 Questions)

  • Q1. N-Queens, Snake and Ladder Problem, Second Most repeated word in a sequence
  • Ans. 

    These are three different programming problems that require different approaches to solve.

    • N-Queens: placing N queens on an NxN chessboard so that no two queens threaten each other

    • Snake and Ladder Problem: finding the minimum number of dice rolls to reach the end of a board with snakes and ladders

    • Second Most Repeated Word in a Sequence: finding the second most frequently occurring word in a given sequence of words

  • Answered by AI
  • Q2. Replace every element with the greatest element on the right side
  • Ans. 

    Replace each element with the greatest element on its right side in the array

    • Loop through the array from right to left

    • Keep track of the maximum element seen so far

    • Replace the current element with the maximum element seen so far

    • Return the modified array

  • Answered by AI
  • Q3. Special Keyboard DP Problem
  • Ans. 

    The Special Keyboard DP Problem involves optimizing key presses for a specific output using dynamic programming.

    • Identify the target string and the available keys on the keyboard.

    • Use dynamic programming to calculate the minimum key presses needed.

    • Consider edge cases, such as repeated characters or missing keys.

    • Example: If the target is 'abc' and keys are 'a', 'b', 'c', the answer is 3.

    • Example: If the target is 'aaa' and...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and believe in your preparation. You will definitely get good results.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jul 2022. There were 4 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 

The test was entirely MCQ based and the entire paper was on devops. Question standard was average.

Round 3 - HR 

(1 Question)

  • Q1. It was entirely resume based.
Round 4 - HR 

(1 Question)

  • Q1. Based on your power skill in your resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers were very friendly and considerate. Try speaking out your knowledge.
Interview experience
3
Average
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 - Assignment 

It was campus through internship

Round 3 - One-on-one 

(2 Questions)

  • Q1. So it was through college so they did not ask me more
  • Q2. Tell me about self Why investment banking

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
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 Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic sql and java questions

Intern Interview Questions & Answers

Visa user image Anonymous

posted on 29 Sep 2024

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

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships at tech companies

    • Participated in coding competitions

  • Answered by AI
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 - Coding Test 

2 hours HackerEarth coding round

Round 3 - One-on-one 

(1 Question)

  • Q1. Some medium level of question
Round 4 - Coding Test 

HackerEarth test medium level question

Interview Preparation Tips

Interview preparation tips for other job seekers - follow previous interview exprience

Intern Interview Questions & Answers

Fiserv user image Anonymous

posted on 21 Nov 2022

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 - Group Discussion 

On spot topic were given by the interviewer

Round 3 - Technical 

(2 Questions)

  • Q1. OOPS ,DBMS ,OS, CN concepts
  • Q2. Data structures and codes based on it

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all computer fundamental concepts
Like oops dbms etc
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sorting algorithm
  • Ans. 

    Sorting algorithms are used to arrange elements in a specific order.

    • Sorting algorithms can be categorized as comparison-based or non-comparison-based.

    • Examples of sorting algorithms include Bubble Sort, Merge Sort, and Quick Sort.

    • Efficiency of sorting algorithms is measured in terms of time complexity and space complexity.

  • Answered by AI
  • Q2. Secod highest salary
  • Ans. 

    To find the second highest salary, we can use various methods like sorting or using a set to eliminate duplicates.

    • Use a SQL query: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;

    • In Python, convert the salary list to a set, sort it, and access the second last element.

    • Example: salaries = [3000, 2000, 4000, 4000]; sorted(set(salaries))[-2] gives 3000.

    • Consider edge cases: If there is only one u...

  • Answered by AI

Skills evaluated in this interview

Tell us how to improve this page.

Intern Interview Questions from Similar Companies

Visa Intern Interview Questions
3.5
 • 2 Interviews
Paytm Intern Interview Questions
3.2
 • 1 Interview
FIS Intern Interview Questions
3.9
 • 1 Interview
View all
Support Specialist
426 salaries
unlock blur

₹4.3 L/yr - ₹9 L/yr

Financial Crime Analyst
143 salaries
unlock blur

₹4 L/yr - ₹13.1 L/yr

Strategy and Operations Manager
113 salaries
unlock blur

₹18 L/yr - ₹58.3 L/yr

Team Lead
91 salaries
unlock blur

₹8 L/yr - ₹12.5 L/yr

Financial Analyst
58 salaries
unlock blur

₹5.5 L/yr - ₹13.6 L/yr

Explore more salaries
Compare Revolut with

Paytm

3.2
Compare

FIS

3.9
Compare

Fiserv

2.9
Compare

KFintech

3.5
Compare
write
Share an Interview