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 Backend Developer Interview Questions and Answers

Updated 26 May 2024

Lloyds Technology Centre Backend Developer Interview Experiences

1 interview 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

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.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Question will be mostly related to Java stream, collection and multithreading

Backend Developer Interview Questions Asked at Other Companies

asked in NoBroker
Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, yo ... read more
asked in Simpplr
Q2. Array Sum Calculation Calculate the sum of all elements in an arr ... read more
Q3. Given 9 balls, all of which weigh the same except for one, what i ... read more
asked in Simpplr
Q4. Remove Duplicates from String Problem Statement You are provided ... read more
asked in BlackNGreen
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. How to reverse a linked list in o(N)
  • Ans. 

    Reversing a linked list in O(N) involves iterating through the list and reversing the pointers of each node.

    • Initialize three pointers: prev (null), current (head), and next (null).

    • Iterate through the linked list until current is null.

    • In each iteration, store the next node: next = current.next.

    • Reverse the current node's pointer: current.next = prev.

    • Move prev and current one step forward: prev = current; current = next.

    • O...

  • Answered by AI
  • Q2. Check whether string is palindrome or not in o(logn)

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are at initial level of your life then this company will make you learn lot of things but if you are looking for handy salary with good WLB then this wouldn’t be a good choice, as you have to work minimum 9-10hours a day. Also promotions don’t include any additional hike.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Multithreading concepts collection
Round 2 - Technical 

(1 Question)

  • Q1. Spring core, jpa , Microservices

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Round duration - 90 Minutes
Round difficulty - Medium

Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Validate Binary Search Tree Problem Statement

    Your task is to determine if a given binary tree with 'N' nodes is a valid Binary Search Tree (BST). A BST is defined by the following properties:

    • The lef...
  • Ans. 

    Validate if a given binary tree is a valid Binary Search Tree (BST) based on its properties.

    • Check if the left subtree of a node has only nodes with data less than the node's data.

    • Verify if the right subtree of a node has only nodes with data greater than the node's data.

    • Ensure that both the left and right subtrees are also binary search trees.

    • Implement a validation function for a BST.

    • Output 'true' if the binary tree is...

  • Answered by AI
Round 3 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria8 CGPABlackrock interview preparation:Topics to prepare for the interview - Data Structure , Oops , Dynamic Programming, Memory Management, DBMSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Pratice regularly atleast 5 problem . Make it habit .Try to cover Leetcode medium questions as many as possible 
Tip 2 : Be through with your projects . At some point interviewer will ask you some project related questions 
Tip 3 : Be strong in your CS fundamentals.

Application resume tips for other job seekers

Tip 1 : Do not put irrelevant information such as DOB
Tip 2 : Put only those skill which you can defend in cross questioning

Final outcome of the interviewSelected

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Java questions , stream api
  • Q2. Whatever you have mention in resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Java basics, memory management, multithreading.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. I was asked medium level leetcode questions. So if you have good command and can do basic-medium questions, then you are good to go.
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Assignment 

It's their home assignment you need to make it in whatever tech stack you want to make and then interview happens on the basis of this and improvements and questions are asked around it.

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

(5 Questions)

  • Q1. How are you today
  • Q2. What's the weather today
  • Ans. 

    The weather today is sunny with a few clouds and a high of 75 degrees.

    • Sunny weather with some clouds

    • High temperature of 75 degrees

    • Possibility of rain later in the day

  • Answered by AI
  • Q3. Why do you want to join
  • Ans. 

    I am passionate about creating innovative software solutions and believe your company aligns with my values and goals.

    • Passionate about software development

    • Believe company aligns with values and goals

  • Answered by AI
  • Q4. What values do you have
  • Ans. 

    I value continuous learning, collaboration, innovation, and integrity in my work as a software developer.

    • Continuous learning: I believe in staying updated with the latest technologies and trends in the industry.

    • Collaboration: I value working in a team and sharing knowledge and ideas with my colleagues.

    • Innovation: I strive to find creative solutions to problems and improve processes.

    • Integrity: I believe in honesty, tran...

  • Answered by AI
  • Q5. What do you like more, array or list
  • Ans. 

    I prefer arrays for their fixed size and faster access, but lists for their flexibility and ease of manipulation.

    • Arrays are preferred for their fixed size and faster access time, especially when random access is required.

    • Lists are more flexible and easier to manipulate, especially when elements need to be added or removed frequently.

    • Arrays are typically used when the size of the collection is known beforehand, while li...

  • Answered by AI

Skills evaluated in this interview

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

    An aggregator is a system or service that collects and organizes data from multiple sources into a unified view.

    • Aggregators can be used in various domains, such as news, e-commerce, and data analysis.

    • Example: News aggregators like Google News compile articles from different news sources.

    • In e-commerce, price aggregators compare prices from various retailers to help consumers find the best deals.

    • Data aggregators collect ...

  • Answered by AI

Lloyds Technology Centre Interview FAQs

How many rounds are there in Lloyds Technology Centre Backend Developer interview?
Lloyds Technology Centre interview process usually has 2 rounds. The most common rounds in the Lloyds Technology Centre interview process are One-on-one Round and HR.
What are the top questions asked in Lloyds Technology Centre Backend Developer interview?

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

  1. Questiom relates on previous company experie...read more
  2. Core java and coding quest...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
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
 • 154 Interviews
Kotak Securities Interview Questions
3.6
 • 126 Interviews
Pine Labs Interview Questions
3.3
 • 122 Interviews
TresVista Interview Questions
2.7
 • 117 Interviews
Blackrock Interview Questions
3.7
 • 100 Interviews
Mr Cooper Interview Questions
4.0
 • 93 Interviews
Sharekhan Interview Questions
3.8
 • 90 Interviews
View all

Lloyds Technology Centre Backend Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
226 salaries
unlock blur

₹17.3 L/yr - ₹52 L/yr

Software Engineer
166 salaries
unlock blur

₹10.6 L/yr - ₹20.1 L/yr

Data Engineer
60 salaries
unlock blur

₹10.4 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