Upload Button Icon Add office photos
Engaged Employer

i

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

IDZ Digital Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

IDZ Digital Interview Questions and Answers

Updated 21 Apr 2025
Popular Designations

17 Interview questions

A Game Developer was asked 2mo ago
Q. What are addressables?
Ans. 

Addressables are a Unity feature for managing and loading game assets efficiently at runtime.

  • Addressables allow developers to load assets by a unique address rather than a file path.

  • They support asynchronous loading, improving game performance and reducing load times.

  • Example: Loading a character model using its address instead of a direct reference.

  • Addressables can manage asset bundles automatically, simplifying a...

View all Game Developer interview questions
A Game Developer was asked 2mo ago
Q. What are the OOPs concepts?
Ans. 

OOP concepts include encapsulation, inheritance, polymorphism, and abstraction, forming the foundation of object-oriented programming.

  • Encapsulation: Bundling data and methods that operate on the data within a single unit (class). Example: A 'Car' class with properties like 'speed' and methods like 'accelerate()'.

  • Inheritance: Mechanism to create a new class using properties and methods of an existing class. Example...

View all Game Developer interview questions
An Android App Developer was asked 6mo ago
Q. What is the Fibonacci series?
Ans. 

The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

  • The series starts with 0 and 1, and each subsequent number is the sum of the two preceding numbers.

  • The Fibonacci series: 0, 1, 1, 2, 3, 5, 8, 13, 21, ...

  • It is a common mathematical sequence used in various algorithms and applications.

View all Android App Developer interview questions
A Software Developer Intern was asked 8mo ago
Q. Write a program to generate the Fibonacci sequence.
Ans. 

Fibonacci series program generates a sequence where each number is the sum of the two preceding ones.

  • Start with two initial numbers, usually 0 and 1.

  • Add the two previous numbers to get the next number in the sequence.

  • Repeat this process to generate the Fibonacci series.

View all Software Developer Intern interview questions
A Digital Marketing Executive was asked 9mo ago
Q. What are the differences between do-follow and no-follow links in SEO?
Ans. 

Do-follow and no-follow links are crucial in SEO, influencing how search engines perceive and rank web pages.

  • Do-follow links pass link equity, helping improve a site's authority. Example: A link from a reputable site like Wikipedia.

  • No-follow links do not pass link equity, indicating to search engines not to consider them for ranking. Example: Links in blog comments.

  • Using a mix of both types of links can create a n...

View all Digital Marketing Executive interview questions
A Software Developer was asked 9mo ago
Q. What are the differences between an array and an ArrayList?
Ans. 

Arrays are fixed in size, while ArrayLists can dynamically resize. Arrays are faster for accessing elements, while ArrayLists offer more flexibility.

  • Arrays have a fixed size, while ArrayLists can dynamically resize.

  • Arrays are faster for accessing elements, while ArrayLists offer more flexibility in terms of adding, removing, and manipulating elements.

  • Example: String[] namesArray = new String[5]; ArrayList<Strin...

View all Software Developer interview questions
A Software Developer was asked 12mo ago
Q. Write a program to calculate the factorial of a number using recursion.
Ans. 

Factorial calculation using recursion in a programming language

  • Define a function that takes an integer as input

  • Base case: if input is 0, return 1

  • Recursive case: return input multiplied by factorial of input-1

  • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = ... = 5 * 4 * 3 * 2 * 1 = 120

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer Trainee was asked 12mo ago
Q. Area of a table?
Ans. 

The area of a table is the measurement of the surface space it occupies.

  • To calculate the area of a table, you need to measure the length and width of the table and then multiply the two measurements together.

  • For example, if a table is 3 feet long and 2 feet wide, the area would be 3 x 2 = 6 square feet.

  • The area of a table is important for determining how much space it will take up in a room or how many items can b...

View all Software Developer Trainee interview questions
A Software Developer Trainee was asked 12mo ago
Q. How many ways can we measure the distance between two walls?
Ans. 

There are various methods to measure the distance between two walls, including direct measurement and using tools.

  • 1. Direct Measurement: Use a tape measure to measure the distance directly between the two walls.

  • 2. Laser Distance Measure: Utilize a laser device for precise measurements, especially in hard-to-reach areas.

  • 3. Trigonometry: Measure the distance indirectly using angles and the lengths of other sides in ...

View all Software Developer Trainee interview questions
A Software Developer Intern was asked 12mo ago
Q. How do you solve problems using loops?
Ans. 

Loops are fundamental in programming for iterating over data structures and performing repetitive tasks efficiently.

  • Use 'for' loops for a known number of iterations. Example: for (int i = 0; i < 10; i++) { /* code */ }

  • Use 'while' loops when the number of iterations is not known beforehand. Example: while (condition) { /* code */ }

  • Nested loops can be used for multi-dimensional data structures. Example: for (int ...

View all Software Developer Intern interview questions

IDZ Digital Interview Experiences

23 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

20 question were asked

Round 2 - Case Study 

Marketing team ho gives you case study question

Round 3 - HR 

(2 Questions)

  • Q1. Weakness n strength
  • Q2. About family members n there job
Round 4 - Behavioral 

(2 Questions)

  • Q1. Do follow n no follow of seo
  • Ans. 

    Do-follow and no-follow links are crucial in SEO, influencing how search engines perceive and rank web pages.

    • Do-follow links pass link equity, helping improve a site's authority. Example: A link from a reputable site like Wikipedia.

    • No-follow links do not pass link equity, indicating to search engines not to consider them for ranking. Example: Links in blog comments.

    • Using a mix of both types of links can create a natura...

  • Answered by AI
  • Q2. Full time job or internship
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Systematic interview test

Round 2 - One-on-one 

(1 Question)

  • Q1. What is java and oops concepts
  • Ans. 

    Java is a popular programming language used for developing various applications. OOPs concepts refer to Object-Oriented Programming principles.

    • Java is a high-level, class-based, object-oriented programming language.

    • OOPs concepts include Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation refers to bundling data and meth...

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

Some basic aptitude and quants questions were asked with 2 coding questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic questions on oops
  • Q2. Exception and exception handling
Round 3 - Gaming round 

(2 Questions)

  • Q1. Solve problems by using Function
  • Ans. 

    Using functions to solve problems enhances code reusability and organization, making it easier to manage complex tasks.

    • Functions encapsulate code, allowing for easier debugging and testing. Example: A function to calculate the factorial of a number.

    • They promote code reusability. Example: A function to sort an array can be reused for different datasets.

    • Functions can take parameters, making them flexible. Example: A func...

  • Answered by AI
  • Q2. Solve problems using loops
  • Ans. 

    Loops are fundamental in programming for iterating over data structures and performing repetitive tasks efficiently.

    • Use 'for' loops for a known number of iterations. Example: for (int i = 0; i < 10; i++) { /* code */ }

    • Use 'while' loops when the number of iterations is not known beforehand. Example: while (condition) { /* code */ }

    • Nested loops can be used for multi-dimensional data structures. Example: for (int i = 0...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Just basic hr questions
Round 5 - Behavioral 

(1 Question)

  • Q1. Reasoning questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

An aptitude and coding test conducted simultaneously.

Round 2 - Technical 

(1 Question)

  • Q1. What is the Fibonacci series?
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • The series starts with 0 and 1, and each subsequent number is the sum of the two preceding numbers.

    • The Fibonacci series: 0, 1, 1, 2, 3, 5, 8, 13, 21, ...

    • It is a common mathematical sequence used in various algorithms and applications.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

10 reasoning questions and 3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Wap for factorial with recurrsion
  • Ans. 

    Factorial calculation using recursion in a programming language

    • Define a function that takes an integer as input

    • Base case: if input is 0, return 1

    • Recursive case: return input multiplied by factorial of input-1

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = ... = 5 * 4 * 3 * 2 * 1 = 120

  • Answered by AI
  • Q2. Opps and basic core Java questions

Software Developer Interview Questions & Answers

user image Raja Pandiyan

posted on 4 Jun 2024

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

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude only think out of box

Round 2 - One-on-one 

(2 Questions)

  • Q1. Static and final difference
  • Ans. 

    Static variables belong to the class itself, while final variables cannot be changed after initialization.

    • Static variables are shared among all instances of a class

    • Final variables cannot be reassigned once initialized

    • Static variables are initialized only once at the start of the program

    • Final variables must be initialized when declared

  • Answered by AI
  • Q2. Patterns problem
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self?
  • Q2. Checking english fluency

Interview Preparation Tips

Interview preparation tips for other job seekers - It's good company, friendly HR and interviewer.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude with 2 easy coding questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic java oops , exception questions
  • Q2. And few easy SQL questions were asked
Round 3 - HR 

(2 Questions)

  • Q1. Basic HR questions like tell me about yourself and
  • Q2. What's your strength and weaknesses ?
  • Ans. 

    My strength is problem-solving and my weakness is time management.

    • Strength: Strong problem-solving skills - able to analyze complex issues and come up with effective solutions

    • Weakness: Time management - sometimes struggle with prioritizing tasks and meeting deadlines

  • Answered by AI
Round 4 - Behavioral 

(3 Questions)

  • Q1. * this is not a technical round * logical questions were asked like how many ways can we measure distance between two walls ?
  • Ans. 

    There are various methods to measure the distance between two walls, including direct measurement and using tools.

    • 1. Direct Measurement: Use a tape measure to measure the distance directly between the two walls.

    • 2. Laser Distance Measure: Utilize a laser device for precise measurements, especially in hard-to-reach areas.

    • 3. Trigonometry: Measure the distance indirectly using angles and the lengths of other sides in a tri...

  • Answered by AI
  • Q2. Area of a table?
  • Ans. 

    The area of a table is the measurement of the surface space it occupies.

    • To calculate the area of a table, you need to measure the length and width of the table and then multiply the two measurements together.

    • For example, if a table is 3 feet long and 2 feet wide, the area would be 3 x 2 = 6 square feet.

    • The area of a table is important for determining how much space it will take up in a room or how many items can be pla...

  • Answered by AI
  • Q3. Count number of hair in your head

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident you can easily crack this interview.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Assignment 

Was assigned to create a chess game with all the possible moves.

Round 2 - Technical 

(4 Questions)

  • Q1. Related to unity, like what is sprite? what is ray casting? what is mesh? What are UI elements? What are the advantages of using UI elements?
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of removing unnecessary details and focusing on essential characteristics.

    • Abstraction allows developers to work at a higher level of understanding without needing to worry about specific implementation details.

    • It helps in simplifying complex systems by breaking them down into smaller, more manageable parts.

    • For example, in programming, object-oriented programming languages use abstraction to c...

  • Answered by AI
  • Q3. What is OOPS? Various concepts of OOPS
  • Ans. 

    OOPS stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects, which can contain data and code.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object)

    • Inheritance: Ability of a class to inherit properties and behavior from another class

    • Polymorphism: Ability to present the same interface for different data types

    • Abstraction: Hiding the compl...

  • Answered by AI
  • Q4. What is a class and object?
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming. An object is an instance of a class.

    • A class defines the properties and behaviors of objects.

    • An object is a specific instance of a class.

    • Objects can have their own unique data and methods, while classes provide a template for creating objects.

    • Example: Class 'Car' may have properties like 'color' and 'model', while an object of class 'Car' could ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - learn various concepts used in unity and learn about OOPS
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions along with 2 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Fibbonaci series program
  • Ans. 

    Fibonacci series program generates a sequence where each number is the sum of the two preceding ones.

    • Start with two initial numbers, usually 0 and 1.

    • Add the two previous numbers to get the next number in the sequence.

    • Repeat this process to generate the Fibonacci series.

  • Answered by AI
  • Q2. Questions based on OOPS concepts, inheritance and reccursion
Round 3 - HR 

(1 Question)

  • Q1. Basic questions about you and your hobbies

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Simple logic and maths based questions along with coding round

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on string literals
  • Q2. Array vs arraylist
  • Ans. 

    Arrays are fixed in size, while ArrayLists can dynamically resize. Arrays are faster for accessing elements, while ArrayLists offer more flexibility.

    • Arrays have a fixed size, while ArrayLists can dynamically resize.

    • Arrays are faster for accessing elements, while ArrayLists offer more flexibility in terms of adding, removing, and manipulating elements.

    • Example: String[] namesArray = new String[5]; ArrayList<String>...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. My strength and weaknesses
  • Q2. Past work experiences if any
  • Ans. 

    I have worked as a software developer for 3 years at XYZ company.

    • Developed web applications using Java, Spring, and AngularJS

    • Collaborated with team members to design and implement new features

    • Participated in code reviews and testing processes

    • Resolved technical issues and provided support to end users

  • Answered by AI

Skills evaluated in this interview

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 IDZ Digital?
Ask anonymously on communities.

IDZ Digital Interview FAQs

How many rounds are there in IDZ Digital interview?
IDZ Digital interview process usually has 3-4 rounds. The most common rounds in the IDZ Digital interview process are Aptitude Test, Coding Test and HR.
How to prepare for IDZ Digital 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 IDZ Digital. The most common topics and skills that interviewers at IDZ Digital expect are Games, Gaming, Photoshop, Java and Illustrator.
What are the top questions asked in IDZ Digital interview?

Some of the top questions asked at the IDZ Digital interview -

  1. Calculate the length of a table using a bottle, bike , tire , ball. How will yo...read more
  2. * this is not a technical round * logical questions were asked like how many wa...read more
  3. What is OOPS? Various concepts of O...read more
How long is the IDZ Digital interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 24 interview experiences

Difficulty level

Easy 35%
Moderate 65%

Duration

Less than 2 weeks 82%
2-4 weeks 18%
View more

Interview Questions from Similar Companies

Junglee Games Interview Questions
3.3
 • 36 Interviews
Zupee Interview Questions
3.5
 • 15 Interviews
Lakshya Digital Interview Questions
3.9
 • 14 Interviews
ChicMic Interview Questions
4.4
 • 11 Interviews
Games2Win Interview Questions
2.3
 • 8 Interviews
Kwalee India Interview Questions
3.1
 • 7 Interviews
Tencent Interview Questions
4.6
 • 7 Interviews
View all

IDZ Digital Reviews and Ratings

based on 59 reviews

3.6/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

2.9

Salary

3.3

Job security

3.9

Company culture

2.9

Promotions

3.6

Work satisfaction

Explore 59 Reviews and Ratings
Google Ads Executive

Mumbai

1-2 Yrs

₹ 2.5-4.5 LPA

Digital Marketing Executive

Thane

0-3 Yrs

Not Disclosed

Paid Ads Marketer

Mumbai

1-2 Yrs

₹ 3-4 LPA

Explore more jobs
Software Developer
59 salaries
unlock blur

₹2.3 L/yr - ₹7.2 L/yr

Graphic Artist
20 salaries
unlock blur

₹1.2 L/yr - ₹3.7 L/yr

Digital Marketer
18 salaries
unlock blur

₹2.1 L/yr - ₹7.4 L/yr

3D Artist
12 salaries
unlock blur

₹1.4 L/yr - ₹4 L/yr

Game Developer
10 salaries
unlock blur

₹1.9 L/yr - ₹6.6 L/yr

Explore more salaries
Compare IDZ Digital with

Junglee Games

3.3
Compare

Sportz Interactive

2.9
Compare

Head Digital Works

3.8
Compare

Zupee

3.5
Compare
write
Share an Interview