Upload Button Icon Add office photos

Filter interviews by

Zee Entertainment Enterprises Interview Questions and Answers

Updated 18 Jun 2025
Popular Designations

23 Interview questions

A Devops Engineer was asked 3mo ago
Q. What is the difference between monitoring and logging?
Ans. 

Monitoring is real-time observation of system performance, while logging is recording events for later analysis.

  • Monitoring involves actively checking system metrics and performance in real-time

  • Logging records events, errors, and activities for later analysis and troubleshooting

  • Monitoring helps in identifying issues as they occur, while logging helps in understanding the root cause of problems

  • Examples: Monitoring C...

View all Devops Engineer interview questions
A Devops Engineer was asked 3mo ago
Q. Networking between k8s and private DB
Ans. 

Networking between Kubernetes and private DB involves configuring network policies, secure connections, and proper access controls.

  • Use Kubernetes network policies to control traffic flow between pods and external resources.

  • Implement secure connections using TLS/SSL to encrypt data in transit.

  • Set up proper access controls and authentication mechanisms to restrict access to the private DB.

  • Consider using service mesh...

View all Devops Engineer interview questions
A Technical Lead was asked 6mo ago
Q. Design a key-value store.
Ans. 

Design a key-value store that efficiently handles data storage, retrieval, and scalability.

  • Data Model: Use a simple key-value pair structure, e.g., { 'user:1001': { 'name': 'Alice', 'age': 30 } }.

  • Storage: Choose between in-memory (e.g., Redis) for speed or disk-based (e.g., LevelDB) for persistence.

  • Scalability: Implement sharding to distribute data across multiple nodes, ensuring load balancing.

  • Consistency: Decide...

View all Technical Lead interview questions
A Software Development Engineer II was asked 8mo ago
Q. What is the difference between an interface and an abstract class?
Ans. 

Interface is a contract with no implementation, while abstract class can have some implementation.

  • Interface can only have abstract methods, while abstract class can have both abstract and non-abstract methods.

  • A class can implement multiple interfaces but can inherit only one abstract class.

  • Interfaces are used to achieve multiple inheritance in Java.

  • Abstract classes can have constructors, while interfaces cannot.

  • Ex...

View all Software Development Engineer II interview questions
A Software Development Engineer II was asked 8mo ago
Q. What are the different states in the Activity lifecycle?
Ans. 

Different states in Activity lifecycle include onCreate, onStart, onResume, onPause, onStop, onDestroy.

  • onCreate - Activity is being created

  • onStart - Activity is becoming visible to the user

  • onResume - Activity is in the foreground and has focus

  • onPause - Activity is partially visible but still running

  • onStop - Activity is no longer visible to the user

  • onDestroy - Activity is being destroyed

View all Software Development Engineer II interview questions
A Manager- Sales planning and Strategy was asked 9mo ago
Q. What is media planning?
Ans. 

Media planning is the process of strategically selecting and scheduling advertising messages in various media channels to reach the target audience.

  • Involves determining the target audience and their media consumption habits

  • Selecting the appropriate media channels such as TV, radio, print, online, etc.

  • Deciding on the timing and frequency of advertising placements

  • Allocating the budget effectively to maximize reach a...

A Video Editor was asked 11mo ago
Q. What type of video editing experience do you have?
Ans. 

I have over 5 years of experience in video editing, specializing in creating engaging content for social media platforms.

  • Proficient in Adobe Premiere Pro and After Effects

  • Skilled in color correction, audio editing, and motion graphics

  • Experience in editing various types of videos including promotional, educational, and event coverage

  • Familiar with optimizing videos for different platforms like YouTube, Instagram, an...

View all Video Editor interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. What is the use of ref?
Ans. 

The 'ref' keyword in C# is used to pass arguments by reference instead of by value.

  • Allows a method to modify the value of the argument passed to it

  • Useful when you want to update the original value of a variable inside a method

  • Can be used with value types and reference types

  • Example: void UpdateValue(ref int num) { num = 10; }

  • Example: int value = 5; UpdateValue(ref value); // value will be 10 after the method call

View all Software Developer interview questions
A Software Developer was asked
Q. What are React Hooks?
Ans. 

React Hooks are functions that let you use state and other React features without writing a class.

  • React Hooks were introduced in React 16.8.

  • They allow you to use state and other React features in functional components.

  • Some commonly used React Hooks are useState, useEffect, useContext, etc.

  • Hooks are more lightweight and easier to understand compared to class components.

View all Software Developer interview questions
A Cloud Engineer was asked
Q. What is a resource group?
Ans. 

A resource group is a logical container in Azure that holds related resources for an application or solution.

  • Resource groups help manage and organize resources in Azure.

  • Resources within a resource group can be managed collectively, such as applying tags or permissions.

  • Resource groups can be used to deploy, manage, and monitor resources as a group.

  • Resource groups can span multiple regions and subscriptions.

  • Deleting...

View all Cloud Engineer interview questions

Zee Entertainment Enterprises Interview Experiences

51 interviews found

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

(2 Questions)

  • Q1. Difference between monitoring and logging
  • Ans. 

    Monitoring is real-time observation of system performance, while logging is recording events for later analysis.

    • Monitoring involves actively checking system metrics and performance in real-time

    • Logging records events, errors, and activities for later analysis and troubleshooting

    • Monitoring helps in identifying issues as they occur, while logging helps in understanding the root cause of problems

    • Examples: Monitoring CPU us...

  • Answered by AI
  • Q2. Networking between k8s and private DB
  • Ans. 

    Networking between Kubernetes and private DB involves configuring network policies, secure connections, and proper access controls.

    • Use Kubernetes network policies to control traffic flow between pods and external resources.

    • Implement secure connections using TLS/SSL to encrypt data in transit.

    • Set up proper access controls and authentication mechanisms to restrict access to the private DB.

    • Consider using service meshes li...

  • Answered by AI

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 23 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Find 3rd transaction of user from uber cab dataset
  • Ans. 

    To find the 3rd transaction of a user from the Uber cab dataset.

    • Identify the user's transactions in the dataset

    • Sort the transactions by date/time

    • Select the 3rd transaction of the user

  • Answered by AI
  • Q2. Find last quarter ordered product from logistics dataset
  • Ans. 

    To find the last quarter ordered product from logistics dataset.

    • Identify the date range for the last quarter

    • Filter the dataset for orders within that date range

    • Identify the product ordered in the last quarter

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Asked more question involved with cte, window function, subqueries
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Invert a binary tree

Round 2 - One-on-one 

(1 Question)

  • Q1. Design kv store
  • Ans. 

    Design a key-value store that efficiently handles data storage, retrieval, and scalability.

    • Data Model: Use a simple key-value pair structure, e.g., { 'user:1001': { 'name': 'Alice', 'age': 30 } }.

    • Storage: Choose between in-memory (e.g., Redis) for speed or disk-based (e.g., LevelDB) for persistence.

    • Scalability: Implement sharding to distribute data across multiple nodes, ensuring load balancing.

    • Consistency: Decide on c...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Introduction, Name
  • Q2. Your expectation, salary

Sdet Lead Interview Questions & Answers

user image Aneesh Garg

posted on 6 Apr 2024

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

(5 Questions)

  • Q1. Inline function
  • Q2. Reified keyword
  • Ans. 

    Reified keyword is a term used in programming languages to represent a concept or entity as an object.

    • Reified keyword is used to treat a concept or entity as an object in programming languages.

    • It allows for easier manipulation and abstraction of concepts in code.

    • For example, in Java, the 'class' keyword can be used to reify a concept as a class.

  • Answered by AI
  • Q3. Cross inline keyword
  • Q4. Jetpack library
  • Q5. Coroutines and suspending function

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical questions.
Kotlin basics
Android components, SDK, launch modes, coroutines, collection framework

Skills evaluated in this interview

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

You will be asked questions regarding DSA and one easy basic questions

Round 2 - Technical 

(2 Questions)

  • Q1. Technical round regarding LLD & HLD
  • Q2. I was asked to design and implement e commerce website
Round 3 - HR 

(1 Question)

  • Q1. Salaray discussions and availability nothing much

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have a proper knowledge about ALL concepts of actually developing a product from the scratch.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell us about yourself
  • Ans. 

    Experienced operations manager with a background in supply chain management and team leadership.

    • Over 5 years of experience in operations management

    • Strong background in supply chain management

    • Proven track record of leading and developing high-performing teams

    • Skilled in process improvement and optimization

    • Excellent communication and problem-solving skills

  • Answered by AI
  • Q2. Let us know the Salary package
Interview experience
3
Average
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected
Round 1 - Coding Test 

Basic dsa questions from leetcode

Round 2 - Technical 

(1 Question)

  • Q1. Basic dsa questions and puzzles
Round 3 - HR 

(1 Question)

  • Q1. They directly explained workculture and asked same questions from previous two questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn basic dsa
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the use of ref?
  • Ans. 

    The 'ref' keyword in C# is used to pass arguments by reference instead of by value.

    • Allows a method to modify the value of the argument passed to it

    • Useful when you want to update the original value of a variable inside a method

    • Can be used with value types and reference types

    • Example: void UpdateValue(ref int num) { num = 10; }

    • Example: int value = 5; UpdateValue(ref value); // value will be 10 after the method call

  • Answered by AI
  • Q2. What are React Hooks
  • Ans. 

    React Hooks are functions that let you use state and other React features without writing a class.

    • React Hooks were introduced in React 16.8.

    • They allow you to use state and other React features in functional components.

    • Some commonly used React Hooks are useState, useEffect, useContext, etc.

    • Hooks are more lightweight and easier to understand compared to class components.

  • Answered by AI

Skills evaluated in this interview

Video Editor Interview Questions & Answers

user image Anonymous

posted on 6 Jul 2024

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

I applied via Referral and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How many years of experience
  • Ans. 

    I have 5 years of experience in video editing.

    • I have worked as a video editor for 5 years.

    • I have experience with various editing software such as Adobe Premiere Pro and Final Cut Pro.

    • I have edited videos for clients in different industries including corporate, entertainment, and education.

    • I am proficient in color correction, audio editing, and motion graphics.

    • I continuously stay updated on the latest trends and techniq...

  • Answered by AI
  • Q2. What type of video editing experience
  • Ans. 

    I have over 5 years of experience in video editing, specializing in creating engaging content for social media platforms.

    • Proficient in Adobe Premiere Pro and After Effects

    • Skilled in color correction, audio editing, and motion graphics

    • Experience in editing various types of videos including promotional, educational, and event coverage

    • Familiar with optimizing videos for different platforms like YouTube, Instagram, and Fac...

  • Answered by AI
Round 2 - Group Discussion 

How many video editing software you learn

Interview Preparation Tips

Interview preparation tips for other job seekers - Graphic designer and video editing I must be needed graphic designer job

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Zee Entertainment Enterprises?
Ask anonymously on communities.

Zee Entertainment Enterprises Interview FAQs

How many rounds are there in Zee Entertainment Enterprises interview?
Zee Entertainment Enterprises interview process usually has 2-3 rounds. The most common rounds in the Zee Entertainment Enterprises interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for Zee Entertainment Enterprises 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 Zee Entertainment Enterprises. The most common topics and skills that interviewers at Zee Entertainment Enterprises expect are Marketing, Digital Marketing, Campaign Management, B2B Sales and Sales.
What are the top questions asked in Zee Entertainment Enterprises interview?

Some of the top questions asked at the Zee Entertainment Enterprises interview -

  1. 3. My one projcet was sentimental analysis that was by LSTM model. So, next que...read more
  2. About business, how to add something for growing busin...read more
  3. What is the difference between interface & abstract cl...read more
How long is the Zee Entertainment Enterprises interview process?

The duration of Zee Entertainment Enterprises 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.1/5

based on 54 interview experiences

Difficulty level

Easy 28%
Moderate 66%
Hard 7%

Duration

Less than 2 weeks 71%
2-4 weeks 18%
4-6 weeks 7%
More than 8 weeks 4%
View more

Interview Questions from Similar Companies

PVR Inox Interview Questions
3.9
 • 182 Interviews
Comcast Interview Questions
3.9
 • 77 Interviews
Cinépolis Interview Questions
3.9
 • 66 Interviews
HT Media Interview Questions
3.2
 • 55 Interviews
DAZN Interview Questions
2.7
 • 35 Interviews
Network 18 Interview Questions
3.5
 • 28 Interviews
Planetcast Interview Questions
3.8
 • 26 Interviews
View all

Zee Entertainment Enterprises Reviews and Ratings

based on 662 reviews

3.5/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

3.2

Salary

2.9

Job security

3.2

Company culture

2.6

Promotions

3.2

Work satisfaction

Explore 662 Reviews and Ratings
Assistant Manager
214 salaries
unlock blur

₹2.2 L/yr - ₹12 L/yr

Senior Manager
148 salaries
unlock blur

₹15 L/yr - ₹26 L/yr

Manager
147 salaries
unlock blur

₹5.5 L/yr - ₹24 L/yr

Associate Director
74 salaries
unlock blur

₹25 L/yr - ₹40 L/yr

Software Developer
47 salaries
unlock blur

₹14 L/yr - ₹20.8 L/yr

Explore more salaries
Compare Zee Entertainment Enterprises with

PVR Inox

3.9
Compare

Cinépolis

3.9
Compare

HT Media

3.2
Compare

The Times of India

3.6
Compare
write
Share an Interview