Upload Button Icon Add office photos

Filter interviews by

Comcast India Engineering Center Software Development Engineer 1 Interview Questions and Answers

Updated 18 Dec 2024

Comcast India Engineering Center Software Development Engineer 1 Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Engineering College, Kovilpatti and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It includes questions on aptitude, pseudocode, Linux commands, Python, web development, and software testing tools.

Round 2 - Technical 

(1 Question)

  • Q1. Can you provide a comprehensive overview of the technologies you have learned, including Artificial Intelligence, Machine Learning, and Cybersecurity, along with specific details?
  • Ans. 

    I have experience in Artificial Intelligence, Machine Learning, and Cybersecurity.

    • Artificial Intelligence: Familiar with neural networks, natural language processing, and computer vision.

    • Machine Learning: Proficient in regression, classification, clustering algorithms, and model evaluation techniques.

    • Cybersecurity: Knowledge of encryption, network security, and vulnerability assessment.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. General Questions about yourself?

Interview questions from similar companies

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

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test was on hackers rank

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me most challenging problem faced while making project
  • Q2. Give optimise solution for scheduling doctors appointment coding question

Skills evaluated in this interview

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

Total 31 questions where 29 are MCQ related to Java, c++, python (to find output or time complexity) and 2 are coding questions with medium difficulty

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Group Discussion 

The first round was a group discussion about online shopping.

Round 2 - Technical 

(1 Question)

  • Q1. What questions did the interviewer ask is related to the Java programming language
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussed about General questions related to Company and personal details
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java springboot basic to intermediate question
  • Q2. Java stream questions
Round 2 - Technical 

(2 Questions)

  • Q1. Easy level DSA questions
  • Q2. Project based questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. String based questions in java
  • Q2. What are the fundamental concepts of Java?
  • Ans. 

    Fundamental concepts of Java include OOP, platform independence, memory management, and exception handling.

    • Object-oriented programming (OOP) - Java is based on classes and objects, allowing for encapsulation, inheritance, and polymorphism.

    • Platform independence - Java code can run on any platform with the help of JVM (Java Virtual Machine).

    • Memory management - Java has automatic garbage collection to manage memory effici...

  • Answered by AI
Round 2 - Coding Test 

Java based questions and few DSA questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

1) Finding and removing loop in linked list. 2)find pair of given sum in binary tree

Round 2 - One-on-one 

(2 Questions)

  • Q1. Print bottom view of binary tree
  • Ans. 

    Print the bottom view of a binary tree

    • Use a map to store the horizontal distance and node value at each level

    • Perform a level order traversal of the binary tree

    • Update the map with the node value at each horizontal distance

    • Print the node values in the map for the bottom view

  • Answered by AI
  • Q2. Oops related output based questions

Skills evaluated in this interview

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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic java fundamentals
  • Q2. Spring boot,sql
Round 2 - Technical 

(2 Questions)

  • Q1. Some technical questions from manager
  • Q2. Some challenges or scenario based questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion mostly
  • Q2. Benifts that they offer with TR

Software Engineer Interview Questions & Answers

Globant user image Priyanka Vitthal chakkar

posted on 5 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can override or extend the functionality of the base class

  • Answered by AI
  • Q2. What are the types of joins in mysql
  • Ans. 

    Types of joins in MySQL include inner join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

    • Full join: Returns rows when there is a match in one of the tables.

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

(2 Questions)

  • Q1. How to handle multiple api's
  • Ans. 

    Use a centralized API gateway to manage and route requests to multiple APIs efficiently.

    • Implement a centralized API gateway to handle incoming requests and route them to the appropriate API based on the endpoint.

    • Utilize API management tools like Apigee, Kong, or AWS API Gateway to manage and monitor multiple APIs.

    • Consider implementing a caching layer to improve performance and reduce the number of requests to external

  • Answered by AI
  • Q2. What does strstr function do?
  • Ans. 

    strstr function searches for a substring within a string and returns a pointer to the first occurrence of the substring.

    • Used in C programming language

    • Syntax: char *strstr(const char *haystack, const char *needle)

    • Example: char *str = strstr("hello world", "world")

  • Answered by AI

Skills evaluated in this interview

Comcast India Engineering Center Interview FAQs

How many rounds are there in Comcast India Engineering Center Software Development Engineer 1 interview?
Comcast India Engineering Center interview process usually has 3 rounds. The most common rounds in the Comcast India Engineering Center interview process are Aptitude Test, Technical and HR.

Tell us how to improve this page.

Comcast India Engineering Center Software Development Engineer 1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.1k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
Google Interview Questions
4.4
 • 821 Interviews
Cisco Interview Questions
4.1
 • 370 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Adobe Interview Questions
3.9
 • 233 Interviews
Intel Interview Questions
4.2
 • 214 Interviews
View all
45% less than the average Software Development Engineer 1 Salary in India
View more details

Comcast India Engineering Center Software Development Engineer 1 Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
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