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

Updated 25 Sep 2024

Lloyds Technology Centre Reactjs Developer Interview Experiences

1 interview found

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
  • Q2. Event Looping in JS
  • Q3. JS timing events
  • Q4. Error boundaries in JS
  • Q5. How to mock test cases using jest and react-testing library
  • Q6. UseCallback, useRef, useState, useEffect, useMemo
  • Q7. Higher Order Components
  • Q8. Promise.all vs promise.any vs promise.race
  • Q9. Closures, Hoisting

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(6 Questions)

  • Q1. Solid principles
  • Q2. OOPS concepts in c++
  • Ans. 

    OOPS concepts in C++ include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class)

    • Inheritance: creating new classes based on existing classes, allowing for code reuse

    • Polymorphism: ability for objects of different classes to be treated as objects of a common superclass

    • Abstraction: hiding complex implementation details and sh

  • Answered by AI
  • Q3. Multi threading and its implementation
  • Ans. 

    Multi threading is a programming concept where multiple threads run concurrently within a single process.

    • Multi threading allows for better utilization of CPU resources by running multiple tasks simultaneously.

    • Threads share the same memory space, which can lead to synchronization issues if not handled properly.

    • Examples of multi threading implementations include Java's Thread class, C#'s Task Parallel Library, and Python

  • Answered by AI
  • Q4. Diamond problem in c++
  • Ans. 

    Diamond problem occurs in multiple inheritance when a class inherits from two classes that have a common base class.

    • Diamond problem can be resolved using virtual inheritance in C++.

    • Virtual inheritance ensures that only one instance of the common base class is inherited by the derived class.

    • Example: class A is inherited by classes B and C, then class D inherits from both B and C. Using virtual inheritance for class A re

  • Answered by AI
  • Q5. Types of inheritance and examples
  • Ans. 

    Types of inheritance include single, multiple, multilevel, hierarchical, hybrid, and multipath inheritance.

    • Single inheritance: a class inherits from only one base class.

    • Multiple inheritance: a class inherits from more than one base class.

    • Multilevel inheritance: a class inherits from a class which in turn inherits from another class.

    • Hierarchical inheritance: multiple classes inherit from a single base class.

    • Hybrid inher...

  • Answered by AI
  • Q6. Runtime and compile time polymorphism

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basic C++ comcepts.

Skills evaluated in this interview

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 - One-on-one 

(2 Questions)

  • Q1. DS & Algo topics
  • Q2. GoLang concepts
Round 2 - One-on-one 

(2 Questions)

  • Q1. More on Server Architectural Questions
  • Q2. Questions related to database & all
Round 3 - HR 

(2 Questions)

  • Q1. Why are you switching the job
  • Q2. What is your goal in next 5years
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. Ask to write code for equal and hashcode in notepad
  • Q2. Type of Collections and its internal working
  • Ans. 

    Java collections are data structures that store and manipulate groups of objects.

    • Types of collections include List, Set, Map, Queue, etc.

    • Internal workings involve data structures like arrays, linked lists, hash tables, etc.

    • Collections framework provides interfaces and classes for working with collections.

  • Answered by AI
  • Q3. Count number of occurrence of string from Array
  • Ans. 

    Count occurrences of a specific string in an array of strings.

    • Iterate through the array and use a HashMap to store the count of each string.

    • Use the string as key and increment the count each time it is encountered.

    • Return the count of the specific string at the end.

  • Answered by AI
  • Q4. Write a code using stream
  • Ans. 

    Using stream to filter a list of strings

    • Use the filter method to apply a predicate to each element in the stream

    • Convert the stream back to a list using the collect method

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Due to network and power issue interview and processed

Skills evaluated in this interview

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

Aptitude test on engineering subjects

Round 2 - Coding Test 

Writing projects in c

Interview Preparation Tips

Interview preparation tips for other job seekers - Smooth process
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is linked list
  • Ans. 

    A linked list is a data structure where each element points to the next element in the sequence.

    • Consists of nodes connected by pointers

    • Can be singly linked (each node points to the next) or doubly linked (each node points to the next and previous)

    • Allows for dynamic size and efficient insertion/deletion operations

  • Answered by AI
Round 2 - Coding Test 

Hacker earth problem

Round 3 - HR 

(1 Question)

  • Q1. Ds , oops , sql
Round 4 - HR 

(1 Question)

  • Q1. About me , prefered location

Skills evaluated in this interview

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

It continues for 15 mins

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

I applied via Naukri.com and was interviewed in Apr 2023. There were 3 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 

(2 Questions)

  • Q1. Basic core Java question
  • Q2. Sql query based question
Round 3 - Technical 

(1 Question)

  • Q1. Normal coding question and work experience based question
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Easy - Medium questions

Round 2 - Technical 

(1 Question)

  • Q1. CS fundamentals/ Basic class diagram question
Round 3 - HM 

(1 Question)

  • Q1. General behavioural questions

Lloyds Technology Centre Interview FAQs

How many rounds are there in Lloyds Technology Centre Reactjs Developer interview?
Lloyds Technology Centre interview process usually has 1 rounds. The most common rounds in the Lloyds Technology Centre interview process are Technical.
What are the top questions asked in Lloyds Technology Centre Reactjs Developer interview?

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

  1. How to mock test cases using jest and react-testing libr...read more
  2. Function declaration vs Function express...read more
  3. Error boundaries in...read more

Tell us how to improve this page.

Lloyds Technology Centre Reactjs Developer Interview Process

based on 1 interview

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.8
 • 570 Interviews
HSBC Group Interview Questions
4.0
 • 491 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morningstar Interview Questions
3.9
 • 242 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
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