Upload Button Icon Add office photos

Filter interviews by

Comcast India Engineering Center Software Developer Interview Questions and Answers

Updated 18 Nov 2024

Comcast India Engineering Center Software Developer Interview Experiences

3 interviews found

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

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

Round 1 - Aptitude Test 

It was easy 3hr exam no coding only atitude questions and then abt the cs funda

Round 2 - Technical 

(3 Questions)

  • Q1. Introduction aabout yourself
  • Q2. Explain about your project
  • Q3. Matrix representation in data structures
  • Ans. 

    Matrix representation in data structures involves storing data in a two-dimensional array.

    • Matrix can be represented using arrays of arrays, where each inner array represents a row of the matrix.

    • Elements in the matrix can be accessed using row and column indices.

    • Matrix representation is commonly used in graph algorithms, image processing, and linear algebra.

    • Example: int[][] matrix = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare all the things u give in your resume be thorough with it

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

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Assignment 

In round one there are both Aptitude and two coding questions and I cracked one code

Round 2 - Technical 

(2 Questions)

  • Q1. Basic Technical questions based on resume and projects
  • Q2. What is the backend used
  • Ans. 

    We are using Node.js and MongoDB for the backend.

    • Backend is built using Node.js framework

    • Data is stored in MongoDB database

    • RESTful APIs are used for communication

    • Authentication is implemented using JSON Web Tokens

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Both technical and HR quesetions asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy and friendly HR team. The questions are mostly medium to hard but you don't have to answer them all. Just answer some of t hem correctly and be confident.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
  • Ans. 

    Traverse all child nodes in a tree data structure

    • Use depth-first or breadth-first traversal algorithms

    • Recursively visit each child node starting from the root node

    • Consider using a stack or queue data structure for traversal

    • Example: Traverse all nodes in a binary tree

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at MLR Institute of Technology, Hyderabad and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Java Basics questions

Round 2 - Technical 

(3 Questions)

  • Q1. Java oops concepts
  • Q2. Swap two number without temporary var
  • Ans. 

    Use bitwise XOR operation to swap two numbers without using a temporary variable.

    • Use XOR operation to swap two numbers without using a temporary variable.

    • a = a XOR b

    • b = a XOR b

    • a = a XOR b

  • Answered by AI
  • Q3. Java program to identify a number is palindrome or not
  • Ans. 

    Java program to check if a number is a palindrome or not.

    • Convert the number to a string to easily check for palindrome

    • Reverse the string and compare it with the original string to check for palindrome

    • Handle edge cases like negative numbers and single-digit numbers

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. About your self
  • Q2. Why IVY company
  • Ans. 

    IVY company is known for its innovative projects, collaborative work environment, and commitment to employee growth.

    • IVY company has a reputation for taking on challenging and cutting-edge projects.

    • The company values collaboration and teamwork, which aligns with my own work style.

    • IVY company offers opportunities for professional development and growth, which is important to me in my career.

    • I admire IVY company's commitm

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Internal working of Hash Map
  • Ans. 

    Hash Map is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

    • Hash Map uses a hash function to determine the index of the key-value pair in the underlying array.

    • Collisions can occur when multiple keys hash to the same index, which can be resolved using techniques like chaining or open addressing.

    • Hash Map typically has a load factor threshold to determine whe...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Diff var let const
  • Ans. 

    diff var let const

    • var is function-scoped, let and const are block-scoped

    • var can be redeclared and reassigned, let can be reassigned but not redeclared, const cannot be reassigned or redeclared

    • const must be initialized during declaration, let and var can be declared without initialization

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Related to node js architecture
Round 3 - HR 

(1 Question)

  • Q1. Expectation and all

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Good round moderate coding questions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Coding question based on trees
  • Q2. Coding question based on math/binary search
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

A paper based test and it was technical

Round 2 - One-on-one 

(2 Questions)

  • Q1. About the projects
  • Q2. Some sql questions

Comcast India Engineering Center Interview FAQs

How many rounds are there in Comcast India Engineering Center Software Developer interview?
Comcast India Engineering Center interview process usually has 3 rounds. The most common rounds in the Comcast India Engineering Center interview process are Technical, HR and Aptitude Test.
How to prepare for Comcast India Engineering Center Software 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 India Engineering Center. The most common topics and skills that interviewers at Comcast India Engineering Center expect are Powershell, Software Development, Web Api and Web Technologies.
What are the top questions asked in Comcast India Engineering Center Software Developer interview?

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

  1. What is the backend u...read more
  2. matrix representation in data structu...read more
  3. Both technical and HR quesetions as...read more

Tell us how to improve this page.

Comcast India Engineering Center Software Developer Interview Process

based on 3 interviews

Interview experience

3
  
Average
View more
Comcast India Engineering Center Software Developer Salary
based on 36 salaries
₹6 L/yr - ₹24.5 L/yr
85% more than the average Software Developer Salary in India
View more details

Comcast India Engineering Center Software Developer Reviews and Ratings

based on 5 reviews

3.0/5

Rating in categories

3.9

Skill development

2.8

Work-life balance

2.7

Salary

4.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 5 Reviews and Ratings
Software Development Engineer II
73 salaries
unlock blur

₹10 L/yr - ₹15.5 L/yr

Devops Engineer
44 salaries
unlock blur

₹6.4 L/yr - ₹18 L/yr

Development Engineer 3
38 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