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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Lloyds Technology Centre Interview Questions and Answers

Updated 13 Jun 2025
Popular Designations

25 Interview questions

A Software Engineer was asked 1w ago
Q. What are the basics of Core Java?
Ans. 

Core Java is the foundational part of Java programming, encompassing its basic concepts, syntax, and core libraries.

  • Object-Oriented Programming: Java is based on OOP principles like inheritance, encapsulation, and polymorphism. Example: Class and object creation.

  • Data Types: Java has primitive types (int, char, boolean) and reference types (String, Arrays). Example: int num = 10;

  • Control Statements: Java supports if...

View all Software Engineer interview questions
A Devops Engineer was asked 1mo ago
Q. What is the Green/Blue deployment pattern?
Ans. 

Green/Blue deployment is a strategy for minimizing downtime and risk by running two identical production environments.

  • Two environments: 'Blue' is the current live environment, while 'Green' is the new version being deployed.

  • Traffic is switched from Blue to Green once the new version is tested and ready.

  • Rollback is easy: if issues arise, traffic can be redirected back to Blue.

  • Example: A web application is running o...

View all Devops Engineer interview questions
A Devops Engineer was asked 1mo ago
Q. What is Git Stash?
Ans. 

Git Stash temporarily saves changes in your working directory without committing them, allowing you to switch branches easily.

  • Git Stash is useful for saving uncommitted changes when you need to switch branches.

  • You can stash changes using the command 'git stash'.

  • To view stashed changes, use 'git stash list'.

  • To apply the most recent stash, use 'git stash apply'.

  • You can also drop a stash using 'git stash drop' to rem...

View all Devops Engineer interview questions
A Senior Quality Engineer was asked 2mo ago
Q. Implement a program demonstrating polymorphism, inheritance, and collections, similar to a HackerRank challenge.
Ans. 

Implementing polymorphism, inheritance, and collections in a program to manage different types of employees.

  • Use inheritance to create a base class 'Employee' and derived classes 'FullTimeEmployee' and 'PartTimeEmployee'.

  • Implement polymorphism by overriding a method 'calculateSalary()' in derived classes to handle different salary calculations.

  • Utilize collections like ArrayList to store a list of employees and iter...

View all Senior Quality Engineer interview questions
A Senior Software Engineer and Lead was asked 2mo ago
Q. What are the SOLID principles in software design?
Ans. 

SOLID principles are five design principles aimed at making software designs more understandable, flexible, and maintainable.

  • S - Single Responsibility Principle: A class should have one, and only one, reason to change. Example: A class handling user data should not also handle logging.

  • O - Open/Closed Principle: Software entities should be open for extension but closed for modification. Example: Use interfaces to a...

View all Senior Software Engineer and Lead interview questions
A Senior Software Engineer and Lead was asked 2mo ago
Q. What are the key steps involved in designing a website?
Ans. 

Key steps in website design include planning, wireframing, prototyping, development, testing, and deployment.

  • 1. Define the purpose and goals: Understand what the website aims to achieve, e.g., e-commerce, portfolio, blog.

  • 2. Research and analyze competitors: Study similar websites to identify strengths and weaknesses.

  • 3. Create user personas: Develop profiles of target users to guide design decisions.

  • 4. Wireframing:...

View all Senior Software Engineer and Lead interview questions
A Senior Software Engineer was asked 3mo ago
Q. What is Virtual DOM?
Ans. 

Virtual DOM is a lightweight representation of the actual DOM, optimizing updates and rendering in web applications.

  • Virtual DOM is a concept used in libraries like React to improve performance.

  • It creates a virtual representation of the UI in memory, allowing efficient updates.

  • When changes occur, the Virtual DOM is updated first, then compared to the actual DOM.

  • This process is called 'reconciliation', where only th...

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Senior Software Engineer was asked 3mo ago
Q. What are the differences between Git merge and Git rebase?
Ans. 

Git Merge combines branches, preserving history; Git Rebase rewrites history for a cleaner, linear project history.

  • Merge creates a new commit that combines changes from two branches.

  • Rebase moves or combines a sequence of commits to a new base commit.

  • Merge preserves the original context of the branches, showing the true history.

  • Rebase creates a linear history, making it easier to follow the project timeline.

  • Example...

View all Senior Software Engineer interview questions
A Service Engineer was asked 3mo ago
Q. Reverse a String Problem Statement Given a string, write a function that reverses the string and returns it.
Ans. 

Reversing a string involves rearranging its characters in the opposite order, which can be done using various programming techniques.

  • Use built-in functions: Many programming languages have built-in functions to reverse strings. Example in Python: `reversed_string = original_string[::-1]`.

  • Iterative approach: Loop through the string from the end to the beginning and build a new string. Example: `for char in original...

View all Service Engineer interview questions
A Senior Software Engineer was asked 8mo ago
Q. Write code to generate the Fibonacci sequence.
Ans. 

Fibonacci code generates a series of numbers where each number is the sum of the two preceding ones.

  • Start with two initial numbers, usually 0 and 1

  • Iterate through a loop to calculate the next number by adding the previous two numbers

  • Repeat until desired number of Fibonacci numbers are generated

View all Senior Software Engineer interview questions

Lloyds Technology Centre Interview Experiences

47 interviews found

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

I applied via Company Website and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Core java and coding question
Round 2 - HR 

(1 Question)

  • Q1. Questiom relates on previous company experience
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
No response
  • Q1. Asked about experience and different types of projects that I worked and value add created
  • Q2. Asked about agile expertise

Interview Preparation Tips

Interview preparation tips for other job seekers - The issue with Lloyds Tech lies within the HR department, as there is a lack of feedback regarding interviews, and they do not respond to calls or emails. After making several attempts to contact HR, he eventually answered, and when I inquired about the interview feedback, he mentioned that he was still waiting to hear back from the interviewer, even after a month. Why is it so difficult for them to provide feedback, whether selected or not, or to inform if the position has been put on hold? There is a noticeable lack of transparency, and I believe that HR lacks empathy and is very hard to reach for feedback. My friends have had similar experiences.
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
  • Ans. 

    Virtual DOM is a lightweight representation of the actual DOM, optimizing updates and rendering in web applications.

    • Virtual DOM is a concept used in libraries like React to improve performance.

    • It creates a virtual representation of the UI in memory, allowing efficient updates.

    • When changes occur, the Virtual DOM is updated first, then compared to the actual DOM.

    • This process is called 'reconciliation', where only the nec...

  • Answered by AI
  • Q2. Git Merge vs Git rebase
  • Ans. 

    Git Merge combines branches, preserving history; Git Rebase rewrites history for a cleaner, linear project history.

    • Merge creates a new commit that combines changes from two branches.

    • Rebase moves or combines a sequence of commits to a new base commit.

    • Merge preserves the original context of the branches, showing the true history.

    • Rebase creates a linear history, making it easier to follow the project timeline.

    • Example of M...

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. How u handled the challenges
  • Ans. 

    I tackled challenges by analyzing problems, collaborating with teams, and implementing effective solutions to drive project success.

    • Identified bottlenecks in a project timeline and proposed a revised schedule that improved delivery by 20%.

    • Faced a critical bug in production; led a team to conduct a root cause analysis and implemented a fix within 24 hours.

    • Collaborated with cross-functional teams to gather requirements, ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont go and give interviews here
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. Java - OOPS and Interfaces indepth
  • Q2. Reverse a string
  • Ans. 

    Reversing a string involves rearranging its characters in the opposite order, which can be done using various programming techniques.

    • Use built-in functions: Many programming languages have built-in functions to reverse strings. Example in Python: `reversed_string = original_string[::-1]`.

    • Iterative approach: Loop through the string from the end to the beginning and build a new string. Example: `for char in original_stri...

  • Answered by AI
  • Q3. SQL vs NoSql(Mongodb, MySQL, Postgres)
  • Ans. 

    SQL databases are structured and relational, while NoSQL databases like MongoDB are flexible and schema-less.

    • SQL databases (e.g., MySQL, PostgreSQL) use structured query language for defining and manipulating data.

    • NoSQL databases (e.g., MongoDB) are designed for unstructured data and can handle large volumes of diverse data types.

    • SQL databases enforce ACID properties (Atomicity, Consistency, Isolation, Durability) for ...

  • Answered by AI
  • Q4. DBMS (Indexing and Partitioning)
  • Q5. AWS - ASG and Virtual Private Network

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 appeared for an interview 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.
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
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
No response

I appeared for an interview 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
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

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.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What are microservices, and what are their key characteristics and advantages?
  • Ans. 

    Microservices are an architectural style that structures an application as a collection of loosely coupled services.

    • Independent Deployment: Each microservice can be deployed independently, allowing for faster updates and scaling.

    • Technology Agnostic: Different services can be built using different programming languages and technologies (e.g., a Python service can communicate with a Java service).

    • Resilience: Failure in o...

  • Answered by AI
  • Q2. What are the SOLID principles in software design?
  • Ans. 

    SOLID principles are five design principles aimed at making software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have one, and only one, reason to change. Example: A class handling user data should not also handle logging.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification. Example: Use interfaces to allow ...

  • Answered by AI
  • Q3. What are the key steps involved in designing a website?
  • Ans. 

    Key steps in website design include planning, wireframing, prototyping, development, testing, and deployment.

    • 1. Define the purpose and goals: Understand what the website aims to achieve, e.g., e-commerce, portfolio, blog.

    • 2. Research and analyze competitors: Study similar websites to identify strengths and weaknesses.

    • 3. Create user personas: Develop profiles of target users to guide design decisions.

    • 4. Wireframing: Sket...

  • Answered by AI
  • Q4. Security and best practice
  • Q5. Java latest version why not python
  • Ans. 

    Java offers strong performance, type safety, and extensive libraries, making it a preferred choice for large-scale applications over Python.

    • Performance: Java's Just-In-Time (JIT) compiler optimizes performance, making it suitable for high-load applications like banking systems.

    • Type Safety: Java's static typing helps catch errors at compile time, reducing runtime errors, which is crucial in enterprise environments.

    • Concu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Consider carefully before submitting any documents without an official offer.
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

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Lloyds Technology Centre?
Ask anonymously on communities.

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 Risk Management, Change Management, SQL, Cloud Computing and GCP.
What are the top questions asked in Lloyds Technology Centre interview?

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

  1. What are microservices, and what are their key characteristics and advantag...read more
  2. scenario based question like , microservice with multiple database or single da...read more
  3. What is the event-driven flow of a project utilizing Kafka Strea...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.

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 49 interview experiences

Difficulty level

Easy 13%
Moderate 81%
Hard 6%

Duration

Less than 2 weeks 52%
2-4 weeks 35%
4-6 weeks 10%
More than 8 weeks 3%
View more
Join Lloyds Technology Centre We're changing financial services and we want you to join us

Interview Questions from Similar Companies

Morningstar Interview Questions
3.9
 • 251 Interviews
Apex Group Interview Questions
2.7
 • 151 Interviews
Kotak Securities Interview Questions
3.6
 • 125 Interviews
Pine Labs Interview Questions
3.3
 • 121 Interviews
TresVista Interview Questions
2.7
 • 117 Interviews
Blackrock Interview Questions
3.8
 • 99 Interviews
Mr Cooper Interview Questions
4.0
 • 92 Interviews
Sharekhan Interview Questions
3.8
 • 90 Interviews
View all

Lloyds Technology Centre Reviews and Ratings

based on 126 reviews

3.4/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.4

Salary

3.4

Job security

3.2

Company culture

2.8

Promotions

3.2

Work satisfaction

Explore 126 Reviews and Ratings
Senior Software Engineer

Hyderabad / Secunderabad

4-6 Yrs

Not Disclosed

Technical Application Service Specialist

Hyderabad / Secunderabad

1-5 Yrs

Not Disclosed

Software Engineer

Hyderabad / Secunderabad

4-13 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
226 salaries
unlock blur

₹17.3 L/yr - ₹52 L/yr

Software Engineer
163 salaries
unlock blur

₹8.4 L/yr - ₹21.2 L/yr

Data Engineer
61 salaries
unlock blur

₹9.7 L/yr - ₹18.9 L/yr

Senior Data Engineer
41 salaries
unlock blur

₹14.9 L/yr - ₹45 L/yr

Quality Engineer
34 salaries
unlock blur

₹8 L/yr - ₹14 L/yr

Explore more salaries
Compare Lloyds Technology Centre with

SBI Cards & Payment Services

3.7
Compare

Axis Direct

3.8
Compare

Kotak Securities

3.6
Compare

Aadhar Housing Finance

4.1
Compare
write
Share an Interview