Upload Button Icon Add office photos

Ingenuity Gaming

Compare button icon Compare button icon Compare

Filter interviews by

Ingenuity Gaming Interview Questions and Answers

Updated 11 Dec 2024
Popular Designations

9 Interview questions

A Game Developer was asked 6mo ago
Q. Write a program to print the first n Fibonacci series numbers.
Ans. 

Program to print the first n Fibonacci series numbers

  • Use a loop to iterate through the numbers up to n

  • Initialize the first two numbers in the series as 0 and 1

  • Calculate the next number in the series by adding the previous two numbers

  • Print each number in the series as it is calculated

View all Game Developer interview questions
A Quality Engineer was asked 9mo ago
Q. Explain the Bug Life Cycle.
Ans. 

Bug life cycle is the process of a bug from identification to resolution.

  • Bug is identified by tester

  • Bug is reported in bug tracking system

  • Bug is assigned to developer

  • Developer fixes the bug

  • Bug is retested by tester

  • Bug is closed if fixed or reopened if not

View all Quality Engineer interview questions
A Senior Game Developer was asked 12mo ago
Q. What is a JavaScript polyfill?
Ans. 

A polyfill is code that implements a feature on web browsers that do not support it natively.

  • Polyfills allow developers to use modern JavaScript features in older browsers.

  • Example: A polyfill for Array.prototype.includes can be implemented as follows: if (!Array.prototype.includes) { Array.prototype.includes = function(value) { return this.indexOf(value) !== -1; }; }

  • They are often used for methods like Pro...

View all Senior Game Developer interview questions
A Game Developer was asked
Q. How do you implement go routines?
Ans. 

Implementing go routine in Go programming language

  • Use the 'go' keyword followed by the function call to create a go routine

  • Go routines are lightweight threads that run concurrently with other go routines

  • Use channels to communicate between go routines

  • Example: go myFunction()

  • Example: c := make(chan int); go myFunction(c)

View all Game Developer interview questions
A Game Developer was asked
Q. How can we achieve inheritance in Go?
Ans. 

In Go, inheritance is achieved through embedding structs.

  • Inheritance in Go is achieved by embedding one struct into another.

  • The embedded struct acts as a base class, providing its fields and methods to the embedding struct.

  • The embedding struct can then override or extend the behavior of the embedded struct.

  • Go does not support traditional class-based inheritance like other languages.

  • Instead, it promotes composition...

View all Game Developer interview questions
A Game Tester was asked 9mo ago
Q. What is SDLC,STLC & Bug life cycle?
Ans. 

SDLC stands for Software Development Life Cycle, STLC stands for Software Testing Life Cycle, and Bug life cycle is the process of a bug from identification to resolution.

  • SDLC is the process of planning, creating, testing, and deploying software.

  • STLC involves activities like test planning, test design, test execution, and test closure.

  • Bug life cycle includes stages like New, Assigned, Open, Fixed, Retest, Verified...

View all Game Tester interview questions
A Game Developer was asked
Q. 1. Write a program for Fibonacci series using recursion. 2. Write a function which is taking two arguments i.e template string and json data and you have to return the string using template laterals in java...
Ans. 

Answering two programming questions related to Fibonacci series and template literals in JavaScript.

  • For Fibonacci series using recursion, create a function that calls itself with the previous two numbers in the series.

  • For template literals, use backticks (`) to create a string with placeholders for variables, then use ${} syntax to insert the variables.

View all Game Developer interview questions
Are these interview questions helpful?
A Quality Engineer was asked 9mo ago
Q. Smoke Testing vs Sanity Testing
Ans. 

Smoke testing is a basic test to check if the software is stable for further testing, while sanity testing is a narrow and deep test to check specific functionalities.

  • Smoke testing is a shallow and wide test to ensure basic functionality works after changes or updates.

  • Sanity testing is a focused and deep test to check specific functionalities after changes.

  • Smoke testing is usually done before sanity testing to ens...

View all Quality Engineer interview questions
A Quality Engineer was asked 9mo ago
Q. Regression vs Re Testing
Ans. 

Regression testing ensures that new code changes do not adversely affect existing functionality, while retesting focuses on verifying that specific defects have been fixed.

  • Regression testing is performed to ensure that new code changes do not introduce new defects or negatively impact existing functionality.

  • Retesting is done to verify that specific defects identified in previous testing cycles have been successful...

View all Quality Engineer interview questions

Ingenuity Gaming Interview Experiences

15 interviews found

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

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a program to manipulate the list in a particular given order
  • Ans. 

    Program to manipulate a list in a given order

    • Use a custom sorting function to manipulate the list in the desired order

    • Implement different sorting algorithms like bubble sort, merge sort, etc.

    • Consider using built-in functions like sort() in programming languages

  • Answered by AI
  • Q2. Write a program to print the first n fibonacci series numbers
  • Ans. 

    Program to print the first n Fibonacci series numbers

    • Use a loop to iterate through the numbers up to n

    • Initialize the first two numbers in the series as 0 and 1

    • Calculate the next number in the series by adding the previous two numbers

    • Print each number in the series as it is calculated

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please choose this if no other option left to join
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Smoke Testing vs Sanity Testing
  • Ans. 

    Smoke testing is a basic test to check if the software is stable for further testing, while sanity testing is a narrow and deep test to check specific functionalities.

    • Smoke testing is a shallow and wide test to ensure basic functionality works after changes or updates.

    • Sanity testing is a focused and deep test to check specific functionalities after changes.

    • Smoke testing is usually done before sanity testing to ensure t...

  • Answered by AI
  • Q2. Regression vs Re Testing
  • Ans. 

    Regression testing ensures that new code changes do not adversely affect existing functionality, while retesting focuses on verifying that specific defects have been fixed.

    • Regression testing is performed to ensure that new code changes do not introduce new defects or negatively impact existing functionality.

    • Retesting is done to verify that specific defects identified in previous testing cycles have been successfully fi...

  • Answered by AI
  • Q3. Explain Bug Life Cycle
  • Ans. 

    Bug life cycle is the process of a bug from identification to resolution.

    • Bug is identified by tester

    • Bug is reported in bug tracking system

    • Bug is assigned to developer

    • Developer fixes the bug

    • Bug is retested by tester

    • Bug is closed if fixed or reopened if not

  • Answered by AI

Skills evaluated in this interview

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

Techinal Interview, 1hour each, JavaScript, DSA

Round 2 - Technical 

(2 Questions)

  • Q1. Diagonal Matrix
  • Q2. Random Number Generator
Round 3 - Technical 

(2 Questions)

  • Q1. Polyfill JavaScript
  • Ans. 

    A polyfill is code that implements a feature on web browsers that do not support it natively.

    • Polyfills allow developers to use modern JavaScript features in older browsers.

    • Example: A polyfill for Array.prototype.includes can be implemented as follows: if (!Array.prototype.includes) { Array.prototype.includes = function(value) { return this.indexOf(value) !== -1; }; }

    • They are often used for methods like Promise,...

  • Answered by AI
  • Q2. Promise JavaScript
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Asked to write code on collection

Round 2 - Technical 

(3 Questions)

  • Q1. Technical questions based on core Java and spring
  • Q2. Collections set hashmap hashtable
  • Q3. Exception handling concepts
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Write a program for Fibonacci series using recursion. 2. Write a function which is taking two arguments i.e template string and json data and you have to return the string using template laterals in jav...
  • Ans. 

    Answering two programming questions related to Fibonacci series and template literals in JavaScript.

    • For Fibonacci series using recursion, create a function that calls itself with the previous two numbers in the series.

    • For template literals, use backticks (`) to create a string with placeholders for variables, then use ${} syntax to insert the variables.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare well for the DSA and come with some gaming knowledge like how gaming industry runs and working in the world

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic Manual Testin
  • Q2. Be prepare of basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company

Game Developer Interview Questions & Answers

user image Shilpi Sinha

posted on 26 Jul 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Easy coding test ,checked basics

Round 3 - Coding Test 

Moderate coding test , basics and advanced

Round 4 - HR 

(2 Questions)

  • Q1. Hr discussion on joining and salary
  • Q2. Discussion for salary

Game Tester Interview Questions & Answers

user image Anonymous

posted on 25 Sep 2024

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

I applied via Recruitment Consulltant and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is SDLC,STLC & Bug life cycle?
  • Ans. 

    SDLC stands for Software Development Life Cycle, STLC stands for Software Testing Life Cycle, and Bug life cycle is the process of a bug from identification to resolution.

    • SDLC is the process of planning, creating, testing, and deploying software.

    • STLC involves activities like test planning, test design, test execution, and test closure.

    • Bug life cycle includes stages like New, Assigned, Open, Fixed, Retest, Verified, and...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. About cucumber framework
Round 2 - HR 

(1 Question)

  • Q1. About WebDriver io
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Assignment 

Writing test cases for login module

Top trending discussions

View All
Engineering - Software & QA
2w
a senior software engineer
.NET's Future & Senior Dev Salary Trends
I'm a Full Stack .NET Dev with 6+ years of experience. Seeing a lot of posts on LinkedIn saying .NET (especially .NET Core) might get replaced by stacks like Java/Spring or Python/Django or Next soon. What's the typical salary range in India for someone with my experience right now? Would love some insights from the community! Also, how can I stay ahead of the competition?
Got a question about Ingenuity Gaming?
Ask anonymously on communities.

Ingenuity Gaming Interview FAQs

How many rounds are there in Ingenuity Gaming interview?
Ingenuity Gaming interview process usually has 1-2 rounds. The most common rounds in the Ingenuity Gaming interview process are Technical, Coding Test and HR.
How to prepare for Ingenuity Gaming 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 Ingenuity Gaming. The most common topics and skills that interviewers at Ingenuity Gaming expect are Gaming, Python, CRM, Javascript and Data Structures.
What are the top questions asked in Ingenuity Gaming interview?

Some of the top questions asked at the Ingenuity Gaming interview -

  1. How can we achieve inheritance in ...read more
  2. 1. Write a program for Fibonacci series using recursion. 2. Write a function wh...read more
  3. Write a program to manipulate the list in a particular given or...read more
How long is the Ingenuity Gaming interview process?

The duration of Ingenuity Gaming 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

3.8/5

based on 12 interview experiences

Difficulty level

Easy 14%
Moderate 86%

Duration

Less than 2 weeks 86%
2-4 weeks 14%
View more

Interview Questions from Similar Companies

VDart Interview Questions
4.0
 • 29 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
Ciklum Interview Questions
3.4
 • 22 Interviews
View all

Ingenuity Gaming Reviews and Ratings

based on 101 reviews

3.0/5

Rating in categories

2.5

Skill development

3.2

Work-life balance

2.6

Salary

2.9

Job security

3.1

Company culture

2.3

Promotions

2.7

Work satisfaction

Explore 101 Reviews and Ratings
Art Manager(2D)

Noida

5-10 Yrs

Not Disclosed

Senior Compliance Tester

Noida

5-8 Yrs

Not Disclosed

Senior Python Developer

Jaipur

6-7 Yrs

Not Disclosed

Explore more jobs
Game Developer
117 salaries
unlock blur

₹3 L/yr - ₹10.1 L/yr

Test Engineer
48 salaries
unlock blur

₹3.6 L/yr - ₹7.2 L/yr

Senior Test Engineer
42 salaries
unlock blur

₹5.2 L/yr - ₹14 L/yr

Software Developer
39 salaries
unlock blur

₹3.6 L/yr - ₹10.2 L/yr

Senior Game Developer
39 salaries
unlock blur

₹7.1 L/yr - ₹24 L/yr

Explore more salaries
Compare Ingenuity Gaming with

Saama Technologies

3.7
Compare

Jumio

3.8
Compare

DISYS

3.0
Compare

Data-Core Systems

3.1
Compare
write
Share an Interview