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

Deltatech Gaming Interview Questions and Answers

Updated 5 Nov 2024

Deltatech Gaming Interview Experiences

Popular Designations

4 interviews 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

Graduate Engineer Trainee (Get) Interview Questions asked at other Companies

Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Difference between Otto cycle and Diesel cycle? What is the process of both cycle and what is the effeciency of both cycle ? Which one is good in effeciency? Q:3 Difference between... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain a topic of your choice.
  • Ans. 

    Explanation of customer retention strategies

    • Customer retention is the process of engaging existing customers to continue buying products or services from a company

    • Strategies include personalized communication, loyalty programs, excellent customer service, and feedback collection

    • For example, sending personalized emails with product recommendations based on past purchases can increase customer retention rates

  • Answered by AI
  • Q2. Your expectations from us.
  • Ans. 

    I expect a supportive work environment, opportunities for growth, and clear communication.

    • Supportive work environment where feedback is valued

    • Opportunities for growth and advancement within the company

    • Clear communication regarding expectations and goals

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it real. Don't throw jargons.

Customer Retention Executive Interview Questions asked at other Companies

Q1. How many man power and Areas are handling? Would you able to traveling?
View answer (1)
Deltatech Gaming Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic questions related to career history, growth, expectations
Round 2 - Technical 

(1 Question)

  • Q1. Technical situation based questions related to Project Management

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm, listen properly, articulate and then only speak

Project Manager Intern Interview Questions asked at other Companies

Q1. In Case you are Project Manager and there is a delay in delivery of Deliverables, how would you explain it to the client?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2022. There were 4 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 Resume tips
Round 2 - Coding Test 

Sql and basic python

Round 3 - Technical 

(1 Question)

  • Q1. General question about data knowledge
Round 4 - HR 

(1 Question)

  • Q1. Normal bargain for salary

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

Deltatech Gaming interview questions for popular designations

 Project Manager Intern

 (1)

 Business Analyst

 (1)

 Graduate Engineer Trainee (Get)

 (1)

 Customer Retention Executive

 (1)

Interview questions from similar companies

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.

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.

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

DSA, problem solving

Round 2 - Case Study 

System design interview and prior experience in projects

Round 3 - Culture fit 

(2 Questions)

  • Q1. What was the toughest problem you encountered in your previous assignments ?
  • Q2. Given a choice, what would you have done differently in your previous assignments ?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Three coding online assessments - screening round.

Round 2 - Coding Test 

Two to three coding questions based on dynamic programming.

Round 3 - Technical 

(1 Question)

  • Q1. Resume based and computer network
Round 4 - HR 

(1 Question)

  • Q1. Simple hr question

Interview Preparation Tips

Interview preparation tips for other job seekers - If clear coding is improved, the chances of being selected will increase.
Contribute & help others!
anonymous
You can choose to be anonymous

Deltatech Gaming Interview FAQs

How many rounds are there in Deltatech Gaming interview?
Deltatech Gaming interview process usually has 2-3 rounds. The most common rounds in the Deltatech Gaming interview process are Technical, Coding Test and HR.
How to prepare for Deltatech Gaming 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 Deltatech Gaming. The most common topics and skills that interviewers at Deltatech Gaming expect are Java, Multithreading, Rabbitmq, Angularjs and Redis.
What are the top questions asked in Deltatech Gaming interview?

Some of the top questions asked at the Deltatech Gaming interview -

  1. Technical situation based questions related to Project Managem...read more
  2. DSA on array and string and deep knowledge in...read more
  3. General question about data knowle...read more

Recently Viewed

SALARIES

Trianz

INTERVIEWS

Reliance Games

No Interviews

INTERVIEWS

99Games

No Interviews

INTERVIEWS

Moonfrog Labs

No Interviews

INTERVIEWS

Trianz

No Interviews

JOBS

Trianz

No Jobs

JOBS

Trianz

No Jobs

INTERVIEWS

JetSynthesys

No Interviews

JOBS

99Games

No Jobs

SALARIES

Trianz

Tell us how to improve this page.

Deltatech Gaming Interview Process

based on 6 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Dream11 Interview Questions
3.8
 • 37 Interviews
Games2Win Interview Questions
2.2
 • 6 Interviews
Octro Interview Questions
3.3
 • 5 Interviews
Zynga Interview Questions
3.5
 • 5 Interviews
JetSynthesys Interview Questions
2.6
 • 5 Interviews
99Games Interview Questions
3.1
 • 4 Interviews
Gamezop Interview Questions
3.7
 • 3 Interviews
Reliance Games Interview Questions
2.4
 • 2 Interviews
View all

Deltatech Gaming Reviews and Ratings

based on 76 reviews

3.3/5

Rating in categories

2.9

Skill development

3.3

Work-life balance

3.3

Salary

2.8

Job security

3.0

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 76 Reviews and Ratings
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