Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Light & Wonder Team. If you also belong to the team, you can get access from here

Light & Wonder Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Light & Wonder Interview Questions and Answers

Updated 27 Jun 2025
Popular Designations

10 Interview questions

An Unity Developer was asked 9mo ago
Q. What is a 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

  • Allows for dynamic size and efficient insertion/deletion

  • Examples: singly linked list, doubly linked list

View all Unity Developer interview questions
An Unity Developer was asked 9mo ago
Q. What design patterns do you use in your games?
Ans. 

I use design patterns such as MVC, Observer, and Factory in my games for better organization and scalability.

  • MVC (Model-View-Controller) for separating game logic, user interface, and data

  • Observer for handling events and notifications between game components

  • Factory for creating objects without specifying the exact class

View all Unity Developer interview questions
An Unity Developer was asked 9mo ago
Q. Explain the concept of trees.
Ans. 

Trees in Unity are hierarchical data structures used to organize game objects in a parent-child relationship.

  • Trees are used to create complex scenes by organizing game objects in a hierarchy.

  • Each game object can have one parent and multiple children, forming a tree structure.

  • Transform properties like position, rotation, and scale are relative to the parent in the tree.

  • Example: A tree structure can be used to repre...

View all Unity Developer interview questions
A Lead Engineer was asked
Q. How would you approach writing a program that creates a new integer array based on the following condition: Given an input integer array, for each element in the array, calculate the sum of all integers sma...
Ans. 

Create a new array with sums of all integers smaller than each element in the input array.

  • Iterate through the input array and for each element, calculate the sum of all integers smaller than the current element.

  • Populate the new array with these sums.

  • Use a lambda expression to simplify the code.

View all Lead Engineer interview questions
A Lead Engineer was asked
Q. How would you approach writing a program that clears a grid based on the following conditions: 1. Take any grid which has values in each cell. There is a ball that moves in all 8 directions from any point i...
Ans. 

Approach: Create a program to clear a grid by moving a ball in all 8 directions and clearing cells at the center.

  • Create a grid with values in each cell

  • Randomly select a starting point and direction for the ball

  • Move the ball in all 8 directions, clearing cells at the center

  • Reroute the ball when it reaches the edge

  • Continue until all cells are cleared

View all Lead Engineer interview questions
A Lead Engineer was asked
Q. How does an IEnumerator work in C# and outside of Unity? For example, if a function contains 'yield return 8; yield return 10; yield return 15;' on three separate lines, how does it operate?
Ans. 

An IEnumerator in C# is used to iterate over a collection of objects one at a time, allowing for more efficient memory usage and performance.

  • IEnumerator is used to implement custom iterators in C# by defining a method with a yield return statement.

  • Each time the iterator is called, it returns the next value in the sequence defined by the yield return statements.

  • IEnumerators can be used in foreach loops to iterate o...

View all Lead Engineer interview questions
A Full Stack Developer was asked
Q. Explain how to join two tables using SQL joins.
Ans. 

Joining two tables in SQL using JOINs to combine data based on a related column

  • Use INNER JOIN to return rows when there is at least one match in both tables

  • Use LEFT JOIN to return all rows from the left table and the matched rows from the right table

  • Use RIGHT JOIN to return all rows from the right table and the matched rows from the left table

  • Use FULL JOIN to return rows when there is a match in one of the tables

View all Full Stack Developer interview questions
Are these interview questions helpful?
A SDE was asked
Q. Given an integer, determine if it is a power of 2.
Ans. 

Check if a number is a power of 2 or not

  • A number is a power of 2 if it has only one bit set to 1

  • Use bitwise operations to check if the number is a power of 2

  • If the number is a power of 2, it will be greater than 0 and have only one bit set to 1

View all SDE interview questions
A Senior Software Engineer was asked
Q. Networkteoubleshooting Sql integration with application
Ans. 

Integration of SQL with application and network troubleshooting

  • Ensure proper network connectivity between application and SQL server

  • Check SQL server logs for any errors or issues

  • Verify SQL server configuration and permissions

  • Test SQL queries and data retrieval from application

  • Use network monitoring tools to identify and resolve network issues

View all Senior Software Engineer interview questions
A Software Engineer was asked
Q. Java oops concepts and describe overloading
Ans. 

Java oops concepts include encapsulation, inheritance, abstraction, and polymorphism. Overloading is a way to define multiple methods with the same name but different parameters.

  • Encapsulation: bundling data and methods that operate on that data within a single unit

  • Inheritance: creating new classes from existing ones

  • Abstraction: hiding implementation details and showing only the necessary information

  • Polymorphism: u...

View all Software Engineer interview questions

Light & Wonder Interview Experiences

32 interviews found

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 15 May 2024

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. How would you approach writing a program that creates a new integer array based on the following condition: Given an input integer array, for each element in the array, calculate the sum of all integers sm...
  • Ans. 

    Create a new array with sums of all integers smaller than each element in the input array.

    • Iterate through the input array and for each element, calculate the sum of all integers smaller than the current element.

    • Populate the new array with these sums.

    • Use a lambda expression to simplify the code.

  • Answered by AI
  • Q2. How would you approach writing a program that clears a grid based on following conditions. 1. Take any grid which has values in each cell. There is a ball that moves in all 8 directions from any point in t...
  • Ans. 

    Approach: Create a program to clear a grid by moving a ball in all 8 directions and clearing cells at the center.

    • Create a grid with values in each cell

    • Randomly select a starting point and direction for the ball

    • Move the ball in all 8 directions, clearing cells at the center

    • Reroute the ball when it reaches the edge

    • Continue until all cells are cleared

  • Answered by AI
  • Q3. How does a IEnumerator work in C# and not in Unity. For ex: If i have a function that has yield return 8; yield return 10; yield return 15; in 3 lines how does it work. I have answered it based on unity,...
  • Ans. 

    An IEnumerator in C# is used to iterate over a collection of objects one at a time, allowing for more efficient memory usage and performance.

    • IEnumerator is used to implement custom iterators in C# by defining a method with a yield return statement.

    • Each time the iterator is called, it returns the next value in the sequence defined by the yield return statements.

    • IEnumerators can be used in foreach loops to iterate over t...

  • Answered by AI

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 11 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. QA specific questions , aglime methodologies, sprint ceremonies , api testing
  • Q2. Day to day activities in the role
  • Ans. 

    QA Engineers ensure software quality through testing, debugging, and collaboration with development teams.

    • Design and execute test cases to validate software functionality, e.g., testing a new feature in a web application.

    • Identify, document, and track defects using tools like JIRA, ensuring they are resolved before release.

    • Collaborate with developers and product managers to understand requirements and provide feedback o...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based questions to cover test cases
  • Q2. QA definitions, api testing network testing
Round 3 - HR 

(2 Questions)

  • Q1. Conflict resolution and other scenarios
  • Q2. Why the job change and why this company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Question on Spring Boot
  • Q2. Question On String
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What are the pillars of OOPS?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Assignment 

Aptitude and programming language like c and also data structures alogirithm

Round 2 - Technical 

(2 Questions)

  • Q1. SQL questions on joins and project
  • Q2. Join two tables using joins in sql
  • Ans. 

    Joining two tables in SQL using JOINs to combine data based on a related column

    • Use INNER JOIN to return rows when there is at least one match in both tables

    • Use LEFT JOIN to return all rows from the left table and the matched rows from the right table

    • Use RIGHT JOIN to return all rows from the right table and the matched rows from the left table

    • Use FULL JOIN to return rows when there is a match in one of the tables

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on projects and core java

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Based on DSA in C# be thorough with heap tree and map from dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - They conducted the 1st round in HackerEarth platform and it was proctored. They asked from Aptitude (Profit and Loss, SI & CI, Investment) Logical (Arrangement) and few Data sufficient questions but mostly it was from DSA in C# Like time complexity of search and sort algorithms (refer hackerearth platform), heaps trees and maps questions don't worry it was standard. And all the best
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concept was asked a lot
Round 2 - One-on-one 

(1 Question)

  • Q1. Mostly of attitude inception

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Mar 2024.

Round 1 - Technical 

(3 Questions)

  • 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

    • Allows for dynamic size and efficient insertion/deletion

    • Examples: singly linked list, doubly linked list

  • Answered by AI
  • Q2. What design patterns you use in your games?
  • Ans. 

    I use design patterns such as MVC, Observer, and Factory in my games for better organization and scalability.

    • MVC (Model-View-Controller) for separating game logic, user interface, and data

    • Observer for handling events and notifications between game components

    • Factory for creating objects without specifying the exact class

  • Answered by AI
  • Q3. Explain about trees?
  • Ans. 

    Trees in Unity are hierarchical data structures used to organize game objects in a parent-child relationship.

    • Trees are used to create complex scenes by organizing game objects in a hierarchy.

    • Each game object can have one parent and multiple children, forming a tree structure.

    • Transform properties like position, rotation, and scale are relative to the parent in the tree.

    • Example: A tree structure can be used to represent ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Mcqs on Data structures
  • Q2. Mcqs on programming and aptitude
Round 2 - One-on-one 

(2 Questions)

  • Q1. About oops concepts
  • Q2. Programming questions
Round 3 - HR 

(2 Questions)

  • Q1. Regarding previous jobs/ job offers
  • Q2. Intro, bit details on ongoing things
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Hackerearth test with c# ,SQL and MCQ

Round 2 - Technical 

(1 Question)

  • Q1. Mvvm and Entity framework
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Sep 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 - One-on-one 

(3 Questions)

  • Q1. Tell me something about yourself?
  • Q2. Your past experiences?
  • Q3. Tell me about the jobs or tasks you performed in your previous organisation?
Round 3 - HR 

(1 Question)

  • Q1. What is your salary expectation?

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Light & Wonder?
Ask anonymously on communities.

Light & Wonder Interview FAQs

How many rounds are there in Light & Wonder interview?
Light & Wonder interview process usually has 2-3 rounds. The most common rounds in the Light & Wonder interview process are Technical, One-on-one Round and HR.
How to prepare for Light & Wonder 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 Light & Wonder. The most common topics and skills that interviewers at Light & Wonder expect are C#, SQL, Backend, Gaming and Python.
What are the top questions asked in Light & Wonder interview?

Some of the top questions asked at the Light & Wonder interview -

  1. How would you approach writing a program that clears a grid based on following ...read more
  2. How does a IEnumerator work in C# and not in Unity. For ex: If i have a functi...read more
  3. How would you approach writing a program that creates a new integer array based...read more
How long is the Light & Wonder interview process?

The duration of Light & Wonder interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 25 interview experiences

Difficulty level

Easy 11%
Moderate 79%
Hard 11%

Duration

Less than 2 weeks 79%
2-4 weeks 16%
4-6 weeks 5%
View more

Interview Questions from Similar Companies

HighRadius Interview Questions
2.8
 • 197 Interviews
Chetu Interview Questions
3.3
 • 197 Interviews
AVASOFT Interview Questions
2.8
 • 174 Interviews
ivy Interview Questions
3.6
 • 133 Interviews
Axtria Interview Questions
2.9
 • 126 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
DE Shaw Interview Questions
3.8
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 112 Interviews
View all

Light & Wonder Reviews and Ratings

based on 125 reviews

3.9/5

Rating in categories

3.3

Skill development

3.8

Work-life balance

4.0

Salary

3.7

Job security

3.8

Company culture

3.5

Promotions

3.7

Work satisfaction

Explore 125 Reviews and Ratings
Software Engineer

Bangalore / Bengaluru

2-4 Yrs

₹ 7.3-18.3 LPA

Senior Software Engineer

Bangalore / Bengaluru

4-8 Yrs

₹ 8.8-23.9 LPA

Game Artist

Bangalore / Bengaluru

2-4 Yrs

Not Disclosed

Explore more jobs
Software Engineer
361 salaries
unlock blur

₹6.6 L/yr - ₹18.5 L/yr

Senior Software Engineer
310 salaries
unlock blur

₹14.8 L/yr - ₹25.6 L/yr

Software Quality Assurance Engineer
129 salaries
unlock blur

₹7.8 L/yr - ₹20 L/yr

Associate Software Engineer
127 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Test Engineer
93 salaries
unlock blur

₹6.1 L/yr - ₹12.3 L/yr

Explore more salaries
Compare Light & Wonder with

Thomson Reuters

4.1
Compare

HighRadius

2.8
Compare

Chetu

3.3
Compare

EbixCash Limited

3.9
Compare
write
Share an Interview