AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Engaged Employer

i

This company page is being actively managed by Gameskraft Team. If you also belong to the team, you can get access from here

Gameskraft Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 135 Reviews

Play video Play video Video summary
  • About
  • Reviews
    135
  • Salaries
    1.1k
  • Interviews
    18
  • Jobs
    25
  • Benefits
    7
  • Photos
    34

Filter interviews by

Gameskraft Interview Questions and Answers

Updated 17 Apr 2025
Popular Designations

12 Interview questions

A Senior Product Manager was asked 3mo ago
Q. How would you approach the relaunch of Zepto Pass, and what tracking methods would you implement to measure its success?
Ans. 

Relaunching Zepto Pass involves strategic planning, user feedback, and robust tracking for success measurement.

  • Conduct user research to gather feedback on the previous version of Zepto Pass.

  • Define clear objectives for the relaunch, such as increasing user engagement by 30%.

  • Implement A/B testing for different features to determine user preferences.

  • Utilize analytics tools like Google Analytics to track user behavior...

View all Senior Product Manager interview questions
A Senior Product Manager was asked 3mo ago
Q. What is your approach to identifying and resolving the root cause analysis (RCA) of a dip in Daily Active Users (DAU) at Gameskraft?
Ans. 

My approach to RCA for DAU dips involves data analysis, user feedback, and iterative testing to identify and resolve issues.

  • Analyze user engagement metrics to identify trends and patterns leading to the dip.

  • Conduct surveys or interviews with users to gather qualitative feedback on their experience.

  • Review recent product updates or changes that may have impacted user experience, such as bugs or feature removals.

  • Segm...

View all Senior Product Manager interview questions
A Full Stack Developer was asked 10mo ago
Q. Given a binary tree, find the number of unique paths from the top-left to the bottom-right.
Ans. 

Count the number of unique paths from top left to bottom right in a binary tree.

  • Use dynamic programming to keep track of the number of paths at each node.

  • At each node, the number of paths is the sum of the number of paths from the node to the right and the node below.

  • Example: For a 2x2 binary tree, there are 2 unique paths.

View all Full Stack Developer interview questions
A Full Stack Developer was asked 10mo ago
Q. Design and implement a data structure for a Least Frequently Used (LFU) cache. Implement the LFUCache class:
Ans. 

LFU (Least Frequently Used) cache is a data structure that removes the least frequently used items when the cache is full.

  • LFU cache stores key-value pairs with a frequency count to track usage.

  • When a new item is added, its frequency count is set to 1.

  • When an existing item is accessed, its frequency count is incremented.

  • When the cache is full, the item with the lowest frequency count is removed.

  • Example: If cache si...

View all Full Stack Developer interview questions
A Full Stack Developer was asked 10mo ago
Q. Given an array of integers, rotate the array to the right by k steps, where k is non-negative.
Ans. 

Rotate an array by K positions to the right

  • Create a new array and copy elements from original array starting from index (n-k) to n-1, then copy elements from index 0 to (n-k-1)

  • Alternatively, reverse the entire array, then reverse the first k elements and the remaining n-k elements separately

  • Handle cases where k is greater than array length by taking modulo of k with array length

View all Full Stack Developer interview questions
A Full Stack Developer was asked 10mo ago
Q. Given an array of integers, find the maximum sum of a triplet (nums[i], nums[j], nums[k]) such that i < j < k and nums[i] < nums[j] < nums[k].
Ans. 

Find the maximum triplet sum satisfying given conditions

  • Sort the array in ascending order

  • Iterate through the array and keep track of the maximum triplet sum meeting the conditions

  • Return the maximum triplet sum found

View all Full Stack Developer interview questions
A Full Stack Developer was asked 10mo ago
Q. Given an m x n matrix, return all elements of the matrix in spiral order.
Ans. 

Prints elements of a matrix in a spiral order, starting from the top-left corner and moving clockwise.

  • Initialize boundaries: top, bottom, left, right.

  • Iterate while top <= bottom and left <= right.

  • Print top row, then increment top boundary.

  • Print right column, then decrement right boundary.

  • Print bottom row (if applicable), then decrement bottom boundary.

  • Print left column (if applicable), then increment left bo...

View all Full Stack Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. Given a string, write a function to print all permutations of the string.
Ans. 

Use recursion to generate all possible permutations of a given string.

  • Use recursion to swap characters in the string to generate permutations

  • Keep track of visited characters to avoid duplicates

  • Base case: when the length of the string is 1, add it to the result array

View all Software Developer interview questions
A Software Developer was asked
Q. You are given an integer array coins representing coins of different denominations and an integer amount representing a total amount of money. Return the number of combinations that make up that amount. If ...
Ans. 

The coin change problem involves finding the number of ways to make a certain value using a given set of coins.

  • Use dynamic programming to solve the coin change problem efficiently.

  • Create a 1D array to store the number of ways to make each value from 0 to the target value.

  • Iterate through the coins and update the array based on the current coin's value.

  • The final answer will be stored in the last element of the array...

View all Software Developer interview questions
A Senior Business Analyst was asked
Q. Write an SQL query.
Ans. 

SQL query to retrieve total sales amount by product category

  • Use GROUP BY clause to group the results by product category

  • Use SUM() function to calculate the total sales amount

  • Join the tables if necessary to get the required data

View all Senior Business Analyst interview questions
1 2

Gameskraft Interview Experiences

18 interviews found

Senior Product Manager Interview Questions & Answers

user image Anonymous

posted on 17 Apr 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. How would you approach the relaunch of Zepto Pass, and what tracking methods would you implement to measure its success?
  • Ans. 

    Relaunching Zepto Pass involves strategic planning, user feedback, and robust tracking for success measurement.

    • Conduct user research to gather feedback on the previous version of Zepto Pass.

    • Define clear objectives for the relaunch, such as increasing user engagement by 30%.

    • Implement A/B testing for different features to determine user preferences.

    • Utilize analytics tools like Google Analytics to track user behavior and ...

  • Answered by AI
    Add your answer
  • Q2. Based on your past work experience and interests, can you explain how you have launched and scaled products?
  • Add your answer
  • Q3. What is your approach to identifying and resolving the root cause analysis (RCA) of a dip in Daily Active Users (DAU) at Gameskraft?
  • Ans. 

    My approach to RCA for DAU dips involves data analysis, user feedback, and iterative testing to identify and resolve issues.

    • Analyze user engagement metrics to identify trends and patterns leading to the dip.

    • Conduct surveys or interviews with users to gather qualitative feedback on their experience.

    • Review recent product updates or changes that may have impacted user experience, such as bugs or feature removals.

    • Segment u...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - I interviewed with Gameskraft for the SPM role related to the RummyCulture product. The initial response and interaction occurred a month after my application. There was minimal context provided regarding the type of interview rounds or what to expect during the interview. I attempted to reach out to HR via email and WhatsApp for an update, but I received no response during the first 2-3 weeks. Eventually, I received an automated email. There was no feedback regarding the reasons for my rejection or any insights into what went wrong, and I did not receive any response from HR. This fully demonstrates the extent to which they care about the candidate's interview experience. It is important to note that simply having a sophisticated portal to track applications does not address poor candidate experiences.
Anonymous

Production Analyst Interview Questions & Answers

user image Anonymous

posted on 11 Apr 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Round -1 SQL Questions
  • Add your answer
  • Q2. Round -2 RCA & Case Studies
  • Add your answer
Anonymous

Full Stack Developer Interview Questions & Answers

user image Anonymous

posted on 19 Sep 2024

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

I applied via Campus Placement and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Three coding questions to be solved in 90 minutes.

Round 2 - One-on-one 

(2 Questions)

  • Q1. K rotation of a an array
  • Ans. 

    Rotate an array by K positions to the right

    • Create a new array and copy elements from original array starting from index (n-k) to n-1, then copy elements from index 0 to (n-k-1)

    • Alternatively, reverse the entire array, then reverse the first k elements and the remaining n-k elements separately

    • Handle cases where k is greater than array length by taking modulo of k with array length

  • Answered by AI
    Add your answer
  • Q2. Spiral order matrix print
  • Ans. 

    Prints elements of a matrix in a spiral order, starting from the top-left corner and moving clockwise.

    • Initialize boundaries: top, bottom, left, right.

    • Iterate while top <= bottom and left <= right.

    • Print top row, then increment top boundary.

    • Print right column, then decrement right boundary.

    • Print bottom row (if applicable), then decrement bottom boundary.

    • Print left column (if applicable), then increment left boundar...

  • Answered by AI
    Add your answer
Round 3 - One-on-one 

(2 Questions)

  • Q1. Unique paths from top left of a binary tree to bottom right.
  • Ans. 

    Count the number of unique paths from top left to bottom right in a binary tree.

    • Use dynamic programming to keep track of the number of paths at each node.

    • At each node, the number of paths is the sum of the number of paths from the node to the right and the node below.

    • Example: For a 2x2 binary tree, there are 2 unique paths.

  • Answered by AI
    Add your answer
  • Q2. Maximum triplet sum such that i
  • Ans. 

    Find the maximum triplet sum satisfying given conditions

    • Sort the array in ascending order

    • Iterate through the array and keep track of the maximum triplet sum meeting the conditions

    • Return the maximum triplet sum found

  • Answered by AI
    Add your answer
Round 4 - One-on-one 

(2 Questions)

  • Q1. Implementation of LFU Cache
  • Ans. 

    LFU (Least Frequently Used) cache is a data structure that removes the least frequently used items when the cache is full.

    • LFU cache stores key-value pairs with a frequency count to track usage.

    • When a new item is added, its frequency count is set to 1.

    • When an existing item is accessed, its frequency count is incremented.

    • When the cache is full, the item with the lowest frequency count is removed.

    • Example: If cache size is...

  • Answered by AI
    Add your answer
  • Q2. Some react and database questions.
  • Add your answer

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 24 May 2024

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

(1 Question)

  • Q1. To print all permutation of a string
  • Ans. 

    Use recursion to generate all possible permutations of a given string.

    • Use recursion to swap characters in the string to generate permutations

    • Keep track of visited characters to avoid duplicates

    • Base case: when the length of the string is 1, add it to the result array

  • Answered by AI
    Add your answer
Round 2 - One-on-one 

(1 Question)

  • Q1. Coin change Problem of finding number of ways to achieve K value
  • Ans. 

    The coin change problem involves finding the number of ways to make a certain value using a given set of coins.

    • Use dynamic programming to solve the coin change problem efficiently.

    • Create a 1D array to store the number of ways to make each value from 0 to the target value.

    • Iterate through the coins and update the array based on the current coin's value.

    • The final answer will be stored in the last element of the array.

    • Exam...

  • Answered by AI
    Add your answer
Round 3 - One-on-one 

(1 Question)

  • Q1. Suduko solver question is given to me
  • Add your answer

Skills evaluated in this interview

Anonymous

Senior Business Analyst Interview Questions & Answers

user image Anonymous

posted on 16 Jul 2024

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

I applied via LinkedIn and was interviewed in Jan 2024. There were 5 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Live SQL Coding with an Interviewer
  • Add your answer
Round 2 - One-on-one 

(3 Questions)

  • Q1. Business Case Solving
  • Add your answer
  • Q2. Small Puzzle on Gameskraft business
  • Add your answer
  • Q3. CV and Project related questions
  • Add your answer
Round 3 - One-on-one 

(2 Questions)

  • Q1. CV and Project related questions
  • Add your answer
  • Q2. Business Understanding questions on past experiences
  • Add your answer
Round 4 - One-on-one 

(3 Questions)

  • Q1. CV and project related questions
  • Add your answer
  • Q2. Business Understanding of past experience
  • Add your answer
  • Q3. Generic puzzle or business case
  • Add your answer
Round 5 - HR 

(2 Questions)

  • Q1. Reasons for change
  • Add your answer
  • Q2. Past experience related questions
  • Add your answer
Anonymous

Marketing Executive Interview Questions & Answers

user image Megha B

posted on 20 Jan 2025

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me About yourself
  • Ans. 

    Experienced marketing professional with a background in digital marketing and brand management.

    • Over 5 years of experience in marketing roles

    • Specialize in digital marketing strategies and social media management

    • Successfully launched several marketing campaigns resulting in increased brand awareness and customer engagement

  • Answered by AI
    Add your answer
Anonymous

Senior 3D Artist Interview Questions & Answers

user image Anonymous

posted on 19 Jun 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Ask about my experience.

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 23 Nov 2024

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

Leetcode medium problem

Anonymous

Senior Business Analyst Interview Questions & Answers

user image Anonymous

posted on 17 May 2024

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

(1 Question)

  • Q1. Write SQL query
  • Ans. 

    SQL query to retrieve total sales amount by product category

    • Use GROUP BY clause to group the results by product category

    • Use SUM() function to calculate the total sales amount

    • Join the tables if necessary to get the required data

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Product Manager Interview Questions & Answers

user image Anonymous

posted on 10 May 2023

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Case studies and situational Questions
  • Add your answer
  • Q2. Case studies and situational Questions 2
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Ghosted by recruiter after the last round. Useless HR team cant do one single job they are supposed to do on apprising the candidates
Anonymous

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Gameskraft ?
Ask anonymously on communities.
More about working at Gameskraft
  • HQ - Bangalore, Krnataka, India
  • Software Product
  • 501-1k Employees (India)
  • Gaming
  • Sports & Recreation

Gameskraft Interview FAQs

How many rounds are there in Gameskraft interview?
Gameskraft interview process usually has 2-3 rounds. The most common rounds in the Gameskraft interview process are One-on-one Round, Coding Test and Resume Shortlist.
How to prepare for Gameskraft 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 Gameskraft . The most common topics and skills that interviewers at Gameskraft expect are Gaming, customer support, Analytics, Python and SQL.
What are the top questions asked in Gameskraft interview?

Some of the top questions asked at the Gameskraft interview -

  1. How would you approach the relaunch of Zepto Pass, and what tracking methods wo...read more
  2. What is your approach to identifying and resolving the root cause analysis (RCA...read more
  3. Unique paths from top left of a binary tree to bottom rig...read more
How long is the Gameskraft interview process?

The duration of Gameskraft interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Gameskraft Interviews By Designations

  • Gameskraft Software Developer Interview Questions
  • Gameskraft Senior Business Analyst Interview Questions
  • Gameskraft Senior 3D Artist Interview Questions
  • Gameskraft Product Manager Interview Questions
  • Gameskraft Senior Software Engineer Interview Questions
  • Gameskraft Marketing Executive Interview Questions
  • Gameskraft IT System Administrator Interview Questions
  • Gameskraft Production Analyst Interview Questions
  • Show more
  • Gameskraft Customer Service Executive Interview Questions
  • Gameskraft SDE (Software Development Engineer) Interview Questions

Interview Questions for Popular Designations

  • Software Developer Interview Questions
  • Senior Executive Interview Questions
  • Business Analyst Interview Questions
  • Senior Associate Interview Questions
  • Associate Software Engineer Interview Questions
  • Java Developer Interview Questions
  • Senior Software Engineer Interview Questions
  • Data Analyst Interview Questions
  • Show more
  • Deputy Manager Interview Questions
  • Assistant Manager Interview Questions

Overall Interview Experience Rating

3.5/5

based on 17 interview experiences

Difficulty level

Easy 18%
Moderate 73%
Hard 9%

Duration

Less than 2 weeks 73%
2-4 weeks 18%
6-8 weeks 9%
View more

Interview Questions from Similar Companies

Celebal Technologies
Celebal Technologies Interview Questions
3.1
 • 123 Interviews
Innovaccer
Innovaccer Interview Questions
3.5
 • 86 Interviews
NoBrokerHood
NoBrokerHood Interview Questions
3.0
 • 62 Interviews
Vyapar
Vyapar Interview Questions
3.5
 • 60 Interviews
Agilysys Technologies India
Agilysys Technologies India Interview Questions
3.4
 • 55 Interviews
Ideas2IT Technologies
Ideas2IT Technologies Interview Questions
3.7
 • 50 Interviews
KEKA TECHNOLOGIES
KEKA TECHNOLOGIES Interview Questions
3.3
 • 44 Interviews
CodeClouds
CodeClouds Interview Questions
4.4
 • 42 Interviews
Grey Orange
Grey Orange Interview Questions
3.2
 • 40 Interviews
Entrata
Entrata Interview Questions
4.1
 • 40 Interviews
View all

Gameskraft Reviews and Ratings

based on 135 reviews

4.1/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

4.2

Salary

3.8

Job security

3.9

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 135 Reviews and Ratings
Jobs at Gameskraft
Gameskraft
Senior Business Analyst

Bangalore / Bengaluru

2-3 Yrs

₹ 28-29 LPA

Gameskraft
Manager - Customer Experience

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Gameskraft
Senior Product Designer

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Explore more jobs
Gameskraft Salaries in India
Senior Software Engineer
86 salaries
unlock blur

₹24.1 L/yr - ₹43.4 L/yr

Software Engineer
79 salaries
unlock blur

₹18 L/yr - ₹33 L/yr

Senior Business Analyst
45 salaries
unlock blur

₹22 L/yr - ₹36 L/yr

Product Manager
28 salaries
unlock blur

₹26 L/yr - ₹43.5 L/yr

Business Analyst
24 salaries
unlock blur

₹13.8 L/yr - ₹26.5 L/yr

Explore more salaries
Compare Gameskraft with
Celebal Technologies

Celebal Technologies

3.1
Compare
NoBrokerHood

NoBrokerHood

3.0
Compare
Duck Creek Technologies

Duck Creek Technologies

4.4
Compare
Ascent HR Technologies Private Limited

Ascent HR Technologies Private Limited

3.6
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Gameskraft Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter