Upload Button Icon Add office photos

Filter interviews by

CREATIVE MONKEY GAMES & TECHNOLOGIES Senior Game Developer Interview Questions and Answers

Updated 4 Apr 2024

CREATIVE MONKEY GAMES & TECHNOLOGIES Senior Game Developer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is reflection C#
  • Ans. 

    Reflection in C# is the ability to inspect and manipulate metadata of types, methods, properties, and other members at runtime.

    • Allows accessing type information at runtime

    • Enables dynamically invoking methods

    • Useful for creating generic algorithms

    • Example: retrieving property values using reflection

  • Answered by AI
  • Q2. Difference beetween static methods and normal methods
  • Ans. 

    Static methods belong to the class itself, while normal methods belong to instances of the class.

    • Static methods are called on the class itself, not on instances

    • Normal methods are called on instances of the class

    • Static methods cannot access instance variables, while normal methods can

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. How memory being handled by unity and why we use subscrition and unssubscribe for event delegate base methods
  • Ans. 

    Unity handles memory through garbage collection. Subscription and unsubscription of event delegate base methods are used to manage event listeners efficiently.

    • Unity uses garbage collection to manage memory, automatically deallocating memory when objects are no longer needed.

    • Subscribing to events adds a listener to an event delegate, while unsubscribing removes the listener to prevent memory leaks.

    • Using subscription and...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go in this

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(5 Questions)

  • Q1. React Life cycle
  • Q2. What React hooks have you utilized in your projects?
  • Q3. What is Redux, and what are the differences between Redux and Context?
  • Q4. What is the difference between visibility: hidden and display: none in CSS?
  • Q5. What are JavaScript closures, the temporal dead zone (TDZ), hoisting, and the JavaScript engine?
Round 2 - Coding Test 

Identify the duplicate character in the string.

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

I was interviewed before Feb 2024.

Round 1 - Coding Test 

The first round comprised of 4 sections online questions including aptitude, logical, Coding questions, and technical portions (Test Duration: 90 mins):

Debugging: We had to choose a language and debug up to 7 questions most probably. Codes were very basic like sorting, etc. I completed 6 of them.

Coding: There were two medium-hard level questions.

Work-style Assessment: Just try to answer as an ideal employee. Make sure you answers don’t contradict each other.

Aptitude: Around 25 questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Find diameter of tree
  • Q2. Count inversion
Round 3 - Technical 

(2 Questions)

  • Q1. Find n’th node from the end of a Linked List
  • Q2. Find shortest distance between 2 points in a matrix, where 2 points can be anywhere

Interview Preparation Tips

Interview preparation tips for other job seekers - Amazon just want to see whether you have good problem-solving skills. If you show them, you are in.

Do DSA religiously from the beginning. Use GFG, Leetcode, InterviewBit, and Youtube. These are more than enough. Doing Competitive Programing is very helpful.

For frequently asked questions: Make sure you know the best approaches and edge cases, and write the whole code instead of just reading the solutions.

Start from brute force and keep on optimizing when asked, in order to show you haven’t already done the question before.

Speak while coding or thinking.

Repeat the question how you have understood it.

Find edge cases

Use STAR method for behavioral questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Coding Test 

Trips for cracking interview

Round 2 - Technical 

(5 Questions)

  • Q1. For example how to replay for all questions
  • Q2. Different questions for all types
  • Q3. Interviews easily cracking trips
  • Q4. How to get good job in software
  • Q5. How to get job

Interview Preparation Tips

Interview preparation tips for other job seekers - Differently thinking for all types of questions and answers
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Jan 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. Hoisting concept with examples and guess the output
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope.

    • Variable declarations are hoisted but not their initializations.

    • Function declarations are fully hoisted.

    • Example: console.log(myVar); var myVar = 10; // Output: undefined

    • Example: console.log(myFunc()); function myFunc() { return 'Hello!'; } // Output: Hello!

  • Answered by AI
  • Q2. Map functionality with a call back function
  • Ans. 

    Using map function to apply a callback function to each element in an array

    • Map function is used to iterate over an array and apply a callback function to each element

    • The callback function can perform operations on each element and return a new value

    • Example: arr.map(item => item * 2) will double each element in the array

  • Answered by AI
  • Q3. Copy object, spread operator usage . Deep copy, sallow copy
  • Q4. Flexbox vs grid, dom, box model,
  • Ans. 

    Flexbox is best for one-dimensional layouts, Grid is best for two-dimensional layouts, DOM is the structure of a webpage, Box model is the layout of elements.

    • Flexbox is best for creating one-dimensional layouts like navigation bars or sidebars.

    • Grid is best for creating two-dimensional layouts like grids of images or cards.

    • DOM (Document Object Model) is the structure of a webpage, representing the elements as objects.

    • Bo...

  • Answered by AI
  • Q5. React optimization, why React,
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Why did you choose the flask over the django and fastapi?
  • Ans. 

    I chose Flask over Django and FastAPI due to its simplicity, flexibility, and ease of use for smaller projects.

    • Flask is lightweight and minimalistic, making it easier to set up and use for smaller projects.

    • Flask allows for more flexibility in terms of project structure and customization compared to Django.

    • Flask is well-suited for rapid prototyping and smaller applications where simplicity is key.

    • Django, on the other ha...

  • Answered by AI
  • Q2. Write the code for flask request and response block?
  • Ans. 

    Flask request and response block code snippet

    • Use Flask's request object to access incoming request data

    • Use Flask's jsonify function to create a JSON response

    • Handle different HTTP methods like GET, POST, etc. in the route function

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is ORM? which ORM tool, have you used?
  • Ans. 

    ORM stands for Object-Relational Mapping, a programming technique for converting data between incompatible type systems in object-oriented programming languages.

    • ORM is used to map objects from an application to tables in a relational database.

    • It simplifies data manipulation by allowing developers to work with objects instead of SQL queries.

    • Popular ORM tools include Hibernate for Java, Entity Framework for .NET, and Seq

  • Answered by AI
  • Q2. Write ORM code for select item from table?
  • Ans. 

    Use ORM code to select item from a table in database.

    • Use ORM query methods like find(), findOne(), or where() to select items from a table.

    • Specify the table name and any conditions for the selection.

    • Example: User.find({ where: { id: 1 } }) will select a user with id 1 from the User table.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just conduct the interviews
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Feb 2025.

Round 1 - Technical 

(1 Question)

  • Q1. Started from core java exception handling,multi threading,streams,hash map,
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

General aptitude, computer science fundamentals multiple-choice questions, and data structures and algorithms multiple-choice questions were asked.

Round 2 - Technical 

(2 Questions)

  • Q1. Given a string, write a function to reverse the string.
  • Ans. 

    Function to reverse a given string

    • Create an empty string to store the reversed string

    • Iterate through the input string in reverse order and append each character to the new string

    • Return the reversed string

  • Answered by AI
  • Q2. Given a sorted array of integers, write a function to perform a binary search to find the index of a target value. If the target value is not found, return -1.
  • Ans. 

    Binary search function to find target value in sorted array

    • Define function that takes sorted array and target value as input

    • Initialize variables for start, end, and middle indices

    • Use while loop to iterate until start is less than or equal to end

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. About the company
  • Q2. What are three significant achievements in your life?
  • Ans. 

    Graduating with honors, winning a hackathon, volunteering in a developing country

    • Graduated with honors from university with a degree in Computer Science

    • Won first place in a hackathon competition by developing a unique and innovative software solution

    • Volunteered in a developing country to help build schools and provide education to underprivileged children

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Project related question , Interface , Abstraction
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussioon
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Basic html css questions
Round 2 - Aptitude Test 

Logical reasoning, quantitative analysis and computer test

Round 3 - Technical 

(1 Question)

  • Q1. Basic html, css, javascript questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

CREATIVE MONKEY GAMES & TECHNOLOGIES Interview FAQs

How many rounds are there in CREATIVE MONKEY GAMES & TECHNOLOGIES Senior Game Developer interview?
CREATIVE MONKEY GAMES & TECHNOLOGIES interview process usually has 2 rounds. The most common rounds in the CREATIVE MONKEY GAMES & TECHNOLOGIES interview process are Technical and One-on-one Round.
What are the top questions asked in CREATIVE MONKEY GAMES & TECHNOLOGIES Senior Game Developer interview?

Some of the top questions asked at the CREATIVE MONKEY GAMES & TECHNOLOGIES Senior Game Developer interview -

  1. How memory being handled by unity and why we use subscrition and unssubscribe f...read more
  2. Difference beetween static methods and normal meth...read more
  3. What is reflection...read more

Tell us how to improve this page.

CREATIVE MONKEY GAMES & TECHNOLOGIES Senior Game Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

CREATIVE MONKEY GAMES & TECHNOLOGIES Senior Game Developer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

4.0

Skill development

1.0

Work-life balance

2.0

Salary

2.0

Job security

1.0

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Concept Artist
4 salaries
unlock blur

₹3.6 L/yr - ₹4.8 L/yr

Unity Developer
4 salaries
unlock blur

₹5 L/yr - ₹15 L/yr

Unity Game Developer
4 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

QA Engineer
3 salaries
unlock blur

₹1.5 L/yr - ₹3.2 L/yr

QA Lead
3 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Explore more salaries
Compare CREATIVE MONKEY GAMES & TECHNOLOGIES with

Moonfrog Labs

2.5
Compare

Octro

3.3
Compare

99games Online

1.4
Compare

Nazara Technologies

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