Upload Button Icon Add office photos

ZEE5

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

ZEE5 Software Development Engineer Interview Questions and Answers

Updated 11 Sep 2022

ZEE5 Software Development Engineer Interview Experiences

1 interview found

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

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Jun 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core php, redis, solr

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain what projects you have worked on.

I applied via Naukri.com and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. SQL Joins
  • Q2. Swap 2 numbers without 3rd variable
  • Ans. 

    Swapping two numbers without using a third variable

    • Use arithmetic operations to swap the values

    • Add the two numbers and store the result in the first variable

    • Subtract the second number from the result and store it in the second variable

    • Subtract the second variable from the first variable to get the original value of the second variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st Round : Long set of Aptitude questions
2nd Round : Technical Interview
3rd Round : Technical Interview and HR questions

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 before Nov 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the use of namespace in Php?
  • Ans. 

    Namespace in PHP is used to avoid naming conflicts between classes, functions, and variables.

    • Namespace allows grouping of related classes, functions, and variables under a common name.

    • It helps in organizing code and makes it easier to maintain.

    • Namespace can be declared using the 'namespace' keyword followed by the namespace name.

    • Example: namespace MyNamespace;

    • To use a class or function from a namespace, we need to spec...

  • Answered by AI
  • Q2. Difference between interface and abstract class
  • Ans. 

    Interface defines only method signatures while abstract class can have both method signatures and implementations.

    • An interface can be implemented by multiple classes while an abstract class can only be extended by one class.

    • An abstract class can have constructors while an interface cannot.

    • An abstract class can have non-abstract methods while an interface can only have abstract methods.

    • An abstract class can have instanc...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong oops skills expected
For Php, get knowledge about latest concepts

Skills evaluated in this interview

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

I applied via Indeed and was interviewed before Jan 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 

Practical module need to solve and execute the progream

Round 3 - Technical 

(3 Questions)

  • Q1. Need the linux server commands and OOP concept, CSS, etc
  • Q2. All relavent of the oops, css, aws, mysql related questions. Eg: Primary key vs Unique. Write the joins query for left and inner join. Cat command for linux server. hide vs invisible. block ns display Abs...
  • Q3. Write a program for login page with using session Database design for one example given by interviewer Palindrome program
  • Ans. 

    Program for login page with session and palindrome program

    • Create a login page with HTML and CSS

    • Use PHP to handle form submission and validate user credentials

    • Create a session for the logged-in user

    • Design a database to store user information

    • Write a program to check if a given string is a palindrome

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. For our last company of the project details and module discussion. And Technology tech interview

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. You must say your answer with confident
2. Basic technic questions and answer needs to know for your field
3. You should develop your's developing skills with relatime exmples. Like Duplicate removing, reverse the input, Loop and Loop with index concept, OOPs concepts (optional if this has yours field)
4. If you had work with database means, better you know the design of the db and connecion through the program.
5. API intergrations and UI design (optional If you had work in that otherwise needs to know the basic things)
6. Domain knowledge is most important. Example what kind of projects done by your office. If you are fresher means, better you have to search, which company you are going to interview, know those companies project, technics, and tools.

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sdlc process, MVC architecture, entity framework, SQL queries
  • Q2. SQL queries, state vs stateless, url

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basics alone. Work experience is important
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is closure
  • Ans. 

    A closure is a function that has access to its own scope, the scope in which it was defined, and the global scope.

    • A closure is created when a function is defined inside another function.

    • The inner function has access to the variables and parameters of the outer function, even after the outer function has finished executing.

    • Closures are useful for creating private variables and functions in JavaScript.

    • They can also be us...

  • Answered by AI
  • Q2. What is Encapsulation
  • Ans. 

    Encapsulation is the process of hiding internal details and providing a public interface for accessing and manipulating data.

    • Encapsulation bundles data and methods together into a single unit.

    • It helps in achieving data abstraction and data hiding.

    • By encapsulating data, we can control access to it and prevent unauthorized modifications.

    • Encapsulation promotes code reusability and maintainability.

    • Example: A class in objec...

  • Answered by AI
  • Q3. What is Inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows for code reuse and promotes the concept of hierarchy.

    • The class that is being inherited from is called the superclass or base class.

    • The class that inherits from the superclass is called the subclass or derived class.

    • The subclass can access the public and protected members of the s...

  • Answered by AI
  • Q4. What is Abstraction
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details.

    • Abstraction involves hiding unnecessary details and exposing only relevant information.

    • It allows developers to create models or representations that capture the essential aspects of a system.

    • Abstraction helps in managing complexity, improving code reusability, and enhancing maintainability.

    • For example, in object-oriented programm...

  • Answered by AI
  • Q5. What is Polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

    • Polymorphism is a fundamental concept in object-oriented programming.

    • It enables code reusability and flexibility.

    • Polymorphism can be achieved through method overriding and method overloading.

    • Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They can ...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. C#,Mvc core,SQL server,vue js,
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Assignment 

They will give javascript coding(based on your role)question we need to solve and submit the solution

Round 2 - Technical 

(1 Question)

  • Q1. Asked basic js questions and some logical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect in the basic conscepts
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. Regarding skills set
Round 2 - Coding Test 

Had technical round with coding

Round 3 - One-on-one 

(1 Question)

  • Q1. Had discussion on skills , i joined as a fresher
Contribute & help others!
anonymous
You can choose to be anonymous

ZEE5 Interview FAQs

How many rounds are there in ZEE5 Software Development Engineer interview?
ZEE5 interview process usually has 3 rounds. The most common rounds in the ZEE5 interview process are Coding Test, Technical and HR.

Recently Viewed

SALARIES

Eros Now -

SALARIES

Disney+ Hotstar

LIST OF COMPANIES

Discover companies

Find best workplace

SALARIES

Eros Now -

No Salaries

SALARIES

Eros Now -

INTERVIEWS

Disney+ Hotstar

No Interviews

INTERVIEWS

Disney+ Hotstar

No Interviews

INTERVIEWS

Disney+ Hotstar

No Interviews

SALARIES

Eros Now -

SALARIES

ZEE5

No Salaries

Tell us how to improve this page.

Interview Questions from Similar Companies

Kantar Interview Questions
3.5
 • 96 Interviews
Aptara Interview Questions
3.3
 • 62 Interviews
Pole To Win Interview Questions
3.4
 • 54 Interviews
Xdbs Interview Questions
3.2
 • 39 Interviews
View all
Manager
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Manager
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Marketing Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Scientist
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 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
Did you find this page helpful?
Yes No
write
Share an Interview