Upload Button Icon Add office photos

NatWest Group

Compare button icon Compare button icon Compare

Filter interviews by

NatWest Group Associate Professional Interview Questions and Answers

Updated 24 May 2022

NatWest Group Associate Professional Interview Experiences

1 interview found

I appeared for an interview in Dec 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

Online questions of coding, logical and tools knowledge
Was time based, and lengthy

  • Q1. 

    Find the Second Largest Element

    Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

    If a second largest element does not exist, return -1.

    Example:

    Input:
    ARR = [2,...
  • Ans. 

    Find the second largest element in an array of integers.

    • Iterate through the array to find the largest and second largest elements.

    • Handle cases where all elements are identical.

    • Return -1 if a second largest element does not exist.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Easy

Was pure technical

  • Q1. Can you explain framework designs and their architecture?
  • Ans. 

    Framework designs are the structure and organization of a software framework, including its components and interactions.

    • Framework designs define the overall architecture of a software system

    • They include the arrangement of components, their relationships, and the flow of data

    • Examples of framework designs include Model-View-Controller (MVC) and Service-Oriented Architecture (SOA)

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

Technical

  • Q1. 

    Closest Sum Problem Statement

    Given an array of integers ARR of size N and an integer target, find three integers in ARR such that their sum is closest to the target. If there are two closest sums, return...

  • Ans. 

    Find three integers in an array whose sum is closest to a target integer.

    • Iterate through all possible triplets in the array to find the closest sum to the target.

    • Keep track of the closest sum found so far and update it if a closer sum is found.

    • Return the closest sum found after iterating through all triplets.

  • Answered by AI
Round 4 - HR 

Round duration - 60 Minutes
Round difficulty - Hard

HR stuff

Interview Preparation Tips

Eligibility criteriaAbove 60%RBS interview preparation:Topics to prepare for the interview - Algos, DS, Automation, Logical ques, CodingTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare for coding logics
Tip 2 : Prepare for Algos

Application resume tips for other job seekers

Tip 1 : Mention all skills in bold
Tip 2 : Mention all languages and tools keywords

Final outcome of the interviewSelected

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about NatWest Group?
Ask anonymously on communities.

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

Associate Professional Interview Questions Asked at Other Companies

Q1. Find the Second Largest Element Given an array or list of integer ... read more
Q2. Closest Sum Problem Statement Given an array of integers ARR of s ... read more
asked in LrnEd
Q3. Reverse the String Problem Statement You are given a string STR w ... read more
Q4. Add Two Numbers Represented as Linked Lists Given two linked list ... read more
Q5. Remove Duplicates from String Problem Statement You are provided ... read more

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?
  • 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

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

(1 Question)

  • Q1. System design , HLD, LLD , coding question
Interview experience
4
Good
Difficulty level
Moderate
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 - Coding Test 

1)Buy and sell stock
2)2 sum
3) system design
4) Elastic search
5) deployment

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

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

DSA , LLD on bar raiser

Round 2 - Coding Test 

DSA, SQL and discussions around projects

Round 3 - System Design 

(1 Question)

  • Q1. Design a notification system
  • Ans. 

    A notification system to alert users of important events or updates.

    • Define types of notifications (e.g. email, SMS, push notifications)

    • Implement a user preference setting for notification frequency

    • Include a notification history for users to review past alerts

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Simple algorithm question about sorting

Round 3 - Technical 

(2 Questions)

  • Q1. Algorith question about quick sort
  • Q2. Nlonn run time of the sort
  • Ans. 

    The time complexity of the quicksort algorithm is O(n log n).

    • Quicksort has an average time complexity of O(n log n).

    • The best case time complexity of quicksort is O(n log n) when the pivot element divides the array into two equal halves.

    • The worst case time complexity of quicksort is O(n^2) when the pivot element is the smallest or largest element in the array.

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Behavioural and culture fit

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

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

Tell us how to improve this page.

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.6k Interviews
HDFC Bank Interview Questions
3.8
 • 2.5k Interviews
Axis Bank Interview Questions
3.7
 • 1.7k Interviews
IDFC FIRST Bank Interview Questions
3.9
 • 772 Interviews
IndusInd Bank Interview Questions
3.5
 • 687 Interviews
Bandhan Bank Interview Questions
3.7
 • 639 Interviews
Yes Bank Interview Questions
3.7
 • 484 Interviews
View all
Senior Analyst
2.8k salaries
unlock blur

₹4.8 L/yr - ₹11 L/yr

Software Engineer
1.1k salaries
unlock blur

₹13.3 L/yr - ₹26.2 L/yr

Operations Analyst
843 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Associate Vice President
781 salaries
unlock blur

₹23 L/yr - ₹36.9 L/yr

Customer Service & Operations Analyst
707 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Explore more salaries
Compare NatWest Group with

HDFC Bank

3.8
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.7
Compare

Kotak Mahindra Bank

3.7
Compare
write
Share an Interview