Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by London Stock Exchange Group Team. If you also belong to the team, you can get access from here

London Stock Exchange Group Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

London Stock Exchange Group Engineer Trainee Interview Questions and Answers

Updated 2 Oct 2024

7 Interview questions

An Engineer Trainee was asked 8mo ago
Q. What is the static keyword and what are its uses?
Ans. 

The static keyword in programming is used to declare variables, functions, or classes that retain their values or state throughout the program's execution.

  • Static variables retain their values between function calls

  • Static functions can only be accessed within the same file

  • Static classes cannot be instantiated and have limited visibility

  • Static keyword can also be used in C++ to declare class members shared among all...

An Engineer Trainee was asked 8mo ago
Q. Explain the concepts of OOPS and provide real-life examples.
Ans. 

OOPS concepts are fundamental to object-oriented programming and include inheritance, encapsulation, polymorphism, and abstraction.

  • Inheritance: A child class inherits properties and behaviors from a parent class. Example: Animal class can be a parent class with child classes like Dog and Cat inheriting its attributes.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: A c...

Engineer Trainee Interview Questions Asked at Other Companies

Q1. If 10 people at a meeting shake hands with each other once, how m ... read more
asked in Siemens
Q2. A drawer contains 10 pairs each of red and blue socks. What is th ... read more
asked in AVASOFT
Q3. What is the logic for determining if a number is an Armstrong num ... read more
asked in Sobha
Q4. Shear force diagram and bending moment diagram for combination of ... read more
asked in Siemens
Q5. If you are given two CSV files, each containing two columns, how ... read more
An Engineer Trainee was asked 8mo ago
Q. What are the key differences between structured and object-oriented programming languages?
Ans. 

Structure languages focus on procedures and functions, while object-oriented languages focus on objects and classes.

  • Structure languages use functions and procedures to manipulate data

  • Object-oriented languages use objects and classes to encapsulate data and behavior

  • Structure languages are more procedural in nature, while object-oriented languages are more modular and reusable

  • Examples of structure languages include ...

An Engineer Trainee was asked 8mo ago
Q. What OOP concepts are implemented in your project?
Ans. 

Encapsulation, Inheritance, Polymorphism, Abstraction

  • Encapsulation: Data hiding and bundling of data with methods. Example: Using private variables and public methods.

  • Inheritance: Reusing code and creating a hierarchy of classes. Example: Subclass inheriting properties and methods from a superclass.

  • Polymorphism: Ability to present the same interface for different data types. Example: Method overloading and overrid...

An Engineer Trainee was asked 8mo ago
Q. How do you approach coding questions in a coding round?
Ans. 

A systematic approach to coding questions ensures clarity, efficiency, and accuracy in problem-solving during interviews.

  • Understand the problem: Read the question carefully and clarify any doubts.

  • Break it down: Divide the problem into smaller, manageable parts.

  • Plan your solution: Outline the algorithm or steps before coding.

  • Write clean code: Use meaningful variable names and maintain proper formatting.

  • Test your so...

An Engineer Trainee was asked 8mo ago
Q. System architecture diagram for web application project.
Ans. 

The system architecture diagram for a web application project visually represents the components and their interactions.

  • Include components like client-side interface, server-side application, database, and external services

  • Show how these components communicate with each other

  • Consider scalability, security, and performance in the design

  • Use standard symbols and notations for clarity

An Engineer Trainee was asked 8mo ago
Q. Access Modifiers in java
Ans. 

Access modifiers in Java control the visibility of classes, methods, and variables.

  • There are four types of access modifiers in Java: public, private, protected, and default.

  • Public: accessible from any other class.

  • Private: only accessible within the same class.

  • Protected: accessible within the same package and subclasses.

  • Default: accessible only within the same package.

  • Example: public class MyClass { private int myV...

Are these interview questions helpful?

London Stock Exchange Group Engineer Trainee Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Round 1 was aptitude round, it consisted of java and c++ snippets and we had to guess the output. Apart from that there were problems on speed, velocity, distance and time. Problems on word-letter patterns were also asked. The aptitude round had 30 questions and time given was 30 minutes.

Round 2 - Coding Test 

Aptitude round was the only elimination round. The next following 4 rounds were non-elimination rounds. Coding test included 3 questions - 1 and half hour was given to solve the same. It is fine if you don't perform well here, since it is a non-elimination round. But try to solve 1 and half or 2 questions atleast. The questions were mainly based on 1d arrays, 2D arrays, strings and string arrays.

Round 3 - Technical 

(11 Questions)

  • Q1. Introduce yourself.
  • Ans. 

    I am a recent graduate with a degree in engineering, eager to learn and grow in the field.

    • Recent graduate with a degree in engineering

    • Passionate about learning and growing in the field

    • Eager to apply theoretical knowledge to practical projects

  • Answered by AI
  • Q2. Difference between Structure and object oriented languages
  • Ans. 

    Structure languages focus on procedures and functions, while object-oriented languages focus on objects and classes.

    • Structure languages use functions and procedures to manipulate data

    • Object-oriented languages use objects and classes to encapsulate data and behavior

    • Structure languages are more procedural in nature, while object-oriented languages are more modular and reusable

    • Examples of structure languages include C and...

  • Answered by AI
  • Q3. Explain of OOPS concepts and their real life examples.
  • Ans. 

    OOPS concepts are fundamental to object-oriented programming and include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: A child class inherits properties and behaviors from a parent class. Example: Animal class can be a parent class with child classes like Dog and Cat inheriting its attributes.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: A car ob...

  • Answered by AI
  • Q4. What is static keyword and it's usage.
  • Ans. 

    The static keyword in programming is used to declare variables, functions, or classes that retain their values or state throughout the program's execution.

    • Static variables retain their values between function calls

    • Static functions can only be accessed within the same file

    • Static classes cannot be instantiated and have limited visibility

    • Static keyword can also be used in C++ to declare class members shared among all inst...

  • Answered by AI
  • Q5. System architecture diagram for web application project.
  • Ans. 

    The system architecture diagram for a web application project visually represents the components and their interactions.

    • Include components like client-side interface, server-side application, database, and external services

    • Show how these components communicate with each other

    • Consider scalability, security, and performance in the design

    • Use standard symbols and notations for clarity

  • Answered by AI
  • Q6. Access Modifiers in java
  • Ans. 

    Access modifiers in Java control the visibility of classes, methods, and variables.

    • There are four types of access modifiers in Java: public, private, protected, and default.

    • Public: accessible from any other class.

    • Private: only accessible within the same class.

    • Protected: accessible within the same package and subclasses.

    • Default: accessible only within the same package.

    • Example: public class MyClass { private int myVar; p...

  • Answered by AI
  • Q7. What OOPS concepts are implemented in my project
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction

    • Encapsulation: Data hiding and bundling of data with methods. Example: Using private variables and public methods.

    • Inheritance: Reusing code and creating a hierarchy of classes. Example: Subclass inheriting properties and methods from a superclass.

    • Polymorphism: Ability to present the same interface for different data types. Example: Method overloading and overriding.

    • A...

  • Answered by AI
  • Q8. DBMS core concepts
  • Q9. Overloading and Overriding
  • Q10. Approach to the coding questions asked in coding round.
  • Ans. 

    A systematic approach to coding questions ensures clarity, efficiency, and accuracy in problem-solving during interviews.

    • Understand the problem: Read the question carefully and clarify any doubts.

    • Break it down: Divide the problem into smaller, manageable parts.

    • Plan your solution: Outline the algorithm or steps before coding.

    • Write clean code: Use meaningful variable names and maintain proper formatting.

    • Test your solutio...

  • Answered by AI
  • Q11. Questions on what is cloud and what are some cloud platforms you know?
Round 4 - Case Study 

A project is assigned to a group of students and we need to come up with an idea on how to implement that project as a team.

Round 5 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in engineering, eager to learn and grow in the field.

    • Recent graduate with a degree in engineering

    • Passionate about learning and growing in the field

    • Eager to apply theoretical knowledge to practical projects

  • Answered by AI
  • Q2. Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was completely resume-based. All the rounds were conducted on-campus within a single day. Aptitude round is the only elimination round. If you don't do well in any coding round, you can make it up in other rounds. Morning they started with the process and by evening all rounds were completed and results were declared.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
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 London Stock Exchange Group?
Ask anonymously on communities.

Interview questions from similar companies

I applied via LinkedIn and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. String manipulation code

Interview Preparation Tips

Interview preparation tips for other job seekers - Be careful to answer to the point

Engineer Trainee Interview Questions Asked at Other Companies

Q1. If 10 people at a meeting shake hands with each other once, how m ... read more
asked in Siemens
Q2. A drawer contains 10 pairs each of red and blue socks. What is th ... read more
asked in AVASOFT
Q3. What is the logic for determining if a number is an Armstrong num ... read more
asked in Sobha
Q4. Shear force diagram and bending moment diagram for combination of ... read more
asked in Siemens
Q5. If you are given two CSV files, each containing two columns, how ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design a system like youtube
  • Ans. 

    Design a system similar to YouTube for video sharing and streaming

    • Implement user authentication and authorization for uploading and viewing videos

    • Create a database to store video metadata, user information, and comments

    • Develop a recommendation algorithm based on user preferences and viewing history

    • Utilize a content delivery network (CDN) for efficient video streaming

    • Include features like video monetization, live stream...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Project related
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question on kafka
  • Ans. 

    Kafka is a distributed streaming platform used for building real-time data pipelines and streaming applications.

    • Kafka uses a publish-subscribe model for messaging, allowing multiple producers and consumers.

    • Topics in Kafka are partitioned for scalability; for example, a topic with 3 partitions can handle 3 consumers simultaneously.

    • Kafka ensures message durability through replication; if one broker fails, others can stil...

  • Answered by AI

I applied via Referral and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Java logical question
  • Q2. Webdriver architecture
  • Q3. Framework, file and folder structure
  • Q4. Your approach to tackle dynamic objects
  • Ans. 

    I approach dynamic objects by analyzing their behavior and adapting my approach accordingly.

    • I start by understanding the nature of the dynamic object and its expected behavior

    • I then analyze its movement patterns and any potential obstacles or hazards

    • Based on this analysis, I adapt my approach to ensure safe and efficient interaction with the dynamic object

    • For example, when working with a moving conveyor belt, I would e...

  • Answered by AI
  • Q5. Implicit and explicit wait in selenium
  • Ans. 

    Implicit and explicit wait are two types of wait in Selenium used to synchronize the test execution with the application.

    • Implicit wait is used to set a default waiting time for the web elements to load before throwing an exception.

    • Explicit wait is used to wait for a specific condition to occur before proceeding with the test execution.

    • Implicit wait is set globally for the entire test script while explicit wait is set f...

  • Answered by AI
  • Q6. Java oops concepts
  • Q7. Sql queries related to joins
  • Q8. Basic Unix commands

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to connect yours answers with some example of your project.

Skills evaluated in this interview

I applied via Referral and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Ssis, sql server, power bi
  • Q2. Dml, ddl, dcl

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for technical question. Specifically fot technology

Senior Engineer Interview Questions & Answers

Wells Fargo user image SIRIGIRI SAI KUMAR

posted on 22 Oct 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Hadoop basics on computing
  • Q2. Distribution basics for processing the data
Round 3 - Technical 

(2 Questions)

  • Q1. Architecture of bigdata systems
  • Ans. 

    Bigdata systems architecture involves distributed storage, processing, and analysis of large volumes of data.

    • Utilize distributed file systems like HDFS for storage

    • Use parallel processing frameworks like Apache Spark or Hadoop for data processing

    • Implement data pipelines for ETL processes

    • Leverage NoSQL databases like Cassandra or MongoDB for real-time data querying

    • Consider data partitioning and replication for fault tole...

  • Answered by AI
  • Q2. How will the bigdata system distribution for storage andcompute happen
  • Ans. 

    Big data system distribution for storage and compute involves partitioning data across multiple nodes for efficient processing.

    • Data is partitioned across multiple nodes to distribute storage and processing load.

    • Hadoop Distributed File System (HDFS) is commonly used for storage distribution.

    • Apache Spark utilizes a cluster computing framework for distributed computing.

    • Data locality is important to minimize data transfer ...

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Company Website and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Messaging communication (RabbitMQ, ActiveMQ)
  • Q2. Spring boot
  • Q3. Core Java (Oops, JVM, Memory types, Collections)
  • Q4. Spring security, Hibernate cache
  • Q5. Scenario based questions
  • Q6. Design patterns,SAGA Pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Scenario based questions on real time examples like ticket reservation, data processing. SAGA pattern

Interview Questionnaire 

2 Questions

  • Q1. Java 8 features with examples
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, and default methods.

    • Lambda expressions allow for functional programming and concise code.

    • Streams provide a way to process collections of data in a parallel and functional manner.

    • Default methods allow for adding new functionality to interfaces without breaking existing implementations.

    • Method references provide a way to refer to methods without...

  • Answered by AI
  • Q2. How to write Customised immutable java class
  • Ans. 

    Customised immutable java class can be written by declaring all fields as final and not providing any setters.

    • Declare all fields as final

    • Do not provide any setters

    • Provide a constructor to initialize all fields

    • Override equals() and hashCode() methods

    • Make the class final

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Project Overview BA/PO related questions Domain and Behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Freshen up the domain learnings
Be confident of the behaviour questions as per the past and practical experience

London Stock Exchange Group Interview FAQs

How many rounds are there in London Stock Exchange Group Engineer Trainee interview?
London Stock Exchange Group interview process usually has 5 rounds. The most common rounds in the London Stock Exchange Group interview process are Aptitude Test, Coding Test and Technical.
What are the top questions asked in London Stock Exchange Group Engineer Trainee interview?

Some of the top questions asked at the London Stock Exchange Group Engineer Trainee interview -

  1. What OOPS concepts are implemented in my proj...read more
  2. Approach to the coding questions asked in coding rou...read more
  3. Explain of OOPS concepts and their real life exampl...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 615 Interviews
Citicorp Interview Questions
3.7
 • 587 Interviews
HSBC Group Interview Questions
3.9
 • 510 Interviews
American Express Interview Questions
4.1
 • 386 Interviews
BNY Interview Questions
3.8
 • 366 Interviews
UBS Interview Questions
3.9
 • 351 Interviews
Morgan Stanley Interview Questions
3.6
 • 307 Interviews
FactSet Interview Questions
3.9
 • 216 Interviews
View all
Content Analyst
1.3k salaries
unlock blur

₹3.5 L/yr - ₹7.8 L/yr

Associate Content Analyst
910 salaries
unlock blur

₹2.2 L/yr - ₹6 L/yr

Senior Content Analyst
468 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Research Analyst
268 salaries
unlock blur

₹3.5 L/yr - ₹7.4 L/yr

Associate Research Analyst
235 salaries
unlock blur

₹2.5 L/yr - ₹4.6 L/yr

Explore more salaries
Compare London Stock Exchange Group with

Wells Fargo

3.8
Compare

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

3.9
Compare

Citicorp

3.7
Compare
write
Share an Interview