Upload Button Icon Add office photos
Engaged Employer

i

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

Deltatech Gaming Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Deltatech Gaming Graduate Engineer Trainee (Get) Interview Questions and Answers

Updated 11 May 2024

Deltatech Gaming Graduate Engineer Trainee (Get) Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basics web development MCQ

Round 2 - Coding Test 

Core knowledge on JS and code snippet

Round 3 - Technical 

(1 Question)

  • Q1. DSA on array and string and deep knowledge in JS
Round 4 - One-on-one 

(1 Question)

  • Q1. It was manager round

Interview questions from similar companies

Data Analyst Interview Questions & Answers

Octro user image Parth Jasathy

posted on 14 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Different question were asked on sql python java

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 

There were two coding questions; one was related to linked lists, and the other was linked to binary trees.

Round 2 - Technical 

(4 Questions)

  • Q1. Can you elaborate on the project discussion you mentioned in your resume?
  • Ans. 

    Developed a web application for tracking inventory and sales data

    • Used React for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

    • Integrated authentication and authorization features for secure access

    • Implemented data visualization using Chart.js

  • Answered by AI
  • Q2. Can you provide the code to reverse a linked list?
  • Ans. 

    Reversing a linked list involves changing the direction of pointers to go from the end to the beginning.

    • Start by initializing three pointers: current, previous, and next.

    • Iterate through the linked list, updating the pointers to reverse the direction of the links.

    • Update the head of the linked list to point to the new first node, which was the original last node.

  • Answered by AI
  • Q3. Some questions were asked regarding the four pillars of Object-Oriented Programming (OOP)?
  • Q4. Questions related to pointers, dangling pointers.
Round 3 - Technical 

(4 Questions)

  • Q1. Program for finding the perfect squares between two numbers.
  • Ans. 

    Program to find perfect squares between two numbers

    • Iterate through numbers between the given range

    • Check if the square root of the number is an integer

    • If yes, then it is a perfect square

  • Answered by AI
  • Q2. What are smart pointers in C++?
  • Ans. 

    Smart pointers in C++ are objects that act like pointers but provide automatic memory management.

    • Smart pointers help prevent memory leaks by automatically managing memory allocation and deallocation.

    • Examples include unique_ptr, shared_ptr, and weak_ptr.

    • unique_ptr is used for exclusive ownership, shared_ptr for shared ownership, and weak_ptr to prevent circular references.

  • Answered by AI
  • Q3. What is mutual exclusion in the context of concurrent programming?
  • Ans. 

    Mutual exclusion is a concept in concurrent programming where only one thread can access a shared resource at a time.

    • Ensures that only one thread can access a critical section of code at a time

    • Prevents race conditions and data corruption

    • Commonly implemented using locks, semaphores, or mutexes

    • Example: Using a mutex to protect a shared variable in a multi-threaded application

  • Answered by AI
  • Q4. What is the process for implementing multithreading?
  • Ans. 

    Implementing multithreading involves creating and managing multiple threads to execute tasks concurrently.

    • Identify the tasks that can be executed concurrently

    • Create and manage multiple threads to execute these tasks simultaneously

    • Use synchronization techniques like locks and semaphores to prevent race conditions

    • Handle communication and coordination between threads

    • Consider thread safety and resource sharing issues

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Aptitude Test 

Basic aptitude test, if you know basic maths you can easily crack it.

I applied via Campus Placement and was interviewed before Mar 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions related to Object oriented programming and data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn with all your efforts. Be confident in what you say. Learn to apply what you have studied, that's what most of the interviewers expect.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

SQL based leetcode medium and hackerrank

Round 2 - Assignment 

Python take home EDA case study assessment

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

(2 Questions)

  • Q1. Search in 2d matrix
  • Ans. 

    Search for a target value in a 2D matrix efficiently.

    • Use binary search on rows to find the potential row where the target value may exist.

    • Then use binary search on that row to find the target value.

  • Answered by AI
  • Q2. Find quadraplets that sum to target
  • Ans. 

    Find quadraplets in an array that sum up to a target value.

    • Use a nested loop to iterate through all possible combinations of quadraplets.

    • Keep track of the sum of each quadraplet and compare it to the target value.

    • Return the quadraplets that match the target sum.

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Nth Greatest Element III (Leetcode)
  • Ans. 

    Find the Nth greatest element in an array without sorting

    • Use a priority queue to keep track of the N greatest elements

    • Iterate through the array and add elements to the priority queue

    • Return the top element from the priority queue as the Nth greatest element

  • Answered by AI
  • Q2. Heater Problem (Leetcode)
  • Ans. 

    Heater Problem - Find minimum radius to cover all houses with heaters

    • Sort the houses and heaters arrays

    • For each house, find the closest heater using binary search

    • Calculate the minimum radius needed to cover all houses

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. SQL based questions
  • Q2. Guesstimate on estimating # users on the application
  • Ans. 

    Estimate the number of users on the application based on market research, user demographics, and industry trends.

    • Consider the total addressable market (TAM) for the application

    • Analyze user demographics and behavior to estimate adoption rate

    • Look at industry benchmarks and competitor data for reference

    • Use surveys, focus groups, and user feedback to gather insights

    • Consider factors like market saturation, growth potential,

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy coding questions

Round 2 - Aptitude Test 

Tough level questions , needed high level of thinking

Interview Preparation Tips

Interview preparation tips for other job seekers - practise apti in a solid manner
Contribute & help others!
anonymous
You can choose to be anonymous

Deltatech Gaming Interview FAQs

How many rounds are there in Deltatech Gaming Graduate Engineer Trainee (Get) interview?
Deltatech Gaming interview process usually has 4 rounds. The most common rounds in the Deltatech Gaming interview process are Aptitude Test, Coding Test and Technical.
What are the top questions asked in Deltatech Gaming Graduate Engineer Trainee (Get) interview?

Some of the top questions asked at the Deltatech Gaming Graduate Engineer Trainee (Get) interview -

  1. DSA on array and string and deep knowledge in...read more
  2. It was manager ro...read more

Recently Viewed

INTERVIEWS

HashedIn by Deloitte

No Interviews

INTERVIEWS

Magna International

No Interviews

INTERVIEWS

HashedIn by Deloitte

No Interviews

INTERVIEWS

HashedIn by Deloitte

No Interviews

INTERVIEWS

Magna International

No Interviews

INTERVIEWS

Magna International

No Interviews

INTERVIEWS

HashedIn by Deloitte

No Interviews

INTERVIEWS

HashedIn by Deloitte

No Interviews

CAMPUS PLACEMENT

Arya College of Engineeringg, Jaipur

INTERVIEWS

HashedIn by Deloitte

No Interviews

Tell us how to improve this page.

Deltatech Gaming Graduate Engineer Trainee (Get) Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Pole To Win Interview Questions
3.4
 • 54 Interviews
Aristocrat Interview Questions
3.8
 • 45 Interviews
Dream11 Interview Questions
3.8
 • 37 Interviews
Light & Wonder Interview Questions
3.8
 • 29 Interviews
PurpleTalk Interview Questions
4.0
 • 27 Interviews
Electronic Arts Interview Questions
4.1
 • 22 Interviews
Games24x7 Interview Questions
3.7
 • 19 Interviews
View all
Deltatech Gaming Graduate Engineer Trainee (Get) Salary
based on 4 salaries
₹6 L/yr - ₹7 L/yr
69% more than the average Graduate Engineer Trainee (Get) Salary in India
View more details

Deltatech Gaming Graduate Engineer Trainee (Get) 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
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior QA Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

CRM Officer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Deltatech Gaming with

Nazara Technologies

3.0
Compare

Dream11

3.8
Compare

Octro

3.3
Compare

Games2Win

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