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 Interview Questions, Process, and Tips

Updated 11 Mar 2025

Top Lloyds Technology Centre Interview Questions and Answers

View all 14 questions

Lloyds Technology Centre Interview Experiences

Popular Designations

40 interviews found

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

I was interviewed in Feb 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. Java - OOPS and Interfaces indepth
  • Q2. Reverse a string
  • Q3. SQL vs NoSql(Mongodb, MySQL, Postgres)
  • Q4. DBMS (Indexing and Partitioning)
  • Q5. AWS - ASG and Virtual Private Network

Service Engineer Interview Questions asked at other Companies

Q1. What are the compulsory policy excess in four wheeler private vehicles?
View answer (12)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is Virtual DOM
  • Q2. Git Merge vs Git rebase
Round 2 - Behavioral 

(1 Question)

  • Q1. How u handled the challenges

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont go and give interviews here

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Lloyds Technology Centre Interview Questions and Answers for Freshers
illustration image

Associate Vice President Interview Questions & Answers

user image Rathish Rajendran

posted on 19 Feb 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - HR 

(1 Question)

  • Q1. Experience based.
Round 2 - One-on-one 

(1 Question)

  • Q1. Experienced based
Round 3 - Global Leader 

(1 Question)

  • Q1. Experience Based
Round 4 - Global Head 

(1 Question)

  • Q1. Experience based
Round 5 - HR 

(1 Question)

  • Q1. Generic experience based

Interview Preparation Tips

Interview preparation tips for other job seekers - Your pay expectations are heard, made a note of, but not taken into consideration while creating the final offer. Poor HR practices involve trying to fit candidate into a budget that may be considerably lower than what you had explicitly communicated at the start of the interviews. Five rounds of interviews and a lot of time, wasted.

Associate Vice President Interview Questions asked at other Companies

Q1. Discuss a case study on a preferred topic or use sample problems to explain a difficult concept. First name the topic and then the concept/case study to be illustrated within 5 mins. CBSE Hot questions are preferred.
View answer (1)
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

Q1. Write a query to get the customer with the highest total order value for each year, month. [Note: Order table is different and Customer table is different. Order_ID and Customer_ID are the PK of the table with Oid from Customer table being ... read more
View answer (2)

Lloyds Technology Centre interview questions for popular designations

 Software Engineer

 (4)

 Senior Software Engineer

 (4)

 Software Developer

 (3)

 Softwaretest Engineer

 (2)

 Senior Data Engineer

 (2)

 Senior Data Analyst

 (2)

 Senior Engineer

 (1)

 Backend Developer

 (1)

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. React based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - When I enter into room, the Strong cigarate smoke smell invited me. Interviewer is like 30-34 age. He is arogant bitt in his behaviour. He is not ready to take seniors then him. So hiring only juniors then him who can listen to him. I am sure my answers are perfect, but he is not ready to take seniors, that too ladies. So simply finished 15 min interview and rejected. I am sure Lloyds management bluntly beleive these kind of arrogant people. I do not see any female developers in their linkedin much, except only as HRs who never reply to candidates

Fullstack Java Application Developer Interview Questions asked at other Companies

Q1. which authentication methods used to secure rest api
View answer (2)

Get interview-ready with Top Lloyds Technology Centre Interview Questions

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

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

Round 1 - Technical 

(9 Questions)

  • Q1. Function declaration vs Function expression
  • Ans. 

    Function declaration is hoisted and can be called before it's defined, while function expression is not hoisted and must be defined before it's called.

    • Function declaration is hoisted, function expression is not

    • Function declaration can be called before it's defined, function expression must be defined before it's called

    • Function declaration syntax: function myFunction() {}, function expression syntax: const myFunction =

  • Answered by AI
  • Q2. Event Looping in JS
  • Ans. 

    Event Looping in JS is the mechanism that allows JavaScript to handle asynchronous operations by executing callback functions in a non-blocking way.

    • Event Loop is responsible for executing code, collecting and processing events, and executing queued sub-tasks.

    • JS is single-threaded, so Event Loop helps in managing asynchronous operations without blocking the main thread.

    • Tasks are added to the call stack, then executed an...

  • Answered by AI
  • Q3. JS timing events
  • Q4. Error boundaries in JS
  • Ans. 

    Error boundaries in JS help catch and handle errors in React components.

    • Error boundaries are React components that catch JavaScript errors anywhere in their child component tree.

    • They log errors and display a fallback UI instead of crashing the whole app.

    • To create an error boundary, define a new component with componentDidCatch(error, info) method.

    • Use error boundaries sparingly as they only catch errors in components be...

  • Answered by AI
  • Q5. How to mock test cases using jest and react-testing library
  • Ans. 

    Mock test cases using jest and react-testing library

    • Use jest.fn() to create mock functions for testing

    • Use jest.mock() to mock dependencies

    • Use render() from react-testing library to render components for testing

    • Use fireEvent() from react-testing library to simulate user interactions

    • Use expect() from jest to make assertions on test results

  • Answered by AI
  • Q6. UseCallback, useRef, useState, useEffect, useMemo
  • Q7. Higher Order Components
  • Q8. Promise.all vs promise.any vs promise.race
  • Q9. Closures, Hoisting

Skills evaluated in this interview

Reactjs Developer Interview Questions asked at other Companies

Q1. Implement counter such that it has 2 buttons to increment and decrement the values and also add a input field such that, whatever input is given, the value should be to that and value should should be decreased and increased from the input ... read more
View answer (2)

Jobs at Lloyds Technology Centre

View all
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic Technical questions along with suitable tech stack testing
  • Q2. Cloud Types, SLI, SLO, SLA , Monitoring setups etc
Round 2 - Technical 

(2 Questions)

  • Q1. Interviewers were rude, unprofessional. They didn't ask any technical questions, some random cross questions irrelevant and repeated things, not how theybhave been hired at Lloyds as Engineering Leads.
  • Q2. Either they have already hired someone for that position or they must be having their known candidates whom they want get into their team due to which they ask other candidates irrelevant questions and rej...

Interview Preparation Tips

Interview preparation tips for other job seekers - Based on my experience with Engineering Leads at Lloyds I understand now why so much negative feedback about them on Fishbowl, Glassdoor, AmbitionBox. these kind of pathetic guys makes work environment pathetic, slavery, rude and unprofessional work culture.

Site Reliability Engineer Interview Questions asked at other Companies

Q1. what is diff cloud formation vs terraform, release management like blue green etc.
View answer (1)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is middleware
  • Ans. 

    Middleware is software that acts as a bridge between different applications or components, allowing them to communicate and work together.

    • Middleware facilitates communication between different software components

    • It can handle tasks such as data transformation, security, and routing

    • Examples include message brokers like RabbitMQ, API gateways like Kong, and web servers like Nginx

  • Answered by AI
  • Q2. About unit test cases
  • Q3. What are I/O streams and uses
  • Ans. 

    I/O streams are channels through which data can be transferred between a program and an external source or destination.

    • I/O streams can be used for reading input from a keyboard or file

    • I/O streams can be used for writing output to a screen or file

    • I/O streams can be used for network communication

  • Answered by AI
  • Q4. What is callback
  • Ans. 

    A callback is a function that is passed as an argument to another function and is executed after a specific event occurs.

    • Used in asynchronous programming to handle responses or events

    • Allows for more flexible and modular code

    • Commonly used in JavaScript for event handling

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer expecting all google definitions not Realtime examples, If you say Realtime example then he says where and how we can use this is the question which comes next.
It's just like asking a question ABC and tell me what is the definition of ABC in text book I want only that definition your definition was not there in textbook.

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I was interviewed in Jul 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions on few sample codings
  • Q2. Questions to solve normal coding chalenge
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions on GCP

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer concluded the interview in 10 mins, he asked, before even I start answering he went to the next question, or else if he asked me write, he wouldn't let me complete what i wrote too. When I asked why aren't you letting me finish, he said I should complete lot of interviews.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Asked to write a code
  • Q2. Springboot questions
Round 2 - HR 

(1 Question)

  • Q1. Basic discussion

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)
Contribute & help others!
anonymous
You can choose to be anonymous

Lloyds Technology Centre Interview FAQs

How many rounds are there in Lloyds Technology Centre interview?
Lloyds Technology Centre interview process usually has 1-2 rounds. The most common rounds in the Lloyds Technology Centre interview process are Technical, Coding Test and HR.
How to prepare for Lloyds Technology Centre 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, GCP, SQL, Fullstack Development and Javascript.
What are the top questions asked in Lloyds Technology Centre interview?

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

  1. How to mock test cases using jest and react-testing libr...read more
  2. What are the Agile metrics you fol...read more
  3. Function declaration vs Function express...read more
How long is the Lloyds Technology Centre interview process?

The duration of Lloyds Technology Centre interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Suhail Bahwan Group

No Interviews

INTERVIEWS

Q2 Software

No Interviews

INTERVIEWS

VSoft Technologies

No Interviews

COMPANY BENEFITS

Lloyds Technology Centre

No Benefits

SALARIES

Lloyds Technology Centre

No Salaries

REVIEWS

Lloyds Technology Centre

No Reviews

JOBS

Lloyds Technology Centre

No Jobs

PHOTOS

Lloyds Technology Centre

No Photos

COMPANY BENEFITS

Suhail Bahwan Group

No Benefits

SALARIES

Suhail Bahwan Group

No Salaries

Tell us how to improve this page.

Lloyds Technology Centre Interview Process

based on 43 interviews

Interview experience

3.5
  
Good
View more

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

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
 • 564 Interviews
HSBC Group Interview Questions
4.0
 • 484 Interviews
UBS Interview Questions
3.9
 • 331 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
Bank of America Interview Questions
4.3
 • 235 Interviews
Apex Group Interview Questions
2.7
 • 132 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
Barclays PLC Interview Questions
3.9
 • 10 Interviews
View all

Lloyds Technology Centre Reviews and Ratings

based on 82 reviews

3.4/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

3.3

Salary

3.5

Job security

3.3

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 82 Reviews and Ratings
Quality Engineer

Hyderabad / Secunderabad

7-12 Yrs

Not Disclosed

Quality Engineer

Hyderabad / Secunderabad

7-12 Yrs

Not Disclosed

Women Returnees | Quality Engineer

Hyderabad / Secunderabad

4-9 Yrs

Not Disclosed

Explore more jobs
Software Engineer
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
75 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Data Analyst
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Data Engineer
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Lloyds Technology Centre with

HSBC Group

3.9
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