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

Filter interviews by

Gameskraft SDE (Software Development Engineer) Interview Questions and Answers

Updated 27 Feb 2023

Gameskraft SDE (Software Development Engineer) Interview Experiences

1 interview found

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

Interview questions from similar companies

Round 1 - One-on-one 

(1 Question)

  • Q1. It was related to ds and algo, oops, os ,dbms
Round 2 - One-on-one 

(1 Question)

  • Q1. It was related to oops, dbms and ds and algo

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare ds and algo strongly and study oops ,os, dbms, networking, system design in order
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It was good 20 mcqs 3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa and core subjects like cn os
  • Q2. Dsa questions and core subjects
Round 3 - HR 

(1 Question)

  • Q1. Basic family discussion and salary details

Interview Preparation Tips

Interview preparation tips for other job seekers - it was overall a good experience
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic DSA questions, best time to buy and sell stock and its variation

Round 2 - Technical 

(2 Questions)

  • Q1. Basic nosql vs sql questions
  • Q2. Designing system for google playstore
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

Round 1 - Coding Test 

Java internals, coding questions 2sum

Round 2 - Technical 

(2 Questions)

  • Q1. Hld of your previous project
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used React.js for front-end development

    • Implemented RESTful APIs for backend using Node.js and Express

    • Utilized MongoDB for database storage

    • Incorporated authentication and authorization features for user security

  • Answered by AI
  • Q2. Question related to self build projects
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Location constrain if any
  • Ans. 

    Open to relocation for the right opportunity

    • Willing to relocate for the right job opportunity

    • Flexible with location for the right role

    • Open to considering different locations for the right position

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. They asked to design a database table
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Leetcode Medium questions on hackerrank

Round 2 - One-on-one 

(3 Questions)

  • Q1. Kadane algorithm based question
  • Q2. Leetcode medium
  • Q3. Resume based questions
Round 3 - One-on-one 

(4 Questions)

  • Q1. Probability question math problem
  • Q2. Puzzle to solve
  • Q3. AI based question
  • Q4. 1 question to solve Leetcode medium

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with DSA and communication skill
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

25 questions , 1 hour

Round 2 - Coding Test 

1 coding , 2 logical question

Round 3 - One-on-one 

(2 Questions)

  • Q1. For loop , 2 logical
  • Q2. About final year projrct
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

First round was coding test conducted by their IDE where you can program in any language like on hackerrank IDE . 5 question were asked from easy to hard

Round 2 - Psychometric Test 

(2 Questions)

  • Q1. They ask me about my though on social media
  • Q2. They give me a situation to handle the work load
Round 3 - Technical 

(2 Questions)

  • Q1. Difference between stack and heap ?
  • Ans. 

    Stack is used for static memory allocation and stores local variables, while heap is used for dynamic memory allocation and stores objects.

    • Stack memory is allocated in a contiguous block and is faster to access compared to heap memory.

    • Variables stored on the stack have limited scope and lifetime, while objects on the heap can persist beyond the scope of the function.

    • Stack memory is managed by the compiler, while heap m...

  • Answered by AI
  • Q2. Difference between complier and interpreter ?
  • Ans. 

    Compiler translates entire code into machine code before execution, while interpreter translates code line by line during execution.

    • Compiler translates entire code into machine code before execution

    • Interpreter translates code line by line during execution

    • Compiler generates error messages after scanning entire code

    • Interpreter stops at first error encountered

    • Examples: C, C++ use compilers; Python, Ruby use interpreters

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. My introduction
  • Q2. I can i mange to work proficiency

Interview Preparation Tips

Interview preparation tips for other job seekers - be enough smart to give an answer and if don't know then say sorry don't know
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium to hard questions based on arrays, dp

Round 2 - Technical 

(2 Questions)

  • Q1. Quick sort algorithm
  • Ans. 

    Quick sort is a popular sorting algorithm that uses divide and conquer strategy.

    • Divides array into smaller sub-arrays based on a pivot element

    • Recursively sorts sub-arrays

    • Combines sorted sub-arrays to get final sorted array

    • Time complexity: O(n log n) on average, O(n^2) worst case

    • Example: [3, 6, 8, 10, 1, 2, 1] -> [1, 1, 2, 3, 6, 8, 10]

  • Answered by AI
  • Q2. Modified rotate a matrix
  • Ans. 

    Rotate a matrix by 90 degrees in place

    • Transpose the matrix

    • Reverse each row of the transposed matrix

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - study well and at the end, they would not hire anyone

Skills evaluated in this interview

Gameskraft Interview FAQs

How many rounds are there in Gameskraft SDE (Software Development Engineer) interview?
Gameskraft interview process usually has 3 rounds. The most common rounds in the Gameskraft interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Gameskraft SDE (Software Development Engineer) interview?

Some of the top questions asked at the Gameskraft SDE (Software Development Engineer) interview -

  1. K DISTANCE NODES FROM CURRENT N...read more
  2. LCA OF THE BINARY T...read more

Tell us how to improve this page.

Gameskraft SDE (Software Development Engineer) Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Innovaccer Interview Questions
3.4
 • 81 Interviews
NoBrokerHOOD Interview Questions
3.2
 • 57 Interviews
Vyapar Interview Questions
3.4
 • 53 Interviews
Grey Orange Interview Questions
3.2
 • 38 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
View all
Gameskraft SDE (Software Development Engineer) Salary
based on 7 salaries
₹14 L/yr - ₹37 L/yr
16% less than the average SDE (Software Development Engineer) Salary in India
View more details

Gameskraft SDE (Software Development Engineer) Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
70 salaries
unlock blur

₹15 L/yr - ₹40 L/yr

Senior Software Engineer
66 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
Did you find this page helpful?
Yes No
write
Share an Interview