Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Dish Network Senior Associate 1 Interview Questions and Answers

Updated 2 Oct 2024

Dish Network Senior Associate 1 Interview Experiences

1 interview found

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

Easy to moderate questions

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Linux servers questions, past experience tools amd technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - They will ask many questions but work will something else.

Interview Questionnaire 

1 Question

  • Q1. Store procedure, function, trigger, view, index, table backup,drop, delete, truncate. transaction.

I applied via Naukri.com and was interviewed in Jan 2022. There were 2 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. HR is only for negotiations and yearly increment is 6-7% only, PLI will deduct 10%, phone bill will reimburse upto 1000 as per grade, pickup and drop is for 30km
  • Q2. Nothing so much technical should know the basics and your current workflow. Communication skills is important. Most of the work is for escalation and presentation, mailing, and personality.

Interview Preparation Tips

Interview preparation tips for other job seekers - Second round is from HOD he just check your personality and way of talking attitude and behaviour and you mush know the current company work flow dont try to be over smart simple say no when you dont know the answer
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Technical aspects about linked list,trees, stacks

Round 2 - Group Discussion 

Topic related to humanities

Software Engineer Interview Questions & Answers

DISH TV user image Ujjwal Srivastava

posted on 28 Dec 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Case Study 

I was given a case study to write multiple outputs by lookinginto a program.

I was interviewed in Jan 2022.

Round 1 - Video Call 

(1 Question)

Round duration - 40 Minutes
Round difficulty - Medium

Round 1 was mainly focused on data structures and algorithms ,core java concepts and dbms

  • Q1. You are given a string. What is the minimum number of characters that need to be inserted to convert it into a palindrome?
  • Ans. 

    The minimum number of characters needed to convert a string into a palindrome is the length of the string minus the length of the longest palindromic subsequence of the string.

    • Find the longest palindromic subsequence of the given string.

    • Subtract the length of the longest palindromic subsequence from the length of the original string to get the minimum number of characters needed to convert it into a palindrome.

  • Answered by AI
Round 2 - Video Call 

Round duration - 40 to 50 min
Round difficulty - Medium

Focussed mainly on projects and system design

Round 3 - Video Call 

Round duration - 30 Minutes
Round difficulty - Medium

Managerial round

Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteria1+ year of experienceAirtel interview preparation:Topics to prepare for the interview - 1. Data Structure and algorithms (arrays, queue, stack, LinkedList, Dynamic programming,Graph,Trees) 2. DBMS 3.System Design(might not asked to freshers) 4.Core and advanced Java 5. Computer Networks (not much)6. Operating SystemsTime required to prepare for the interview - 1.5 - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Make you Data Structure and algorithms , Problem solving strong ( use to do some dsa problems on code studio and leetcode daily.
Tip 2 : Practiced Quality questions and mostly asked questions list available on codestudio( used company tags and topic tags) as quality matters more than quantity of questions .
Tip 3 : Give mock interviews, this really helped me as it gives you clearity and builds confidence.
Tip 4 : Read respective company’s interview experiences available on codestudio and other websites before going to actual interview, as this gives you idea about level of interviews and you can prepare beforehand.
Tip 5 : after solving dsa problem .Try to look in discussion section too as you can get more optimised or more efficient approach used by others to solve the problem.
Tip 6 : Prepare important concepts from Operating system,DBMS,System design too as that might also be asked.
Tip 7 : Do atleast 2 quality projects.
Not a Tip But : Lot of quality content available online, whenever felt like stuck with some concepts take help from senior or colleagues ( I use to watch coding ninja shorts by parikh jain whenever felt demotivated or stuck with concepts)

Application resume tips for other job seekers

Tip 1 : Have a concise resume , don't fill your resume with unnecessary details like your address, relationship status etc.
Tip 2 :Resume should not be more than 2 pages( try to make it very concise in 1 page)

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. 1. difference between applicationContext and beanFactory. 2. questions related to synchronization in multi threading.

I was interviewed in Jan 2022.

Round 1 - Video Call 

(3 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

In this round, Interviewer tried to judge if my basics are clear or not. 
He focused majorly on CS fundamentals.
He was pretty cooperative and gave me time after asking questions.

  • Q1. Have you ever solved a complex Java problem on your own?
  • Ans. 

    Yes, I have solved a complex Java problem on my own.

    • I once had to optimize a large-scale Java application by implementing multithreading to improve performance.

    • I successfully debugged a memory leak issue in a Java program by analyzing heap dumps and identifying the root cause.

    • I designed and implemented a custom data structure in Java to efficiently solve a specific problem.

  • Answered by AI
  • Q2. 

    N-th Fibonacci Number Problem Statement

    Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation.

    Since the answer can be very large, return the answer ...

  • Ans. 

    The task is to find the Nth Fibonacci number using matrix exponentiation and return the answer modulo 10^9 + 7.

    • Implement a function to find the Nth Fibonacci number using matrix exponentiation.

    • Return the answer modulo 10^9 + 7 to handle large values.

    • Use the formula F(n) = F(n-1) + F(n-2) with initial values F(1) = F(2) = 1.

    • Optimize the solution to achieve better than O(N) time complexity.

    • Consider solving the problem us...

  • Answered by AI
  • Q3. 

    Swap Kth Elements in an Array

    Given an array ARR of size N, perform the operation to swap the Kth element from the beginning with the Kth element from the end of the array.

    Example:

    Input:
    N = 5, K = 2
    ...
  • Ans. 

    Swap Kth elements in an array with given constraints.

    • Create a function that takes the array, K value, and size of the array as input

    • Swap the Kth element from the beginning with the Kth element from the end

    • Handle edge cases like K being out of bounds or array size being less than 2

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

It was in late evening, interviewer was quite cool and asked me quite basic things about myself.

  • Q1. 

    Covid Vaccination Distribution Problem

    As the Government ramps up vaccination drives to combat the second wave of Covid-19, you are tasked with helping plan an effective vaccination schedule. Your goal is...

  • Ans. 

    Given constraints and rules, maximize vaccines administered on a specific day during a vaccination drive.

    • Iterate through each test case and calculate the maximum number of vaccines administered on the specified day.

    • Distribute the available vaccines evenly across the days while adhering to the rules.

    • Ensure that the sum of vaccines administered does not exceed the maximum allowed.

    • Maximize the vaccines administered on the

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteria7+ CgpaAirtel interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Core fundamentals of CS (DBMS, CS, OS), Aptitude & 2 ProjectsTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Know your project from the core.
Tip 2 : Make your basics of CS fundamentals crystal clear.
Tip 3 : Do all must ask Dsa questions, try to achieve the goal of 5-10 questions everyday.

Application resume tips for other job seekers

Tip 1 : Add your github and other problem solving sites like leetcode and codeforces on your resume. It leaves a good impact.
Tip 2 : Brief your role on the projects.
Tip 3 : Mention your achievements and skills. Again they leave a good impact.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Jun 2022. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is vrrp and harp and how it functions?
  • Ans. 

    VRRP (Virtual Router Redundancy Protocol) and HARP (High Availability Redundancy Protocol) are protocols used for providing redundancy in network routing.

    • VRRP is used to provide a virtual IP address that multiple routers can share, ensuring high availability in case of router failure.

    • HARP is a proprietary protocol developed by Cisco that also provides redundancy by allowing multiple routers to share a virtual IP addres...

  • Answered by AI
  • Q2. What is router and firewall and state difference?
  • Ans. 

    A router is a networking device that forwards data packets between computer networks, while a firewall is a security system that monitors and controls incoming and outgoing network traffic.

    • Router directs traffic between different networks based on IP addresses.

    • Firewall filters network traffic based on predetermined security rules.

    • Routers operate at layer 3 (network layer) of the OSI model, while firewalls operate at la...

  • Answered by AI
  • Q3. What is dwdm and it's components?
  • Ans. 

    DWDM stands for Dense Wavelength Division Multiplexing, a technology used in fiber optic communications.

    • DWDM is a technology that allows multiple data signals to be transmitted simultaneously over a single fiber optic cable.

    • Components of DWDM include lasers, multiplexers, demultiplexers, optical amplifiers, and dispersion compensators.

    • DWDM systems use different wavelengths of light to carry multiple data streams, incre...

  • Answered by AI
  • Q4. Osi reference model explanation?
  • Ans. 

    The OSI reference model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven distinct layers.

    • The OSI model stands for Open Systems Interconnection model.

    • It helps in understanding how different networking protocols work together.

    • Each layer has specific functions and communicates with adjacent layers.

    • Examples of layers include physical layer, data link layer, net

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Bharti Airtel Senior Engineer interview:
  • Routing Protocols
  • MPLS Network
Interview preparation tips for other job seekers - Prepare well for the interview and your job security is here if you are willing to work.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Dish Network Interview FAQs

How many rounds are there in Dish Network Senior Associate 1 interview?
Dish Network interview process usually has 1 rounds. The most common rounds in the Dish Network interview process are Aptitude Test.

Recently Viewed

SALARIES

Reliance Communications

INTERVIEWS

Airtel DTH Services

No Interviews

JOBS

University of Cambridge

No Jobs

INTERVIEWS

Zscaler Softech

No Interviews

JOBS

Tech Stalwart Solution

No Jobs

INTERVIEWS

Zscaler Softech

No Interviews

JOBS

Enterprisedb Software

No Jobs

JOBS

Synersoft Technologies

No Jobs

INTERVIEWS

Bharti Airtel

No Interviews

SALARIES

Saudi Telecom Company

Tell us how to improve this page.

Dish Network Senior Associate 1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Bharti Airtel Interview Questions
4.0
 • 843 Interviews
Vodafone Idea Interview Questions
4.1
 • 553 Interviews
Tata Play Interview Questions
4.0
 • 70 Interviews
HFCL Limited Interview Questions
4.0
 • 60 Interviews
DISH TV Interview Questions
3.5
 • 59 Interviews
Telstra Interview Questions
4.0
 • 48 Interviews
Hathway Interview Questions
3.5
 • 42 Interviews
BT E Serv Interview Questions
4.1
 • 42 Interviews
View all
Senior Engineer
116 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Engineer
63 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
62 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
59 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Dish Network with

Tata Play

4.0
Compare

Airtel DTH Services

4.1
Compare

Videocon d2h

3.9
Compare

SUNDIRECT

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview