Upload Button Icon Add office photos

Filter interviews by

International Game Technology UI Developer Interview Questions, Process, and Tips

Updated 31 Aug 2023

International Game Technology UI Developer Interview Experiences

1 interview found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 31 Aug 2023

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

I applied via Recruitment Consulltant and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

Layouts, Position, And Grid layout

Round 3 - Technical 

(5 Questions)

  • Q1. Different between Undefined Null
  • Ans. 

    Undefined is a variable that has not been assigned a value, while null is a variable that has been explicitly assigned a value of null.

    • Undefined is the default value of a variable that has not been initialized.

    • Null is an explicit value that can be assigned to a variable to indicate that it has no value.

    • Undefined is a type in JavaScript, while null is a value of the Null type.

    • Example: let x; // x is undefined, let y = n

  • Answered by AI
  • Q2. Functions and Reverse String
  • Q3. Different between position's property
  • Ans. 

    The position property in CSS specifies the positioning method of an element.

    • Static: Default positioning, elements are positioned according to the normal flow of the document.

    • Relative: Positioned relative to its normal position.

    • Absolute: Positioned relative to the nearest positioned ancestor.

    • Fixed: Positioned relative to the viewport.

    • Sticky: Acts like a combination of relative and fixed positioning.

  • Answered by AI
  • Q4. Different between Grid Flex box layout
  • Ans. 

    Grid layout is a two-dimensional layout system while Flexbox is a one-dimensional layout system.

    • Grid layout is best for overall page layout, while Flexbox is best for aligning items within a container.

    • Grid layout allows for precise placement of elements in rows and columns, while Flexbox is more flexible in arranging items in a single row or column.

    • Grid layout is better suited for complex layouts with multiple rows and...

  • Answered by AI
  • Q5. What is arrays explain the array
  • Ans. 

    Arrays are a data structure that stores a collection of elements of the same data type in a contiguous memory location.

    • Arrays have a fixed size determined at the time of declaration.

    • Elements in an array are accessed using an index starting from 0.

    • Arrays can store primitive data types like integers, floats, or objects like strings.

    • Example: var fruits = ['apple', 'banana', 'orange'];

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stik with basic of Javascript deep knowledge of HTML CSS

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Basic questions on react js, also question related to data structure and sorting algorithm
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 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

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

I applied via IIM Jobs and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

SQL Coding Test - asked 5 queries related to joins, ranks, group by

Round 2 - Case Study 

Asked guesstimates, technical CV Question, case

Round 3 - Case Study 

Asked guesstimate, market entry question, case

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

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude only think out of box

Round 2 - One-on-one 

(2 Questions)

  • Q1. Static and final difference
  • Ans. 

    Static variables belong to the class itself, while final variables cannot be changed after initialization.

    • Static variables are shared among all instances of a class

    • Final variables cannot be reassigned once initialized

    • Static variables are initialized only once at the start of the program

    • Final variables must be initialized when declared

  • Answered by AI
  • Q2. Patterns problem
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self?
  • Q2. Checking english fluency

Interview Preparation Tips

Interview preparation tips for other job seekers - It's good company, friendly HR and interviewer.
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
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Simple logic and maths based questions along with coding round

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on string literals
  • Q2. Array vs arraylist
  • Ans. 

    Arrays are fixed in size, while ArrayLists can dynamically resize. Arrays are faster for accessing elements, while ArrayLists offer more flexibility.

    • Arrays have a fixed size, while ArrayLists can dynamically resize.

    • Arrays are faster for accessing elements, while ArrayLists offer more flexibility in terms of adding, removing, and manipulating elements.

    • Example: String[] namesArray = new String[5]; ArrayList namesList = n

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. My strength and weaknesses
  • Q2. Past work experiences if any
  • Ans. 

    I have worked as a software developer for 3 years at XYZ company.

    • Developed web applications using Java, Spring, and AngularJS

    • Collaborated with team members to design and implement new features

    • Participated in code reviews and testing processes

    • Resolved technical issues and provided support to end users

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Internshala and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions were pretty easy like on speed etc

Round 2 - Coding Test 

Coding questions were also easy like patterns code, reverse string just basics

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

International Game Technology Interview FAQs

How many rounds are there in International Game Technology UI Developer interview?
International Game Technology interview process usually has 3 rounds. The most common rounds in the International Game Technology interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in International Game Technology UI Developer interview?

Some of the top questions asked at the International Game Technology UI Developer interview -

  1. What is arrays explain the ar...read more
  2. Different between Grid Flex box lay...read more
  3. Different between Undefined N...read more

Tell us how to improve this page.

International Game Technology UI 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
 • 58 Interviews
Aristocrat Interview Questions
3.9
 • 46 Interviews
Light & Wonder Interview Questions
3.9
 • 29 Interviews
Electronic Arts Interview Questions
4.1
 • 23 Interviews
IDZ Digital Interview Questions
3.8
 • 22 Interviews
Games24x7 Interview Questions
3.7
 • 19 Interviews
View all
Process Associate
317 salaries
unlock blur

₹1.1 L/yr - ₹5.6 L/yr

Customer Service Executive
36 salaries
unlock blur

₹1.5 L/yr - ₹3.9 L/yr

Customer Care Executive
36 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Software Engineer
27 salaries
unlock blur

₹3.5 L/yr - ₹14.7 L/yr

Senior Software Engineer
23 salaries
unlock blur

₹4.4 L/yr - ₹15.6 L/yr

Explore more salaries
Compare International Game Technology with

Pole To Win

3.4
Compare

Ubisoft Entertainment

3.8
Compare

Aristocrat

3.9
Compare

Electronic Arts

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