Upload Button Icon Add office photos

Filter interviews by

Comcast Software Development Engineer II Interview Questions and Answers

Updated 23 Sep 2024

Comcast Software Development Engineer II Interview Experiences

3 interviews found

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

(3 Questions)

  • Q1. Asked questions on my current project and role
  • Q2. Basics of spring JPA like entity manager, spring eureka
  • Q3. Asked me to solve one basic question where I have to convert a string to integer
Round 2 - One-on-one 

(2 Questions)

  • Q1. Basics of cloud concepts
  • Q2. When to use horizontal scaling and vertical scaling
  • Ans. 

    Horizontal scaling is adding more machines to your pool of resources, while vertical scaling is adding more power (CPU, RAM) to an existing machine.

    • Use horizontal scaling when you need to increase capacity by adding more machines to distribute the load.

    • Use vertical scaling when you need to handle increased load on a single machine by adding more resources like CPU or RAM.

    • Horizontal scaling is more cost-effective and pr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview may seems simple and so the work too. They hired for development engineer but it's just to maintain their old streaming platform. There is no active development work here. Very minor patch fixes on the existing code and there won't be proper growth for developers.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 features and coding question on streams API.
  • Q2. Core Java, OOPS, Spring Boot annotations, Spring framework related questions, SQL, caching, design patterns
Round 2 - HR 

(1 Question)

  • Q1. Basic behavioral questions

Software Development Engineer II Interview Questions Asked at Other Companies

asked in Zepto
Q1. Given 2 large numeric comma seperated strings. You need to calcul ... read more
asked in Zepto
Q2. How many microservices do I own & at what scale they handle t ... read more
asked in Porter
Q3. 1. Given an array find a subset that sums to a given sum K 2. Giv ... read more
Q4. design a LLD of portfolio management system where you can add any ... read more
asked in S&P Global
Q5. Difference between truncate and delete and when we prefer what op ... read more

I appeared for an interview in Apr 2021.

Interview Questionnaire 

1 Question

  • Q1. Questions on C++. Was asked to implement a queue with key and value pair, questions on C++ concepts like oops, shallow and deep copy, function pointers, smart pointer etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and don't crack under pressure. Only 1st technical round is challenging. Other rounds of interview are pretty straight forward.

Interview questions from similar companies

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

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 Campus Placement and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude and graduation based OS, CN, DAA and DBMS questions

Round 2 - HR 

(1 Question)

  • Q1. Psychological warfare, to be honest
Round 3 - Technical 

(1 Question)

  • Q1. Questions on DBMS, CN and DAA

Interview Preparation Tips

Interview preparation tips for other job seekers - Maintain positive attitude and confidence while showcasing yourself. Technical knowledge required is the basics covered. Focus on DBMS & Linux if up for a development based role

I applied via Naukri.com and was interviewed before Oct 2021. There was 1 interview round.

Round 1 - One-on-one 

(7 Questions)

  • Q1. C# abstraction and encapsulation
  • Q2. Reflection and indexers in c#
  • Ans. 

    Reflection and indexers in C#

    • Reflection allows inspecting and manipulating metadata of types, objects, and assemblies at runtime

    • Indexers provide a way to access elements of a class or struct using array-like syntax

    • Reflection can be used to dynamically access and invoke indexers

  • Answered by AI
  • Q3. Difference between ienumerable and iqueryable
  • Ans. 

    IEnumerable is read-only and forward-only while IQueryable is queryable and can be filtered.

    • IEnumerable is used for in-memory collections while IQueryable is used for querying databases.

    • IQueryable is more efficient for large datasets as it allows for server-side filtering.

    • IQueryable extends IEnumerable and adds additional functionality for querying data sources.

    • Example: IEnumerable numbers = new List { 1, 2, 3 }; IQuer

  • Answered by AI
  • Q4. Difference between rank and dense rank in c#
  • Ans. 

    Rank assigns unique numbers to each distinct value, while dense rank assigns consecutive numbers to each distinct value.

    • Rank and DenseRank are used to assign a unique number to each distinct value in a sorted list.

    • Rank assigns a unique number to each distinct value, but leaves gaps for ties.

    • DenseRank assigns consecutive numbers to each distinct value, without leaving gaps for ties.

    • In C#, Rank and DenseRank are availabl...

  • Answered by AI
  • Q5. Difference between function and Stored procedure
  • Ans. 

    Functions return a value while stored procedures do not.

    • Functions are used to perform a specific task and return a value to the caller.

    • Stored procedures are used to execute a set of statements and do not return a value.

    • Functions can be used in SQL statements while stored procedures cannot.

    • Functions can be called from within stored procedures.

    • Functions can be used in expressions while stored procedures cannot.

  • Answered by AI
  • Q6. Difference between clustered and non clustered index
  • Ans. 

    Clustered index determines the physical order of data in a table, while non-clustered index has a separate structure.

    • Clustered index sorts and stores the data rows in the table based on their key values, while non-clustered index has a separate structure that contains the key values and a pointer to the data row.

    • A table can have only one clustered index, while it can have multiple non-clustered indexes.

    • Clustered index ...

  • Answered by AI
  • Q7. Difference between execute scalar and execute nonquery
  • Ans. 

    ExecuteScalar returns single value while ExecuteNonQuery does not return any value.

    • ExecuteScalar is used for retrieving a single value from the database, such as a count or sum.

    • ExecuteNonQuery is used for executing SQL statements that do not return any value, such as INSERT, UPDATE, DELETE.

    • ExecuteScalar returns the first column of the first row of the result set, while ExecuteNonQuery returns the number of rows affecte...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Planetcast Software Engineer interview:
  • C#.Net
  • .Net Core
  • SQL Server
  • MySQL
Interview preparation tips for other job seekers - They will ask basics of c# and hire for media application

Skills evaluated in this interview

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

Create a Movie application on compose using mvvm

I applied via Naukri.com

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 - Assignment 

According to skills and experience

Round 3 - One-on-one 

(2 Questions)

  • Q1. One one round with technical person then manager
  • Q2. It's upto your resume and skills
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and final round with general manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall great experience healthy environment

Software Engineer Interview Questions & Answers

DAZN user image Balkrushna Atmaram Jadhav

posted on 13 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

It was live online coding test

Interview Preparation Tips

Topics to prepare for DAZN Software Engineer interview:
  • Nodejs
Interview preparation tips for other job seekers - Prepare well

Comcast Interview FAQs

How many rounds are there in Comcast Software Development Engineer II interview?
Comcast interview process usually has 2 rounds. The most common rounds in the Comcast interview process are One-on-one Round, Technical and HR.
What are the top questions asked in Comcast Software Development Engineer II interview?

Some of the top questions asked at the Comcast Software Development Engineer II interview -

  1. When to use horizontal scaling and vertical scal...read more
  2. Questions on C++. Was asked to implement a queue with key and value pair, quest...read more
  3. Asked me to solve one basic question where I have to convert a string to inte...read more

Tell us how to improve this page.

Comcast Software Development Engineer II Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

PVR Inox Interview Questions
4.0
 • 169 Interviews
Cinépolis Interview Questions
3.9
 • 60 Interviews
HT Media Interview Questions
3.2
 • 50 Interviews
DAZN Interview Questions
2.7
 • 32 Interviews
Network 18 Interview Questions
3.5
 • 27 Interviews
Planetcast Interview Questions
3.9
 • 24 Interviews
View all

Fast track your campus placements

View all
Comcast Software Development Engineer II Salary
based on 75 salaries
₹9 L/yr - ₹16 L/yr
50% less than the average Software Development Engineer II Salary in India
View more details

Comcast Software Development Engineer II Reviews and Ratings

based on 8 reviews

2.4/5

Rating in categories

2.9

Skill development

2.0

Work-life balance

2.7

Salary

3.1

Job security

3.0

Company culture

2.2

Promotions

2.6

Work satisfaction

Explore 8 Reviews and Ratings
Development Engineer 2
149 salaries
unlock blur

₹9 L/yr - ₹16 L/yr

Development Engineer
133 salaries
unlock blur

₹7.5 L/yr - ₹30.8 L/yr

Devops Engineer
124 salaries
unlock blur

₹5 L/yr - ₹19 L/yr

Development Engineer 3
119 salaries
unlock blur

₹13 L/yr - ₹25 L/yr

Software Development Engineer II
75 salaries
unlock blur

₹9 L/yr - ₹16 L/yr

Explore more salaries
Compare Comcast with

PVR Inox

4.0
Compare

Cinépolis

3.9
Compare

HT Media

3.3
Compare

Zee Entertainment Enterprises

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