Upload Button Icon Add office photos

Filter interviews by

Comcast Director Interview Questions and Answers for Experienced

Updated 19 Mar 2024

Comcast Director Interview Experiences for Experienced

1 interview found

Director Interview Questions & Answers

user image Anonymous

posted on 19 Mar 2024

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

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Mostly on what ur experience is
Round 2 - Group Discussion 

General behavior qustions

Round 3 - HR 

(1 Question)

  • Q1. Compensation and joining dates .... nothing else

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. What is JWT token and difference between OUTH2 and JWT
  • Ans. 

    JWT token is a JSON Web Token used for authentication and authorization. OAuth2 is an authorization framework.

    • JWT token is a compact and self-contained way to transmit information between parties as a JSON object.

    • OAuth2 is an authorization framework that enables a third-party application to obtain limited access to an HTTP service.

    • JWT token is used for authentication and authorization, while OAuth2 is used for authoriz...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Personal info and project work

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Some basic level of dsa questions like sorting and reverse a linked list and some javascript question

Round 2 - Technical 

(1 Question)

  • Q1. It was totally based on your project and resume
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sort linkedlist
  • Ans. 

    Sort a linked list

    • Use merge sort or quick sort for efficient sorting

    • Implement a sorting algorithm that works well with linked lists

    • Consider the time and space complexity of the sorting algorithm

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic questions

Skills evaluated in this interview

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

(2 Questions)

  • Q1. How to handle exception?
  • Ans. 

    Handle exceptions by using try-catch blocks to gracefully manage errors in code execution.

    • Use try-catch blocks to catch exceptions and handle them appropriately.

    • Throw custom exceptions when necessary to provide more specific error information.

    • Use finally block to execute code that should always run, regardless of whether an exception is thrown.

    • Avoid catching generic exceptions like Exception class, instead catch specif...

  • Answered by AI
  • Q2. What is inheritance?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Allows for code reusability by creating a new class based on an existing class

    • Derived class inherits properties and behaviors of the base class

    • Supports the 'is-a' relationship, where a derived class is a specialized version of the base class

  • Answered by AI

Skills evaluated in this interview

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

Questions were asked

Round 2 - Coding Test 

Dsa dp, graphs and many more questions from arrays and linked list were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - No
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2023. There were 5 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 - Aptitude Test 

General aptitude questions on Cocubes Platform of 60 minutes

Round 3 - Technical 

(4 Questions)

  • Q1. DSA question on strings and linked list
  • Q2. Projects and Resume Discussion
  • Q3. Puzzle (Two bulbs)
  • Q4. OOP concepts - pillars of OOP
  • Ans. 

    The pillars of OOP are encapsulation, inheritance, and polymorphism.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a new class to inherit properties and behavior from an existing class.

    • Polymorphism: The ability for objects of different classes to respond to the same message in different ways.

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Techno-Managerial Round (Discussion on Projects and Resume)
  • Q2. Details of previous internships and about the offered role
Round 5 - HR 

(1 Question)

  • Q1. General HR questions about introduction and compensation discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude test

Round 2 - Coding Test 

Window slider on a stack/queue

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

Basi aptitude and coding mcq

Round 2 - Technical 

(1 Question)

  • Q1. What is hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap is part of the Java Collections framework.

    • It uses hashing to store and retrieve elements efficiently.

    • Keys in a HashMap must be unique, but values can be duplicated.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI

I applied via LinkedIn and was interviewed in Aug 2022. There were 5 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 - Technical 

(1 Question)

  • Q1. Coin change problem and loop in linked list
  • Ans. 

    Coin change problem involves finding the minimum number of coins required to make a given amount of change. Loop in linked list is a traversal technique.

    • Coin change problem can be solved using dynamic programming approach

    • Loop in linked list can be implemented using a while loop or a for loop

    • Coin change problem can be extended to include finding the actual coins used to make the change

    • Loop in linked list can be used to ...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Valid parenthesis and min stack problem
  • Ans. 

    Valid parenthesis and min stack problem

    • Valid Parenthesis problem involves checking if a given string of parentheses is valid or not

    • Min Stack problem involves designing a stack that supports push, pop, top, and retrieving the minimum element in constant time

    • Both problems can be solved using stack data structure

    • Valid Parenthesis problem can be solved by pushing opening brackets onto the stack and popping them when a clos...

  • Answered by AI
Round 4 - Behavioral 

(1 Question)

  • Q1. Show your confidence about tech skills.
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion and Normal HR questions

Interview Preparation Tips

Topics to prepare for Dish Network Software Engineer interview:
  • C++
  • Image Processing
  • Linux
  • Data Structures
  • OOPS
Interview preparation tips for other job seekers - Go through most do coding questions on GFG.

Skills evaluated in this interview

Comcast Interview FAQs

How many rounds are there in Comcast Director interview for experienced candidates?
Comcast interview process for experienced candidates usually has 3 rounds. The most common rounds in the Comcast interview process for experienced candidates are One-on-one Round, Group Discussion and HR.

Tell us how to improve this page.

Comcast Director Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

PVR Inox Interview Questions
4.0
 • 162 Interviews
Verizon Interview Questions
4.1
 • 110 Interviews
Cinépolis Interview Questions
3.9
 • 58 Interviews
AT&T Interview Questions
4.1
 • 52 Interviews
HT Media Interview Questions
3.3
 • 49 Interviews
DAZN Interview Questions
2.8
 • 30 Interviews
Dish Network Interview Questions
3.5
 • 29 Interviews
View all

Fast track your campus placements

View all
Comcast Director Salary
based on 7 salaries
₹19.4 L/yr - ₹75 L/yr
20% less than the average Director Salary in India
View more details
Development Engineer 2
149 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Development Engineer
124 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Development Engineer 3
114 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
112 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Engineer
68 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Comcast with

AT&T

4.1
Compare

Verizon

4.1
Compare

The Walt Disney Company

4.0
Compare

Time Warner Cable ( Now Known as Spectrum)

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