Upload Button Icon Add office photos

NatWest Group

Compare button icon Compare button icon Compare

Filter interviews by

NatWest Group Senior Software Engineer 2 Interview Questions and Answers

Updated 17 Jun 2024

NatWest Group Senior Software Engineer 2 Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

10 questions for prelims

Round 2 - Technical 

(2 Questions)

  • Q1. Find maximum sum subarray
  • Ans. 

    Find the maximum sum subarray within an array of integers.

    • Iterate through the array and keep track of the current sum and maximum sum seen so far.

    • If the current sum becomes negative, reset it to 0.

    • Return the maximum sum found.

  • Answered by AI
  • Q2. Find duplicates in an array
  • Ans. 

    Find duplicates in an array of strings

    • Iterate through the array and use a hash set to keep track of seen elements

    • If an element is already in the hash set, it is a duplicate

    • Return a list of all duplicates found

  • Answered by AI

Skills evaluated in this interview

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

Senior Software Engineer 2 Interview Questions Asked at Other Companies

asked in Synechron
Q1. What microservices patterns are you aware ? let's assume that the ... read more
Q2. Given a scenario, draw a system diagram and explain the reasoning ... read more
Q3. Draw a system diagram for an e-commerce system that allows a cust ... read more
asked in Wipro
Q4. What are the key features of Java 8 that facilitate coding with s ... read more
Q5. Explain the internal workings of Node.js and how it processes asy ... 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?
  • 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

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

I applied via Campus Placement and was interviewed before Aug 2022. 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 - Aptitude Test 

It was quantitative aptitude test with some coding questions

Round 3 - One-on-one 

(3 Questions)

  • Q1. This round was to majorly check our confidence and communication style. I was asked to explain the projects that I have done..then some general analytical based questions that were non technical.
  • Q2. Why didn't you want to pursue higher studies?
  • Q3. Tell me about urself and the projects you have done

Interview Preparation Tips

Interview preparation tips for other job seekers - There is no much work pressure and it's a fine place for experienced employees..but not a fine play freshers who are just graduated.. since there is less challenging or learn space..

What people are saying about NatWest Group

View All
inirah10
Verified Icon
2w
works at
Cognizant
NatWest Group - Testing Analyst B6 Position
Does anyone know the salary package of Testing Analyst - B6 Position in NatWest Group for 3 years experienced candidate?
Got a question about NatWest Group?
Ask anonymously on communities.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Behavioural and culture fit

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

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Java and react question
Round 2 - Technical 

(1 Question)

  • Q1. Little technical and project oriented question
Round 3 - Coding Test 

Basic hacker rank problem

Round 4 - CTO round 

(1 Question)

  • Q1. Asked few questions on react and java

I applied via Recruitment Consulltant and was interviewed in Nov 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Basic data structure related coding questions like creating a linked list and adding items to it median.
Max heap implementation.
Concurrency related questions.

Round 2 - Technical 

(1 Question)

  • Q1. Senior developer was taking the round, covering all design and architecture related questions. I was able to give a satisfactory solution.
Round 3 - Behavioral 

(1 Question)

  • Q1. Just some behavioural question along with a lil bit technical questions. Asked me about my current projects and problems faced, how i gave a proper solution and how i help my team to grow.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic DSA along with strong programming language knowledge is required to crack the interview.
Are these interview questions helpful?

I applied via Company Website and was interviewed in Jul 2022. 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 - Aptitude Test 

General knowledge and development skills and new things..

Interview Preparation Tips

Topics to prepare for IDFC FIRST Bank Senior Software Engineer interview:
  • Software Development
  • New development
Interview preparation tips for other job seekers - I want to stand myself.. Make myself strong and more knowledgeable..
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Joins, Jobs, stored procedures,cursors.

Round 2 - HR 

(1 Question)

  • Q1. What is my package
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. What is HTML?
  • Ans. 

    HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.

  • Answered Anonymously
  • Q2. What is CSS?
  • Ans. 

    Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document written in HTML or XML (including XML dialects such as SVG, MathML or XHTML). CSS describes how elements should be rendered on screen, on paper, in speech, or on other media.

  • Answered Anonymously
  • Q3. What is MySQL?
  • Q4. What is Java?
  • Q5. What is the full form of PHP?
  • Ans. 

    The full form of PHP is Hypertext Preprocessor. It was abbreviated previously as Personal Home Page. It is a programming language widely used to build web applications or websites.

  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - I am a passionate and eager-to-learn fresher in the field of web development and software technology. I have a solid foundation in several programming and development tools, including HTML, JavaScript, CSS, PHP, and MySQL, which I have explored through both academic projects and personal learning.

NatWest Group Interview FAQs

How many rounds are there in NatWest Group Senior Software Engineer 2 interview?
NatWest Group interview process usually has 2 rounds. The most common rounds in the NatWest Group interview process are Aptitude Test and Technical.
What are the top questions asked in NatWest Group Senior Software Engineer 2 interview?

Some of the top questions asked at the NatWest Group Senior Software Engineer 2 interview -

  1. Find maximum sum subar...read more
  2. Find duplicates in an ar...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.6k Interviews
HDFC Bank Interview Questions
3.9
 • 2.5k Interviews
Axis Bank Interview Questions
3.7
 • 1.7k Interviews
IDFC FIRST Bank Interview Questions
3.9
 • 759 Interviews
IndusInd Bank Interview Questions
3.5
 • 680 Interviews
Bandhan Bank Interview Questions
3.7
 • 634 Interviews
Yes Bank Interview Questions
3.7
 • 478 Interviews
View all
NatWest Group Senior Software Engineer 2 Salary
based on 4 salaries
₹17.4 L/yr - ₹25 L/yr
14% less than the average Senior Software Engineer 2 Salary in India
View more details

NatWest Group Senior Software Engineer 2 Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Analyst
2.8k salaries
unlock blur

₹4.8 L/yr - ₹11 L/yr

Software Engineer
1k salaries
unlock blur

₹13.1 L/yr - ₹25.1 L/yr

Operations Analyst
833 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Associate Vice President
770 salaries
unlock blur

₹23 L/yr - ₹37 L/yr

Customer Service & Operations Analyst
677 salaries
unlock blur

₹3 L/yr - ₹8 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
write
Share an Interview