Upload Button Icon Add office photos

Filter interviews by

Ingenuity Gaming Game Developer Interview Questions, Process, and Tips

Updated 11 Dec 2024

Top Ingenuity Gaming Game Developer Interview Questions and Answers

  • Q1. How can we achieve inheritance in go?
  • Q2. 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 st ...read more
  • Q3. Write a program to manipulate the list in a particular given order

Ingenuity Gaming Game Developer Interview Experiences

6 interviews found

I applied via LinkedIn

Round 1 - Technical 

(2 Questions)

  • Q1. 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 and

  • Answered by AI
  • Q2. Implement go routine
  • 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)

  • Answered by AI
Round 2 - Coding Test 

User can enter phone no in any given format, you need to store the correct format
Eg - XXXXXXXXXX8888
Ans - XXXXX

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the basics of any programing language and solve an array related questions.
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

Game Developer Interview Questions Asked at Other Companies

asked in Nvidia
Q1. What will you do when you get bad reviews about a game?
asked in Nvidia
Q2. Would you rather buy a costly game or make a reasonably cheaper o ... read more
Q3. How can we achieve inheritance in go?
asked in Nvidia
Q4. What is the code for camera reset in C# ?
Q5. what is culling and what types of culling are there in unity?
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

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

Ingenuity Gaming interview questions for designations

 Senior Game Developer

 (2)

 Game Tester

 (1)

 Test Engineer

 (2)

 Senior Test Engineer

 (1)

 Senior Test Lead

 (1)

 Software Testing Engineer

 (1)

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

Round 1 - Technical 

(1 Question)

  • Q1. Python core concepts, about lists, dictionaries, random etc.
Round 2 - Coding Test 

Class, object oriented coding questions,

Interview Preparation Tips

Interview preparation tips for other job seekers - practice interview coding questions which uses lists, dictionaries, sets etc.
go through python core concepts

Interview Questionnaire 

1 Question

  • Q1. Oops concepts,Interface, javascrips

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Medium to Hard Questions

Round 2 - HR 

(1 Question)

  • Q1. Basic questions from Resume
Round 3 - Technical 

(1 Question)

  • Q1. Simple Coding Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - For campus placements, be confident and calm. Give your best shot. Be courageous
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Only js coding questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Centre for Development of Advanced Computing (CDAC) and was interviewed before Jun 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Related to front end technologies like HTML, CSS, JS
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions on HTML, CSS, JS Focus on array questions and read methods of array before
Round 3 - Technical 

(1 Question)

  • Q1. Managerial round questions based on scenario to check how you think/react on the particular situation

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Validate binary tree is valid or not
  • Ans. 

    Validate if a binary tree is valid or not

    • A valid binary tree should not have any duplicate nodes

    • A valid binary tree should have all left nodes smaller than the parent node and all right nodes greater than the parent node

    • We can use recursion to traverse the tree and check if it is valid

  • Answered by AI
  • Q2. Reversing the linkedlist
  • Ans. 

    Reversing a linked list involves changing the direction of the pointers in the list.

    • Iteratively swap the next and previous pointers of each node in the list

    • Recursively swap the next and previous pointers of each node in the list

    • Use a stack to push each node onto the stack and then pop them off in reverse order

    • Create a new list and iterate through the original list, adding each node to the front of the new list

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DS before attending this interview

Skills evaluated in this interview

Ingenuity Gaming Interview FAQs

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

Some of the top questions asked at the Ingenuity Gaming Game Developer 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

Tell us how to improve this page.

Ingenuity Gaming Game Developer Interview Process

based on 3 interviews

2 Interview rounds

  • Technical Round
  • Coding Test Round
View more

Interview Questions from Similar Companies

Magic Edtech Interview Questions
3.1
 • 49 Interviews
Dream11 Interview Questions
3.8
 • 37 Interviews
Equifax Interview Questions
3.3
 • 29 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
VDart Interview Questions
4.5
 • 26 Interviews
View all
Ingenuity Gaming Game Developer Salary
based on 117 salaries
₹3 L/yr - ₹11 L/yr
6% less than the average Game Developer Salary in India
View more details

Ingenuity Gaming Game Developer Reviews and Ratings

based on 17 reviews

3.5/5

Rating in categories

3.0

Skill development

3.7

Work-life balance

3.0

Salary

3.4

Job security

3.3

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 17 Reviews and Ratings
Game Developer
117 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Test Engineer
44 salaries
unlock blur

₹3.6 L/yr - ₹7.2 L/yr

Game Tester
38 salaries
unlock blur

₹3 L/yr - ₹8.8 L/yr

Senior Game Developer
34 salaries
unlock blur

₹7.1 L/yr - ₹23 L/yr

Software Developer
31 salaries
unlock blur

₹3.6 L/yr - ₹8.8 L/yr

Explore more salaries
Compare Ingenuity Gaming with

Dream11

3.8
Compare

Nazara Technologies

3.0
Compare

Octro

3.4
Compare

Games2Win

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