Upload Button Icon Add office photos

Filter interviews by

Comcast India Engineering Center Interview Questions, Process, and Tips

Updated 17 Feb 2025

Top Comcast India Engineering Center Interview Questions and Answers

View all 34 questions

Comcast India Engineering Center Interview Experiences

Popular Designations

53 interviews found

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

(2 Questions)

  • Q1. Http methods post get and put difference
  • Ans. 

    POST is used to create a new resource, GET is used to retrieve data, and PUT is used to update an existing resource.

    • POST method is used to create a new resource on the server

    • GET method is used to retrieve data from the server

    • PUT method is used to update an existing resource on the server

    • POST requests are not idempotent, while GET and PUT requests are idempotent

  • Answered by AI
  • Q2. Linq based questions

Skills evaluated in this interview

Development Engineer Interview Questions asked at other Companies

Q1. How to inspect a specific tool by using simple instruments?
View answer (1)

IBM App Connect Developer Interview Questions & Answers

user image Anonymous

posted on 28 Aug 2024

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

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How do you sort and find duplicate names in a SQL table
  • Ans. 

    Use SQL query with GROUP BY and HAVING clauses to sort and find duplicate names in a table.

    • Use GROUP BY clause to group the names together

    • Use COUNT() function to count the occurrences of each name

    • Use HAVING clause to filter out names with count greater than 1

  • Answered by AI
  • Q2. Write a code in python to sort an array without sort function
  • Ans. 

    Sort an array of strings in Python without using the sort function.

    • Use the bubble sort algorithm to compare adjacent elements and swap them if they are in the wrong order.

    • Repeat this process until the array is sorted.

    • Example: ['banana', 'apple', 'cherry'] -> ['apple', 'banana', 'cherry']

  • Answered by AI

Skills evaluated in this interview

Engineer Interview Questions & Answers

user image Anonymous

posted on 4 Feb 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Networking based questions
  • Q2. Asked on framework - robot
  • Q3. Mostly on Regex based

Interview Preparation Tips

Interview preparation tips for other job seekers - Had a F2F Interview @comcast had to wait till eve for me to attend interview. so many people came and i was the last person.
prepare well on networking and coding

Engineer Interview Questions asked at other Companies

Q1. ❖ If a team member is unable to carry out his work, he is doing it repetitively, how would you handle it?, would you like to work only on lifing of components, or would you be ready to shift to other departments?
View answer (7)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Question from previous employment and problem solving questions
  • Q2. Errors you faced in aws redshift and your solution to it
  • Ans. 

    Encountered errors in AWS Redshift and provided solutions

    • Encountered 'disk full' error due to large data loads - increased disk space allocation

    • Received 'connection timeout' error - adjusted network settings to increase timeout duration

    • Encountered 'query performance degradation' - optimized queries and added appropriate indexes

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

(1 Question)

  • Q1. Business and behavior
Round 3 - HR 

(1 Question)

  • Q1. Gendral questions and from resume

Skills evaluated in this interview

Development Engineer 3 Interview Questions asked at other Companies

Q1. Errors you faced in aws redshift and your solution to it
View answer (1)

Comcast India Engineering Center interview questions for popular designations

 Software Development Engineer II

 (5)

 Development Engineer

 (3)

 Software Developer

 (3)

 Devops Engineer

 (2)

 Scrum Master

 (2)

 Sdet Automation Test Engineer

 (2)

 Associate Engineer

 (1)

 Automation Engineer

 (1)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic and advanced react js questions
Round 2 - Coding Test 

Api fetching, pagination and search

Interview Preparation Tips

Interview preparation tips for other job seekers - Not sure what to suggest, I did everything that was asked but still got rejected. Just have a better luck

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)

Get interview-ready with Top Comcast India Engineering Center Interview Questions

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

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Project related
Round 2 - HR 

(1 Question)

  • Q1. Why Comcast in Chennai?

Sdet Automation Test Engineer Interview Questions asked at other Companies

Q1. Wait in selenium and how to find all links present in a page xpath
View answer (2)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic introductions and asked about skillset
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Topics to prepare for Comcast India Engineering Center Software Development Engineer 3 interview:
  • Kubernetes
  • AWS
  • Azure
  • Docker
  • CI CD
  • Python
  • Go Lang

Software Development Engineer 3 Interview Questions asked at other Companies

Q1. What are triggers , where can they be used ? What is a mutating trigger problem , how can it be solved?
View answer (1)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Sastra University and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

The round 1 went very good with cool aptitude questions and one coding question

Round 2 - Technical 

(3 Questions)

  • Q1. The round is all about the techincal stuff and introduction and project and some random techincal questions were asked
  • Q2. 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 allows a single interface to be used for different types of objects.

    • Polymorphism is achieved through method overriding and method overloading.

    • Example: A shape class with different subclasses like circle, square, and ...

  • Answered by AI
  • Q3. Whatis inheritance

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

Deployment Engineer 2 Interview Questions & Answers

user image Anonymous

posted on 13 Jun 2023

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

I applied via Naukri.com and was interviewed in May 2023. 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 

(5 Questions)

  • Q1. Self Intro and Project related question from my past company All sql basic question Aws glue Aws services
  • Q2. Joins and difference b/w among joins
  • Q3. Difference b/w rank and dense
  • Q4. Aws glue architecture
  • Q5. Spark basics and optimization

Interview Preparation Tips

Interview preparation tips for other job seekers - A top noch project explanation
basic of sql question and some Python

I done very well but not selected simply.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Sri Venkateswara Degree College, Chittoor and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

They asked aptitude question

Round 2 - Coding Test 

Oops questions asked

Round 3 - HR 

(2 Questions)

  • Q1. Hr qestions asked
  • Q2. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)

Comcast India Engineering Center Interview FAQs

How many rounds are there in Comcast India Engineering Center interview?
Comcast India Engineering Center interview process usually has 2-3 rounds. The most common rounds in the Comcast India Engineering Center interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Comcast India Engineering Center 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 India Engineering Center. The most common topics and skills that interviewers at Comcast India Engineering Center expect are AWS, Java, Python, Devops and Linux.
What are the top questions asked in Comcast India Engineering Center interview?

Some of the top questions asked at the Comcast India Engineering Center interview -

  1. Write a goroutine code which is synced to to another goroutine and waits till t...read more
  2. Can you provide a comprehensive overview of the technologies you have learned, ...read more
  3. What is Prime Indexing and how is it different from Secondary indexi...read more
How long is the Comcast India Engineering Center interview process?

The duration of Comcast India Engineering Center interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Comcast India Engineering Center Interview Process

based on 44 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.2k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 902 Interviews
Google Interview Questions
4.4
 • 870 Interviews
Cisco Interview Questions
4.1
 • 397 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
Adobe Interview Questions
3.9
 • 251 Interviews
Intel Interview Questions
4.2
 • 223 Interviews
View all

Comcast India Engineering Center Reviews and Ratings

based on 149 reviews

4.1/5

Rating in categories

4.0

Skill development

4.4

Work-life balance

3.8

Salary

4.4

Job security

4.2

Company culture

3.6

Promotions

3.9

Work satisfaction

Explore 149 Reviews and Ratings
Software Development Engineer II
94 salaries
unlock blur

₹10 L/yr - ₹15 L/yr

Devops Engineer
45 salaries
unlock blur

₹6.4 L/yr - ₹18 L/yr

Development Engineer 3
40 salaries
unlock blur

₹13.5 L/yr - ₹23 L/yr

Software Developer
36 salaries
unlock blur

₹6 L/yr - ₹24.5 L/yr

Engineer III
30 salaries
unlock blur

₹10 L/yr - ₹20 L/yr

Explore more salaries
Compare Comcast India Engineering Center with

Cisco

4.1
Compare

Microsoft Corporation

4.0
Compare

Intel

4.2
Compare

IBM

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