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 Full Stack Developer Interview Questions and Answers

Updated 10 May 2024

Light & Wonder Full Stack Developer Interview Experiences

1 interview found

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 questions from similar companies

I was interviewed before Mar 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

it was 5:00 PM, Interviewer was very friendly and was a senior person. He asked some medium level SQL Queries. Also asked what are the various DML, DDL commands.

  • Q1. 

    Sum Tree Conversion

    Convert a given binary tree into its sum tree. In a sum tree, every node's value is replaced with the sum of its immediate children's values. Leaf nodes are set to 0. Finally, return th...

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from J.C. Bose University of Science and Technology, YMCA. I applied for the job as Fullstack Developer in NoidaEligibility criteriaNO, but you should comfirmAristocrat interview preparation:Topics to prepare for the interview - Array, Pointers, Trees, Web Dev Basics, API's, OOPS, Virtual function, Static and dynamic binding, sessions in web dev, Api security, Web tokensTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Try leetcode medium questions of every topic (100 questions each topic)
Tip 2 : Try to explain the approach before writing the code and be sure about the time and space complexity’s 
Tip 3 : Do not confuse with the projects you have mentioned be prepared for the questions related to technology stack and motivation behind the project.

Application resume tips for other job seekers

Tip 1 : One page resume, with project explained properly
Tip 2 : Include your coding profiles as a link* and it is not necessary to write 10th and 12th percentage or school

Final outcome of the interviewSelected

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

There were questions of basic aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. Introduce yourself
  • Q2. About my projects
  • Q3. What is Radix sort
  • Ans. 

    Radix sort is a non-comparative sorting algorithm that sorts integers by processing individual digits.

    • Radix sort works by sorting numbers based on each digit's value, starting from the least significant digit to the most significant digit.

    • It can be implemented using counting sort or bucket sort as a subroutine.

    • Radix sort is efficient for sorting integers with a fixed number of digits, like phone numbers or social secur

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 2 DSA questions was asked and Java Questions
Round 2 - Technical 

(1 Question)

  • Q1. Questions on Kafka, Scalability
Round 3 - Technical 

(1 Question)

  • Q1. Questions releated to past projects and Cassandra
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

10 reasoning questions and 3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Wap for factorial with recurrsion
  • Ans. 

    Factorial calculation using recursion in a programming language

    • Define a function that takes an integer as input

    • Base case: if input is 0, return 1

    • Recursive case: return input multiplied by factorial of input-1

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = ... = 5 * 4 * 3 * 2 * 1 = 120

  • Answered by AI
  • Q2. Opps and basic core Java questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Atharva College of Engineering, Mumbai and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

One hour aptitude test based on the mathematics ,logical reasoning.

Round 2 - Technical 

(2 Questions)

  • Q1. One basic question on the language you know and one SQL is asked
  • Q2. SQL query questions

Interview Preparation Tips

Topics to prepare for Sportz Interactive Software Developer interview:
  • SQL
Interview preparation tips for other job seekers - Prepared for a SQL and you know language technical questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Coding Test 

3 online dsa questions easy to medium

I was interviewed in Oct 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

The first round was scheduled in the evening time.
First of all interviewer introduced himself and after my introduction 
He directly shoot first DSA question. The question was easy but conceptual. I have solved some question with same concept and he ask me to share the screen and code in online compiler. Finally I was able to get correct output with all the use cases and I was like "Half work done!"
Then he asked me very core concepts of JavaScript along with that Some Output based questions.
Then finally he asked me theory questions on React along with my experience in React. 
The interviewer was very helpful as well as polite. I don't think if he will not help me during interview I could crack the interview

  • Q1. 

    Is the Sentence a Pangram?

    Ninja is relocating to a place called NinjaGram, and for school admission, he is required to identify if a given sentence is a pangram. Your task is to assist Ninja in determini...

  • Ans. 

    Step 1 : I have used hashing concept to map occurrence of english alphabet.
    Step 2 : I used Counter array with size 26 to find count of every alphabet. 
    Step 3 : Traverse the array and if it's panagram append the output string with 1 else 0

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vishwakarma Institute of Technology. Eligibility criteria1+ Years of ExperienceMPL interview preparation:Topics to prepare for the interview - Data Structures, OOPS, System Design, JavaScript, Operating System, Computer NetworksTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Code at least a single problem on your favourite coding platform with proper understanding of concept.
Tip 2 : Work on your resume, specifically try to grab some technical achievements(Hackathons, GSoc, etc) along with your degree which can stand out you from other candidates.
Tip 3 : Ask your friend for some mock interviews which can help you to excel in interview.

Application resume tips for other job seekers

Tip 1 : Project description should contain maximum keywords mentioned in Job Description. Success Matrix of project will give you an edge in the interview.
Tip 2 : Resume should be one page along with some clickable GitHub and Achievments links if possible.

Final outcome of the interviewSelected
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jan 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 4 Coding question to be solve live

Interview Questionnaire 

1 Question

  • Q1. Just basics..and asking for money

Interview Preparation Tips

Interview preparation tips for other job seekers - That was fake ..they will ask for money they will tell that we will giving you the offer later..which was totally scammed..

Light & Wonder Interview FAQs

How many rounds are there in Light & Wonder Full Stack Developer interview?
Light & Wonder interview process usually has 2 rounds. The most common rounds in the Light & Wonder interview process are Assignment and Technical.
How to prepare for Light & Wonder Full Stack Developer 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 .Net, .Net Core, Angular, C# and Javascript.
What are the top questions asked in Light & Wonder Full Stack Developer interview?

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

  1. Join two tables using joins in ...read more
  2. SQL questions on joins and proj...read more

Tell us how to improve this page.

Light & Wonder Full Stack Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Pole To Win Interview Questions
3.4
 • 53 Interviews
PurpleTalk Interview Questions
3.9
 • 26 Interviews
Electronic Arts Interview Questions
4.1
 • 22 Interviews
IDZ Digital Interview Questions
3.8
 • 22 Interviews
Games24x7 Interview Questions
3.8
 • 19 Interviews
View all
Software Engineer
338 salaries
unlock blur

₹6.6 L/yr - ₹18.3 L/yr

Senior Software Engineer
300 salaries
unlock blur

₹8.8 L/yr - ₹25.6 L/yr

Software Quality Assurance Engineer
121 salaries
unlock blur

₹6.6 L/yr - ₹16.4 L/yr

Associate Software Engineer
119 salaries
unlock blur

₹6 L/yr - ₹11.7 L/yr

Test Engineer
99 salaries
unlock blur

₹6.6 L/yr - ₹11.9 L/yr

Explore more salaries
Compare Light & Wonder with

International Game Technology

3.3
Compare

Aristocrat Leisure

4.1
Compare

Playtech India

5.0
Compare

Everi Holdings

4.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview