Upload Button Icon Add office photos

ZEE5

Compare button icon Compare button icon Compare
2.8

based on 30 Reviews

Filter interviews by

ZEE5 Interview Questions and Answers

Updated 19 Jul 2024

ZEE5 Interview Experiences

Popular Designations

6 interviews found

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

(1 Question)

  • Q1. Simple design question for content reading from s3
Round 2 - Coding Test 

DSA leetcode medium , binary search problem

Software Engineer III Interview Questions asked at other Companies

Q1. Find the highest floor, from where if an egg is dropped will not break. k floor building and n eggs are given.
View answer (2)

Manager Retention and CLM Interview Questions & Answers

user image Anonymous

posted on 25 Apr 2024

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Case discussion - digital marketing case
Round 2 - One-on-one 

(1 Question)

  • Q1. General aptitude, business acumen, and role fit evaluation
Round 3 - HR 

(1 Question)

  • Q1. HR cultural fit
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2022. There were 3 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 tips
Round 2 - Coding Test 

Basic DSA questions where sorting algorithms and tree questions were asked.

Round 3 - Technical 

(1 Question)

  • Q1. It was a system design round with the question being how to design a cache on a mobile operating system.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for your dsa questions and also domain specific system design questions.

Mobile Developer Interview Questions asked at other Companies

Q1. 1. What is Virtual DOM in react?
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Dayananda Sagar College of Engineering, Bangalore and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 questions Medium Leetcode

Round 2 - Technical 

(4 Questions)

  • Q1. Questions around basic-easy DSA, operating system, project discussion (not in deep)
  • Q2. Binary Search Related
  • Q3. Sorting(Merge Sort)
  • Q4. Threads and Process
Round 3 - HR 

(1 Question)

  • Q1. Puzzles and Project and HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium Leetcode is enough, operating system and project knowledge

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

ZEE5 interview questions for popular designations

 Mobile Developer

 (1)

 Software Developer

 (1)

 Software Development Engineer

 (1)

 Software Development Test Engineer 3A

 (1)

 Software Engineer III

 (1)

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

I applied via LinkedIn and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Coding Test 

Java basics, Project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Java problem solving

I applied via Campus Placement and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Coding Test 

The first assessment rounds consisted of few mcqs around DBMS, Operating system and 2 coding questions.
One was medium, another one was based on binary search, which was little hard.

Round 2 - Technical 

(1 Question)

  • Q1. This was the technical round. It went for around 1 hour . They asked me questions of dsa. 1. Implement stack and queue and asked me to write few more user defined function in stack template. 2. Sleep sort...
Round 3 - HR 

(1 Question)

  • Q1. 1. Discuss the project 2. 2 puzzles. 3. Few questions from my project 4. Total time- 45 min

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.Prepare DSA.
DSA questions are simple, sometimes they ask only easy leetcode. They do not ask very tough DSA. Just the basics
2. Be ready with OOPs , OS and DBMS

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Abcd dhsjw ejejjejxj
  • Q2. Djdjsjs djsjdjxjc diejd
Round 2 - One-on-one 

(1 Question)

  • Q1. Ffghj ffhhj grgh
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

MCQ's and speech assesment,DSA ,C,Git,Dbms, everything was included and last part u will be able to choose language of your choice i chose java

Round 2 - Technical 

(2 Questions)

  • Q1. For core Java if u have to develop a music app for ex Spotify which concepts can be implemented in java .
  • Q2. AWS,cloud computing autoscaling ,IAM etc

Interview Preparation Tips

Topics to prepare for Nagravision Software Engineer Trainee interview:
  • Github
  • C++
  • Cloud Computing
  • DBMS
  • C
  • Javascript Frameworks
Interview preparation tips for other job seekers - Be thorough with your resumeb
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via AmbitionBox and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Technical aptitude test
  • Q2. Technical about job knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to hv core subject knowledge

Frontend Developer I Interview Questions & Answers

Viacom18 Media user image Anonymous

posted on 23 Aug 2024

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Merge 2 sorted Arrays
  • Ans. 

    Merging two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Use two pointers to iterate through both arrays and compare elements

    • Add the smaller element to the new array and move the pointer for that array

  • Answered by AI
  • Q2. Write polyfill for getElementById
  • Ans. 

    Polyfill for getElementById function in JavaScript

    • Create a function named getElementById

    • Check if the function already exists, if not, create it

    • Use document.querySelector to select the element by ID

    • Return the selected element

  • Answered by AI
  • Q3. What are the new features in React 18 ? Optimisation techinques in React ? Concurrency in React ?
  • Ans. 

    React 18 introduces new features like automatic batching, start transition, and streaming server renderer. It also focuses on performance optimizations and concurrent rendering.

    • New features in React 18 include automatic batching, start transition, and streaming server renderer.

    • Optimization techniques in React 18 involve concurrent rendering, improved scheduling, and reduced re-renders.

    • Concurrency in React 18 allows for...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. HLD round to develop Autocomplete feature End to End with API contracts and architecture.
  • Q2. Remove duplicate characters from a sentence
  • Ans. 

    Remove duplicate characters from a sentence

    • Create an empty array to store unique characters

    • Iterate through each character in the sentence

    • Check if the character is already in the array, if not add it

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare High Level Design rounds and ask what the interviewer actually wants

Skills evaluated in this interview

ZEE5 Interview FAQs

How many rounds are there in ZEE5 interview?
ZEE5 interview process usually has 2-3 rounds. The most common rounds in the ZEE5 interview process are Coding Test, Technical and HR.
How to prepare for ZEE5 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 ZEE5. The most common topics and skills that interviewers at ZEE5 expect are Marketing, Campaign Management, Media Marketing, Digital Marketing and Web Analytics.
What are the top questions asked in ZEE5 interview?

Some of the top questions asked at the ZEE5 interview -

  1. This was the technical round. It went for around 1 hour . They asked me questio...read more
  2. It was a system design round with the question being how to design a cache on a...read more
  3. Questions around basic-easy DSA, operating system, project discussion (not in d...read more

Tell us how to improve this page.

ZEE5 Interview Process

based on 4 interviews in last 1 year

Interview experience

3.5
  
Good

People are getting interviews through

based on 5 ZEE5 interviews
Campus Placement
Job Portal
Referral
40%
20%
20%
20% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Hetero Drugs Interview Questions
3.9
 • 192 Interviews
Kantar Interview Questions
3.6
 • 103 Interviews
Aptara Interview Questions
3.3
 • 61 Interviews
Network 18 Interview Questions
3.4
 • 24 Interviews
Sun TV Network Interview Questions
3.6
 • 12 Interviews
Discovery Inc Interview Questions
3.9
 • 2 Interviews
View all

ZEE5 Reviews and Ratings

based on 30 reviews

2.8/5

Rating in categories

2.7

Skill development

2.4

Work-Life balance

2.8

Salary & Benefits

2.5

Job Security

2.4

Company culture

2.3

Promotions/Appraisal

2.4

Work Satisfaction

Explore 30 Reviews and Ratings
Manager
9 salaries
unlock blur

₹11.5 L/yr - ₹22.3 L/yr

Senior Marketing Manager
7 salaries
unlock blur

₹12 L/yr - ₹26 L/yr

Senior Manager
7 salaries
unlock blur

₹15 L/yr - ₹26 L/yr

Content Manager
7 salaries
unlock blur

₹6.4 L/yr - ₹10.7 L/yr

Data Scientist
6 salaries
unlock blur

₹9 L/yr - ₹15 L/yr

Explore more salaries
Compare ZEE5 with

Sony Pictures Networks

3.8
Compare

Colors TV

5.0
Compare

Sun TV Network

3.6
Compare

Zee Entertainment Enterprises

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview