Upload Button Icon Add office photos

Filter interviews by

NatWest Group Software Developer Intern Interview Questions and Answers

Updated 1 Nov 2023

NatWest Group Software Developer Intern Interview Experiences

2 interviews 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 - Technical 

(2 Questions)

  • Q1. Question about the oops and other related
  • Q2. Oops concepts in details
  • Ans. 

    Oops concepts refer to Object-Oriented Programming principles like Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability of objects to take on multiple forms.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hiding the complex implementation details and showing only

  • Answered by AI

I appeared for an interview in Sep 2020.

Round 1 - Coding Test 

Round duration - 90 minutes
Round difficulty - Medium

Timing - Late in the evening(7pm - 8 pm)
Virtual round, can give from home. 
Had to keep webcam on during the test. 
Tab switching was not allowed, and activity was monitored.

Round 2 - Face to Face 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

Round in the morning, with 2 interviewers.
Questions based on Resume.

  • Q1. 

    Longest Subarray Zero Sum Problem Statement

    Given an array of integers arr, determine the length of the longest contiguous subarray that sums to zero.

    Input:

    N (an integer, the length of the array)
    arr (...
  • Ans. 

    Find the length of the longest contiguous subarray with zero sum in an array of integers.

    • Use a hashmap to store the prefix sum and its corresponding index.

    • Iterate through the array and update the hashmap with the current sum and index.

    • If the same sum is encountered again, the subarray between the two indices has a sum of zero.

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

In the afternoon, with 3 recruiters, 2 HRs and 1 project manager.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vellore Institute of Technology. I applied for the job as SDE - Intern in ChennaiEligibility criteria7 CGPA, No arrearsRoyal Bank of Scotland interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Graph Theory, Dynamic Programming, DBMS, Networks and Communication, Agile Software Development.Time required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Thoroughly prepare about the skills on your resume. Expect questions from the same.

Tip 2 : Know your projects well, be ready with outcome of project, Tools and Technology used, any hardships during the project that you overcame. Have atleast 2 projects.

Tip 3 : Practice DSA questions and all the commonly asked algorithms and puzzles

Application resume tips for other job seekers

Tip 1: Write your projects detailed - mostly in the following format: Name of the project, brief use case, tech stack used for development.


Tip 2: If you mention any Internships, use active verbs in the description - "Developed an Internal Dashboard which increased efficiency by 60%"

Tip 3: Mention your rank on sites like CodeForces, CodeChef(if they are good). Also add any extra-curriculars you were part of, Eg- "Vice President, Robotics Club ". Presents you as a well rounded individual

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

Interview questions from similar companies

I appeared for an interview before Mar 2016.

Interview Questionnaire 

2 Questions

  • Q1. Some technical questions were asked
  • Q2. They spring hibernate MVC flow and core java and Oracle connectivity questions

Interview Preparation Tips

Round: Technical + HR Interview
Experience: There was a Team manager and his junior for the interview

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

Island Perimeter and Number of Provinces. Basic Leetcode question

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. No. of islands
  • Q2. Some hard DP problem
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How to find out prime number
  • Ans. 

    Prime numbers are numbers that are only divisible by 1 and themselves.

    • Start by checking if the number is less than 2, as prime numbers start from 2.

    • Iterate from 2 to the square root of the number and check if the number is divisible by any of these numbers.

    • If the number is not divisible by any number in the range, then it is a prime number.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - want to answer
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Coding round java
  • Q2. Spring boot and devops activities

Interview Preparation Tips

Interview preparation tips for other job seekers - Na

I applied via Campus Placement and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is static in java?
  • Ans. 

    Static is a keyword in Java used to create class-level variables and methods.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

    • Static import is used to import static members of a class

  • Answered by AI
  • Q2. Write a program to replace consecutive same character by single '$' . for e.g. string='Heelo Wworldd'. Output- H$lo $orl$.
  • Ans. 

    The program replaces consecutive same characters in a string with a single '$'.

    • Iterate through each character in the string

    • Compare the current character with the next character

    • If they are the same, replace the next character with '$'

    • Continue until the end of the string

  • Answered by AI
  • Q3. Difference between Function overloading and Function overrriding
  • Ans. 

    Function overloading is having multiple functions with the same name but different parameters. Function overriding is having a derived class implement a method with the same name and parameters as a method in its base class.

    • Function overloading is used to provide different ways of calling a function with different parameters.

    • Function overriding is used to provide a specific implementation of a method in a derived class...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read all OOPs concept before going to interview. Prepare SQL also.

Skills evaluated in this interview

Round 1 - Group Discussion 

Topic wt is ms office

Round 2 - Assignment 

Eassys dscover the basic structure of all essaysand see what a goo d essay introduction and conclusion look like

Round 3 - Technical 

(1 Question)

  • Q1. Ppt presentations and techical skillsare the abilities and knowledge needed to performtastks

Interview Preparation Tips

Interview preparation tips for other job seekers - Straight from the job seekers themselves were sharing the best job search advice people have ever received
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. LRU cache design
  • Ans. 

    LRU cache design involves maintaining a cache with limited capacity and removing the least recently used item when the cache is full.

    • Use a doubly linked list to maintain the order of items based on their usage.

    • Implement a hash map for fast access to items in the cache.

    • When a new item is accessed, move it to the front of the linked list to mark it as the most recently used.

    • When the cache is full, remove the item at the ...

  • Answered by AI
  • Q2. Current project

Skills evaluated in this interview

NatWest Group Interview FAQs

How many rounds are there in NatWest Group Software Developer Intern interview?
NatWest Group interview process usually has 2 rounds. The most common rounds in the NatWest Group interview process are Resume Shortlist and Technical.
What are the top questions asked in NatWest Group Software Developer Intern interview?

Some of the top questions asked at the NatWest Group Software Developer Intern interview -

  1. Oops concepts in deta...read more
  2. Question about the oops and other rela...read more

Tell us how to improve this page.

NatWest Group Software Developer Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.5k Interviews
HDFC Bank Interview Questions
3.9
 • 2.2k Interviews
Axis Bank Interview Questions
3.7
 • 1.5k Interviews
IDFC FIRST Bank Interview Questions
3.9
 • 664 Interviews
IndusInd Bank Interview Questions
3.5
 • 627 Interviews
Bandhan Bank Interview Questions
3.7
 • 558 Interviews
Yes Bank Interview Questions
3.7
 • 441 Interviews
View all

NatWest Group Software Developer Intern Reviews and Ratings

based on 3 reviews

4.7/5

Rating in categories

4.7

Skill development

5.0

Work-life balance

4.3

Salary

4.7

Job security

4.7

Company culture

4.3

Promotions

4.7

Work satisfaction

Explore 3 Reviews and Ratings
Senior Analyst
2.7k salaries
unlock blur

₹3.5 L/yr - ₹13.5 L/yr

Software Engineer
994 salaries
unlock blur

₹8 L/yr - ₹29.9 L/yr

Operations Analyst
781 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Associate Vice President
727 salaries
unlock blur

₹13 L/yr - ₹44 L/yr

Analyst
632 salaries
unlock blur

₹1.4 L/yr - ₹7.1 L/yr

Explore more salaries
Compare NatWest Group with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.7
Compare

Kotak Mahindra Bank

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