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

Compare button icon Compare button icon Compare
3.5

based on 57 Reviews

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
  • 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 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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Dr Mahalingam College of Engineering & Technology, Coimbatore and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Arithmetic Aptitude , Computer Application and SQL

Round 2 - System Design 

(1 Question)

  • Q1. Create a Fitness Tracking Application
  • Ans. 

    A fitness tracking application to monitor and track user's physical activities and progress.

    • Include features like tracking steps, calories burned, distance traveled, and workout sessions.

    • Allow users to set goals, view progress charts, and receive notifications for reminders.

    • Integrate with wearable devices like Fitbit or Apple Watch for real-time data syncing.

    • Provide social sharing options to motivate users and compete ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Mr Cooper Software Developer interview:
  • System Design
  • SQL
  • OOPS

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.

Join Lloyds Technology Centre We're changing financial services and we want you to join us

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 560 Interviews
Wells Fargo Interview Questions
3.9
 • 552 Interviews
Bajaj Finserv Interview Questions
4.0
 • 497 Interviews
HSBC Group Interview Questions
4.0
 • 488 Interviews
American Express Interview Questions
4.2
 • 357 Interviews
UBS Interview Questions
4.0
 • 334 Interviews
BNY Interview Questions
4.0
 • 331 Interviews
Morgan Stanley Interview Questions
3.7
 • 301 Interviews
Morningstar Interview Questions
4.0
 • 240 Interviews
View all
Software Engineer
67 salaries
unlock blur

₹9 L/yr - ₹22.4 L/yr

Senior Software Engineer
57 salaries
unlock blur

₹16.5 L/yr - ₹49.9 L/yr

Quality Engineer
21 salaries
unlock blur

₹8 L/yr - ₹13 L/yr

Senior Data Analyst
20 salaries
unlock blur

₹14.3 L/yr - ₹29.3 L/yr

Senior Data Engineer
13 salaries
unlock blur

₹14.9 L/yr - ₹37.5 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