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

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
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 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?

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

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.

Ingenuity Gaming interview questions for designations

 Senior Game Developer

 (2)

 Game Tester

 (1)

 Test Engineer

 (2)

 Senior Test Engineer

 (1)

 Software Testing Engineer

 (1)

 Senior Test Lead

 (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

Game Developer Jobs at Ingenuity Gaming

View all

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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in May 2023. There were 5 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 - Group Discussion 

They will give some topics and after that gd starts

Round 3 - Aptitude Test 

30 questions provided you need to answer 15 correctly to go to next round

Round 4 - Technical 

(4 Questions)

  • Q1. Introduce yourself, write sql query to list out employees above age of 23
  • Ans. 

    Experienced front end developer with SQL skills. SQL query to list employees above age 23.

    • Use SELECT statement to retrieve data from employees table

    • Use WHERE clause to filter employees above age 23

    • Example: SELECT * FROM employees WHERE age > 23;

  • Answered by AI
  • Q2. Tell what you have learned in your interships
  • Q3. Difference between let and var in javascript
  • Ans. 

    let is block scoped while var is function scoped in JavaScript.

    • let is block scoped, meaning it is only accessible within the block it is declared in.

    • var is function scoped, meaning it is accessible throughout the function it is declared in.

    • Using let can help prevent variable hoisting issues.

    • let allows you to redeclare a variable in the same scope, while var does not.

  • Answered by AI
  • Q4. Tell me some Html tags
  • Ans. 

    HTML tags are used to structure content on a web page.

    • <h1> - Heading tag

    • <p> - Paragraph tag

    • <a> - Anchor tag for links

    • <img> - Image tag

    • <ul> - Unordered list tag

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Just normal questions are asked like how will you relocate

Skills evaluated in this interview

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

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 HR.
How to prepare for Ingenuity Gaming Game 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 Ingenuity Gaming. The most common topics and skills that interviewers at Ingenuity Gaming expect are Agile Coaching, Analytical Chemistry, Game Development, Game Testing and Gaming.
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 118 salaries
₹3 L/yr - ₹11 L/yr
5% less than the average Game Developer Salary in India
View more details

Ingenuity Gaming Game Developer Reviews and Ratings

based on 17 reviews

3.4/5

Rating in categories

2.6

Skill development

3.6

Work-life balance

3.0

Salary

3.3

Job security

3.0

Company culture

2.5

Promotions

2.8

Work satisfaction

Explore 17 Reviews and Ratings
Game Developer
118 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Test Engineer
45 salaries
unlock blur

₹3.6 L/yr - ₹7.2 L/yr

Game Tester
38 salaries
unlock blur

₹3 L/yr - ₹8.8 L/yr

Software Developer
36 salaries
unlock blur

₹4.5 L/yr - ₹10.6 L/yr

Senior Game Developer
36 salaries
unlock blur

₹7.1 L/yr - ₹23 L/yr

Explore more salaries
Compare Ingenuity Gaming with

Dream11

3.8
Compare

Nazara Technologies

3.0
Compare

Octro

3.3
Compare

Games2Win

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