Upload Button Icon Add office photos

Filter interviews by

NatWest Group Data Engineer Interview Questions and Answers for Experienced

Updated 27 May 2024

NatWest Group Data Engineer Interview Experiences for Experienced

1 interview found

Data Engineer Interview Questions & Answers

user image Abhijith K M

posted on 27 May 2024

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

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - CPC 

(4 Questions)

  • Q1. What motivates to you for this job ?
  • Q2. What are the risks you have taken in previous role?
  • Q3. How do you handle the situation when your opinion differ from your senior members in your team?
  • Q4. Provide a approach to develop ETL pipeline where csv file is dropped in S3 and transform through airflow and load to snowflake.
  • Ans. 

    Develop ETL pipeline using Airflow to process CSV files in S3 and load data into Snowflake.

    • Set up an S3 sensor in Airflow to detect when a new CSV file is dropped in the specified bucket.

    • Create a custom Python operator in Airflow to read the CSV file from S3, perform necessary transformations, and load data into Snowflake.

    • Use SnowflakeHook in Airflow to establish connection with Snowflake and execute SQL queries to loa...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all the cpc questions and provide answers with example and previous organization experience. Provide step by step answer to technical questions especially if they ask to design a pipeline.

Skills evaluated in this interview

Interview questions from similar companies

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..

I applied via Recruitment Consulltant and was interviewed before Nov 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the windows functions in sql
  • Ans. 

    Window functions in SQL are used to perform calculations across a set of rows that are related to the current row.

    • Window functions are used to calculate running totals, moving averages, and rank values.

    • They are applied to a set of rows defined by an OVER clause.

    • Examples of window functions include ROW_NUMBER, RANK, DENSE_RANK, and NTILE.

  • Answered by AI
  • Q2. Explain CTE in detail
  • Ans. 

    CTE stands for Common Table Expression, a temporary named result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • CTE is defined using the WITH keyword followed by a name and a SELECT statement.

    • It can be used to simplify complex queries, improve readability, and reduce code duplication.

    • CTE can also be recursive, allowing for hierarchical queries.

    • Example: WITH sales AS (SELECT * FROM order...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What is your expected salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice SQL in detail. Practice scenario based SQL questions. Read all the data warehousing concepts in detail.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(1 Question)

  • Q1. I was asked to write code and some scenario based question on Big Data etc
Round 2 - Case Study 

2nd with VP which is easy but he seems not okay with my ECTC

Interview Preparation Tips

Interview preparation tips for other job seekers - HDFC dont offer good ctc and what i understood from them till now they are more using legacy system and relied on lot of vendors

1). Prepare well on Pyspark, Lakehouse Arch
2).Basic Sql & bit case studies
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Island Perimeter and Number of Provinces. Basic Leetcode question

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

I applied via Referral

Round 1 - Coding Test 

Pyspark, Hive, Yarn, Python

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on windowing function
  • Q2. Questions on spark arch and python

Interview Preparation Tips

Topics to prepare for Axis Bank Data Engineer interview:
  • pyspark
  • hive
  • python
  • yarn
  • sql
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
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Spark Sql and Spark Scripting

Round 2 - Case Study 

Data Modelling for retail brand like dmart

Round 3 - Case Study 

ETL Pipeline which handles streaming data as well

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

HackerEarth / Hacker rank Test

Round 2 - Technical 

(1 Question)

  • Q1. Find the lowest cost when given days you want to use metro if you have cost of a day 1 ,7 and 30 day pass. DP Problem
  • Ans. 

    Using dynamic programming to find the lowest cost for metro passes based on given days.

    • Create an array to store the minimum cost for each day.

    • Iterate through each day and calculate the minimum cost based on 1, 7, or 30 day pass.

    • Update the minimum cost for each day using dynamic programming.

    • Return the minimum cost for the total number of days needed.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Normal HR Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DP and Graph Problems and know how banks work

Skills evaluated in this interview

NatWest Group Interview FAQs

How many rounds are there in NatWest Group Data Engineer interview for experienced candidates?
NatWest Group interview process for experienced candidates usually has 1 rounds. The most common rounds in the NatWest Group interview process for experienced candidates are Technical, Resume Shortlist and Telephonic Call.
How to prepare for NatWest Group Data Engineer interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at NatWest Group. The most common topics and skills that interviewers at NatWest Group expect are SQL, Python, Data Architecture, Analytics and Data Quality.
What are the top questions asked in NatWest Group Data Engineer interview for experienced candidates?

Some of the top questions asked at the NatWest Group Data Engineer interview for experienced candidates -

  1. Provide a approach to develop ETL pipeline where csv file is dropped in S3 and ...read more
  2. Questions on Snowflake and other distributed syst...read more
  3. SQL query writing involving complex quer...read more

Tell us how to improve this page.

NatWest Group Data Engineer Interview Process for Experienced

based on 1 interview

Interview experience

3
  
Average
View more
NatWest Group Data Engineer Salary
based on 167 salaries
₹10 L/yr - ₹34 L/yr
74% more than the average Data Engineer Salary in India
View more details

NatWest Group Data Engineer Reviews and Ratings

based on 8 reviews

4.6/5

Rating in categories

4.6

Skill development

4.9

Work-life balance

3.5

Salary

4.5

Job security

4.7

Company culture

3.6

Promotions

4.6

Work satisfaction

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

₹3.5 L/yr - ₹13.5 L/yr

Software Engineer
984 salaries
unlock blur

₹8.5 L/yr - ₹29.6 L/yr

Operations Analyst
767 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Associate Vice President
730 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