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

Updated 24 Oct 2024

Top Lloyds Technology Centre Senior Software Engineer Interview Questions and Answers

Lloyds Technology Centre Senior Software Engineer Interview Experiences

3 interviews found

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
  • Q2. About unit test cases
  • Q3. What are I/O streams and uses
  • Q4. What is callback

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.
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. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain Project Architecture, and followup questions
  • Q2. Write Fibonacci Code
  • 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

  • Answered by AI
  • Q3. General Devops questions
Round 2 - HR 

(3 Questions)

  • Q1. How to you provide feedback
  • Q2. How to you collaborate with other people
  • Ans. 

    I collaborate with others by actively listening, sharing ideas, providing feedback, and working together towards common goals.

    • Actively listen to others' ideas and perspectives

    • Share my own ideas and contribute to discussions

    • Provide constructive feedback to help improve team projects

    • Work together towards common goals and objectives

  • Answered by AI
  • Q3. Standard HR qustions

Interview Preparation Tips

Interview preparation tips for other job seekers - Reached till Document Verification, then they ghosted

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me your project details
  • Ans. 

    Developed a web application for online shopping with user authentication and payment gateway integration.

    • Used React.js for front-end development

    • Implemented user authentication using JWT tokens

    • Integrated Stripe API for payment processing

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Oops concepts explained
Round 3 - HR 

(1 Question)

  • Q1. Optimization Techniques
  • Ans. 

    Optimization techniques are methods used to improve the efficiency and performance of software applications.

    • Use of algorithms like dynamic programming and greedy algorithms

    • Profiling and performance tuning to identify bottlenecks

    • Code refactoring to improve readability and maintainability

    • Utilizing caching and memoization for faster access to data

    • Parallel processing and multi-threading for improved concurrency

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Data Structure based questions - medium level difficulty
  • Q2. Another DS Algo based ques on Arrays, tree, linkedlist
Round 2 - One-on-one 

(2 Questions)

  • Q1. Core java based ques
  • Q2. Logical questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Snake and ladder lld
  • Q2. Spring question on annotations
Round 2 - One-on-one 

(2 Questions)

  • Q1. Find k closest elements
  • Ans. 

    Find k closest elements in an array

    • Sort the array based on the absolute difference between each element and the target element

    • Return the first k elements from the sorted array

  • Answered by AI
  • Q2. K Closest elements

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA spring and LLD

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. About your self

I applied via Naukri.com and was interviewed in Apr 2021. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. C# basics, api, program

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in c# basics
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2023. There were 2 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 - Technical 

(5 Questions)

  • Q1. Pagination in SQL
  • Ans. 

    Pagination in SQL allows for displaying a subset of query results at a time.

    • Use LIMIT and OFFSET clauses in SQL queries to implement pagination.

    • LIMIT specifies the maximum number of rows to return.

    • OFFSET specifies the number of rows to skip before starting to return rows.

  • Answered by AI
  • Q2. OOPS concepts.. SOILD design principles
  • Q3. Thread vs task in multiprocessing.. explain with examples
  • Ans. 

    Threads and tasks are both used in multiprocessing, but have different characteristics and use cases.

    • Threads are lightweight processes within a single process, sharing memory space. They are managed by the operating system.

    • Tasks are units of work that can be executed asynchronously. They are typically managed by a task scheduler.

    • Threads are suitable for parallel processing and improving performance, while tasks are use...

  • Answered by AI
  • Q4. ViewBag vs Tempdata in MVC
  • Ans. 

    ViewBag is used to pass data from controller to view, while TempData is used to pass data between controller actions.

    • ViewBag is a dynamic property that allows you to pass data from controller to view

    • TempData is a dictionary object that allows you to pass data between controller actions

    • ViewBag is not type-safe and requires typecasting, while TempData is type-safe

    • ViewBag data is lost if redirection occurs, while TempData

  • Answered by AI
  • Q5. Abstract vs Interface
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and non-abstract methods.

    • Interfaces can only have abstract methods and constants.

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

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics of OOPS concepts, SQL joins

Skills evaluated in this interview

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

(1 Question)

  • Q1. L1 technical basic C#
Round 2 - Technical 

(1 Question)

  • Q1. L2 technical basic and advance
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Lloyds Technology Centre Interview FAQs

How many rounds are there in Lloyds Technology Centre Senior Software Engineer interview?
Lloyds Technology Centre interview process usually has 1-2 rounds. The most common rounds in the Lloyds Technology Centre interview process are Technical, One-on-one Round and HR.
How to prepare for Lloyds Technology Centre Senior Software 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 API Management, Case Management, Confluence, ETL Testing and Fullstack Development.
What are the top questions asked in Lloyds Technology Centre Senior Software Engineer interview?

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

  1. what are I/O streams and u...read more
  2. what is middlew...read more
  3. what is callb...read more

Tell us how to improve this page.

Lloyds Technology Centre Senior Software Engineer Interview Process

based on 4 interviews

Interview experience

2.8
  
Poor
View more
Join Lloyds Technology Centre We're changing financial services and we want you to join us
Lloyds Technology Centre Senior Software Engineer Salary
based on 73 salaries
₹16.5 L/yr - ₹49.9 L/yr
90% more than the average Senior Software Engineer Salary in India
View more details

Lloyds Technology Centre Senior Software Engineer Reviews and Ratings

based on 11 reviews

2.3/5

Rating in categories

2.3

Skill development

2.3

Work-life balance

2.8

Salary

2.2

Job security

2.1

Company culture

2.3

Promotions

2.2

Work satisfaction

Explore 11 Reviews and Ratings
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