Upload Button Icon Add office photos

Filter interviews by

Comcast Java Developer Interview Questions and Answers

Updated 2 Nov 2022

Comcast Java Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Oct 2022. There were 2 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 

(3 Questions)

  • Q1. The first round was technical, they asked about basic to advance concepts of java and spring boot
  • Q2. Difference between collecion and collections? questions based on data structures and collection
  • Q3. What is dependency injection and how to achieve that? and what is Inversion of control?
  • Ans. 

    Dependency injection is a design pattern that allows objects to receive dependencies rather than creating them.

    • Dependency injection is a way to achieve loose coupling between objects.

    • It allows for easier testing and maintenance of code.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Inversion of control is a principle that states that the control of object...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Comcast Java Developer interview:
  • Core Java
  • Spring Boot
  • Hibernate
  • Database
  • Data Structures
Interview preparation tips for other job seekers - The first round was mainly focused on core java and advanced java and data structures

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Aptitude Test 

Generale questions about my previous experience

Round 2 - Technical 

(2 Questions)

  • Q1. Leetcode problem solving
  • Q2. Leetcode problem solving 2

Interview Preparation Tips

Interview preparation tips for other job seekers - just prepare ds,practice leetcode
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test nodejs assignnment

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

Create a Movie application on compose using mvvm

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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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. 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
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Just basic DSA round

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on DSA like array and strings.
  • Q2. Computer science fundamentals questions like OOPS concepts

Software Developer Interview Questions & Answers

DAZN user image manoj kumar ramisetty

posted on 28 Jul 2024

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

(2 Questions)

  • Q1. What is my name
  • Ans. 

    The question is asking for your name.

    • Answer with your actual name

    • Be honest and straightforward

    • Avoid giving a fake name or trying to be clever

  • Answered by AI
  • Q2. Salry how much exoected
Round 2 - HR 

(1 Question)

  • Q1. Salary how mych

Interview Questionnaire 

2 Questions

  • Q1. What is difference between interface and abstract class
  • Ans. 

    An interface is a contract that defines the methods that a class must implement, while an abstract class can provide some implementation.

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

    • A class can implement multiple interfaces, but can only inherit from a single abstract class.

    • Interfaces are used to achieve multiple inheritance in Java.

    • Abstract classe...

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

    Enum is a data type that consists of a set of named values.

    • Enums are used to define a set of constants that can be assigned to a variable.

    • They make code more readable and maintainable.

    • Example: enum Color { RED, GREEN, BLUE }

    • Enums can also have values assigned to them, like enum Size { SMALL = 1, MEDIUM = 2, LARGE = 3 }

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

2 Questions - 1 graph and one basic

Round 2 - Technical 

(1 Question)

  • Q1. 2 basic coding questions and questions on OS and DBMS

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics

Comcast Interview FAQs

How many rounds are there in Comcast Java Developer interview?
Comcast interview process usually has 2 rounds. The most common rounds in the Comcast interview process are Resume Shortlist and Technical.
How to prepare for Comcast Java Developer 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 Comcast. The most common topics and skills that interviewers at Comcast expect are Java, Spring Boot, API, Core Java and Hibernate.
What are the top questions asked in Comcast Java Developer interview?

Some of the top questions asked at the Comcast Java Developer interview -

  1. What is dependency injection and how to achieve that? and what is Inversion of ...read more
  2. The first round was technical, they asked about basic to advance concepts of j...read more
  3. Difference between collecion and collections? questions based on data structure...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

PVR Inox Interview Questions
4.0
 • 158 Interviews
Verizon Interview Questions
4.1
 • 112 Interviews
Cinépolis Interview Questions
3.9
 • 56 Interviews
AT&T Interview Questions
4.1
 • 54 Interviews
HT Media Interview Questions
3.3
 • 49 Interviews
DAZN Interview Questions
2.6
 • 29 Interviews
Dish Network Interview Questions
3.5
 • 28 Interviews
View all

Fast track your campus placements

View all
Comcast Java Developer Salary
based on 16 salaries
₹7.5 L/yr - ₹18 L/yr
88% more than the average Java Developer Salary in India
View more details
Development Engineer 2
137 salaries
unlock blur

₹10.1 L/yr - ₹16 L/yr

Development Engineer
124 salaries
unlock blur

₹6.5 L/yr - ₹27 L/yr

Devops Engineer
118 salaries
unlock blur

₹5 L/yr - ₹18.5 L/yr

Development Engineer 3
115 salaries
unlock blur

₹12 L/yr - ₹24.5 L/yr

Data Engineer
67 salaries
unlock blur

₹5.5 L/yr - ₹21 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