Premium Employer

i

This company page is being actively managed by Lloyds Technology Centre Team. If you also belong to the team, you can get access from here

Lloyds Technology Centre Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Lloyds Technology Centre Senior Data Engineer Interview Questions and Answers

Updated 9 Jan 2025

Lloyds Technology Centre Senior Data Engineer Interview Experiences

2 interviews found

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

(1 Question)

  • Q1. Sql loop query to unnest nested list
  • Ans. 

    Use SQL loop query to unnest nested list

    • Use a recursive CTE (Common Table Expression) to unnest the nested list

    • Join the CTE with the original table to retrieve the unnested data

    • Consider using functions like JSON_ARRAY_ELEMENTS() for JSON data

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Coding and technical questions they are asking to check a number is prime number ir not for 11 years experience candidate
  • Q2. SQL joins

Interview Preparation Tips

Interview preparation tips for other job seekers - Please have the proper requirement for a position/role before start hiring. Do not waste candidates time

Senior Data Engineer Interview Questions Asked at Other Companies

asked in 7 Eleven
Q1. Write a query to get the customer with the highest total order va ... read more
asked in 7 Eleven
Q2. There are 10 million records in the table and the schema does not ... read more
asked in 7 Eleven
Q3. How do you handle data pipeline when the schema information keeps ... read more
asked in 7 Eleven
Q4. Difference between Parquet and ORC file. Why industry uses parque ... read more
asked in 7 Eleven
Q5. What is Normalisation and Denormalisation? When do we use them? G ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. SQL queries, python questions, project overview
Round 2 - Behavioral 

(1 Question)

  • Q1. Project description, what all technologies you worked upon, will u be able to relocate, etc
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are hooks, event loop usecontext api
  • Q2. What is aggregator
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Jsjwkqnsnns.hejwkqp hsowpa bsoqla bspam

Round 2 - Assignment 

Bsppq hspals bsoak nspal bdoa a

Round 3 - Group Discussion 

Hsoaks bspapa bosoaks bospmwa bosoebs

Round 4 - One-on-one 

(2 Questions)

  • Q1. Jspwpaknsbe jsos heopw
  • Q2. Jsppq jepwl jspam
Round 5 - Case Study 

Hdosm jspwl jspwla bqiq heowwo hsowoa

Round 6 - One-on-one 

(2 Questions)

  • Q1. Hslwla jwpwpq belwp
  • Q2. Bspwlw noslw nspq a

Data Engineer Interview Questions & Answers

TresVista user image chaitanya gabhane

posted on 2 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Python basic codes
  • Q2. SQL query of aggregate function
  • Ans. 

    SQL query using aggregate functions to perform calculations on a dataset

    • Use aggregate functions like SUM, AVG, COUNT, MIN, MAX to perform calculations on a dataset

    • Group data using GROUP BY clause to apply aggregate functions on specific groups

    • Filter data using HAVING clause after applying aggregate functions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

1 hour 10 mins, MERN Stack, Face to Face. Mongodb, medium DSA Question, callback, eventloop, NodeJS asynchronous working

Interview Preparation Tips

Interview preparation tips for other job seekers - you should have prior experience in coding
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Technical.purely
Round 2 - One-on-one 

(1 Question)

  • Q1. Purely tech..and then you present a dashboard on power bi
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. NANANANANANANANA
  • Q2. NANANANANANANANANA
Round 2 - One-on-one 

(2 Questions)

  • Q1. NANANANAANANANA
  • Q2. NANANANANANANANANANA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

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 - Coding Test 

Low-level design interview
I need to design a Music player app using oops concept

Round 3 - One-on-one 

(5 Questions)

  • Q1. Sort the stack in O(1) time complexity
  • Ans. 

    Use an additional stack to store sorted elements and maintain the minimum element at the top of the original stack.

    • Create a new stack to store sorted elements.

    • Pop elements from the original stack and compare with the top element of the new stack.

    • If the popped element is smaller, push it to the new stack. If larger, keep popping from the new stack and push to the original stack until the correct position is found.

    • Repeat...

  • Answered by AI
  • Q2. Difference between process and thread
  • Ans. 

    A process is an instance of a program running on a computer, while a thread is a smaller unit of execution within a process.

    • A process has its own memory space, while threads within the same process share memory.

    • Processes are independent of each other, while threads within the same process can communicate with each other.

    • Processes are heavyweight, requiring separate memory and resources, while threads are lightweight an...

  • Answered by AI
  • Q3. Difference between abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface cannot have any of these.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract class is used to provide a common base for multiple derived classes, while interface is used to define a contract fo...

  • Answered by AI
  • Q4. What is race condition?
  • Ans. 

    A race condition is a situation in which the outcome of a program depends on the order of execution of its threads or processes.

    • Occurs when multiple threads or processes access shared data or resources concurrently

    • Can lead to unpredictable behavior or bugs in the program

    • Prevented by using synchronization mechanisms like locks or semaphores

    • Example: Two threads trying to increment a shared variable simultaneously

  • Answered by AI
  • Q5. What is normalization in dbms
  • Ans. 

    Normalization in DBMS is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a database into smaller, more manageable tables.

    • It helps in reducing data redundancy by storing data in a structured way.

    • There are different normal forms like 1NF, 2NF, 3NF, BCNF, etc.

    • Example: In a database of students, instead of storing student details in multiple ...

  • Answered by AI

Skills evaluated in this interview

Lloyds Technology Centre Interview FAQs

How many rounds are there in Lloyds Technology Centre Senior Data Engineer interview?
Lloyds Technology Centre interview process usually has 1 rounds. The most common rounds in the Lloyds Technology Centre interview process are Technical.
How to prepare for Lloyds Technology Centre Senior Data Engineer interview?
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 Lloyds Technology Centre. The most common topics and skills that interviewers at Lloyds Technology Centre expect are Data Engineering, Appdynamics, Azure Cloud, Clinical Data Management and Data Analysis.
What are the top questions asked in Lloyds Technology Centre Senior Data Engineer interview?

Some of the top questions asked at the Lloyds Technology Centre Senior Data Engineer interview -

  1. Sql loop query to unnest nested l...read more
  2. coding and technical questions they are asking to check a number is prime numb...read more

Tell us how to improve this page.

Lloyds Technology Centre Senior Data Engineer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more
Join Lloyds Technology Centre We're changing financial services and we want you to join us

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 569 Interviews
HSBC Group Interview Questions
4.0
 • 491 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
Bank of America Interview Questions
4.3
 • 237 Interviews
Apex Group Interview Questions
2.7
 • 132 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
TresVista Interview Questions
2.9
 • 114 Interviews
View all
Lloyds Technology Centre Senior Data Engineer Salary
based on 18 salaries
₹12 L/yr - ₹39.6 L/yr
35% more than the average Senior Data Engineer Salary in India
View more details

Lloyds Technology Centre Senior Data Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

3.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
79 salaries
unlock blur

₹9.6 L/yr - ₹25 L/yr

Senior Software Engineer
73 salaries
unlock blur

₹16.5 L/yr - ₹49.9 L/yr

Senior Data Analyst
23 salaries
unlock blur

₹14.3 L/yr - ₹28 L/yr

Quality Engineer
23 salaries
unlock blur

₹7 L/yr - ₹13 L/yr

Senior Data Engineer
18 salaries
unlock blur

₹12 L/yr - ₹39.6 L/yr

Explore more salaries
Compare Lloyds Technology Centre with

HSBC Group

4.0
Compare

Standard Chartered Plc

3.0
Compare

Barclays PLC

3.9
Compare

JPMorgan Chase & Co.

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