Upload Button Icon Add office photos
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
3.9

based on 121 Reviews

Filter interviews by

Gameskraft Interview Questions, Process, and Tips

Updated 23 Nov 2024

Top Gameskraft Interview Questions and Answers

View all 10 questions

Gameskraft Interview Experiences

Popular Designations

15 interviews found

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
  • Q2. Spiral order matrix print
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
  • 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
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
  • Q2. Some react and database questions.

Skills evaluated in this interview

Full Stack Developer Interview Questions asked at other Companies

Q1. Query And MatrixYou are given a binary matrix with ‘M’ rows and ‘N’ columns initially consisting of all 0s. 'Q' queries follow. The queries can be of 4 types: Query 1: 1 R index Query 2: 1 C index Query 3: 2 R index Query 4: 2 C index In ea... read more
View answer (1)
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
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
Round 3 - One-on-one 

(1 Question)

  • Q1. Suduko solver question is given to me

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
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
Round 2 - One-on-one 

(3 Questions)

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

(2 Questions)

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

(3 Questions)

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

(2 Questions)

  • Q1. Reasons for change
  • Q2. Past experience related questions

Senior Business Analyst Interview Questions asked at other Companies

Q1. Difference between annuity and pension, types of annuity and pension, actions done on a policy, policy flow, RI insurance and it’s types and difference between them. Coinsurance, what are the charges when u cancel policy in 1st year vs 3rd ... read more
View answer (1)
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.

Gameskraft interview questions for popular designations

 Software Developer

 (4)

 Senior Business Analyst

 (2)

 Customer Service Executive

 (1)

 Front Office and Accounts Executive

 (1)

 Full Stack Developer

 (1)

 IT System Administrator

 (1)

 Product Manager

 (1)

 SDE (Software Development Engineer)

 (1)

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

Leetcode medium problem

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
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

Skills evaluated in this interview

Senior Business Analyst Interview Questions asked at other Companies

Q1. Difference between annuity and pension, types of annuity and pension, actions done on a policy, policy flow, RI insurance and it’s types and difference between them. Coinsurance, what are the charges when u cancel policy in 1st year vs 3rd ... read more
View answer (1)
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
  • Q2. Case studies and situational Questions 2

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

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Calicut and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Coding Test 

CODING ON DSA AND THEY ARE VERY MUCH STANDARD QUESTIONS,

Round 2 - Technical 

(3 Questions)

  • Q1. LCA OF THE BINARY TREE
  • Ans. 

    Find the lowest common ancestor of two nodes in a binary tree.

    • Traverse the tree recursively to find the paths from root to the two nodes.

    • Compare the paths to find the last common node.

    • If one of the nodes is the ancestor of the other, return the ancestor node.

    • If either of the nodes is not present in the tree, return null.

  • Answered by AI
  • Q2. K DISTANCE NODES FROM CURRENT NODE
  • Ans. 

    Finding nodes at a distance of K from the current node in a tree/graph.

    • Use BFS/DFS to traverse the tree/graph.

    • Maintain a visited set to avoid revisiting nodes.

    • Keep track of the distance of each node from the current node.

    • Return all nodes at a distance of K from the current node.

  • Answered by AI
  • Q3. DO YOU HAVE ANY QUESTIONS FOR US

Interview Preparation Tips

Interview preparation tips for other job seekers - PREPARE DSA AND DO STANDARD QUESTIONS AND BE CONFIDENT

Skills evaluated in this interview

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Previous experience
  • Q2. Your skills & self confidence

Sme Process Analyst Interview Questions asked at other Companies

Q1. What is Modifier
View answer (1)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Information Technology, Design and Manufacturing (IIITDM), Jabalpur and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Gave 2 medium leetcode questions.

Round 3 - Technical 

(1 Question)

  • Q1. Project discussion
Round 4 - Coding Test 

Gave a medium hard DP problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Its mostly DSA for freshers

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

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 Customer Service.
What are the top questions asked in Gameskraft interview?

Some of the top questions asked at the Gameskraft interview -

  1. Unique paths from top left of a binary tree to bottom rig...read more
  2. Maximum triplet sum such that i...read more
  3. Coin change Problem of finding number of ways to achieve K va...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 Interview Process

based on 7 interviews in last 1 year

Interview experience

3.3
  
Average
View more

People are getting interviews through

based on 11 Gameskraft interviews
Job Portal
Campus Placement
Recruitment Consultant
WalkIn
Referral
27%
27%
18%
9%
9%
10% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

NoBrokerHOOD Interview Questions
3.3
 • 55 Interviews
Dream11 Interview Questions
3.8
 • 36 Interviews
Entrata Interview Questions
4.4
 • 33 Interviews
Baazi Games Interview Questions
3.1
 • 15 Interviews
WinZO Interview Questions
4.8
 • 14 Interviews
Octro Interview Questions
3.5
 • 3 Interviews
View all

Gameskraft Reviews and Ratings

based on 121 reviews

3.9/5

Rating in categories

3.5

Skill development

3.7

Work-Life balance

4.0

Salary & Benefits

3.5

Job Security

3.6

Company culture

3.3

Promotions/Appraisal

3.5

Work Satisfaction

Explore 121 Reviews and Ratings
Software Engineer
69 salaries
unlock blur

₹15 L/yr - ₹41 L/yr

Senior Software Engineer
64 salaries
unlock blur

₹22 L/yr - ₹52 L/yr

Senior Business Analyst
42 salaries
unlock blur

₹22 L/yr - ₹36 L/yr

Product Manager
25 salaries
unlock blur

₹16.7 L/yr - ₹40 L/yr

Business Analyst
23 salaries
unlock blur

₹8.5 L/yr - ₹28.2 L/yr

Explore more salaries
Compare Gameskraft with

Dream11

3.8
Compare

Nazara Technologies

3.0
Compare

Mobile Premier League

3.4
Compare

Paytm First Games

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview