Upload Button Icon Add office photos

Filter interviews by

Clear (1)

American Broadcasting Company Developer Interview Questions and Answers

Updated 20 Nov 2024

American Broadcasting Company Developer Interview Experiences

5 interviews found

Developer Interview Questions & Answers

user image Anonymous

posted on 20 Nov 2024

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

Went well talk about OO development and UML modeling

Round 2 - Group Discussion 

Object oriented programing

Developer Interview Questions & Answers

user image Rajlakshmi Kapoor

posted on 18 Feb 2024

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

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Write code for checkbox
  • Ans. 

    Code snippet for creating a checkbox in HTML

    • Use the <input> tag with type='checkbox'

    • Set the 'name' attribute for grouping checkboxes

    • Use the 'checked' attribute to pre-select the checkbox

  • Answered by AI

Skills evaluated in this interview

Developer Interview Questions Asked at Other Companies

asked in HARMAN
Q1. Which programming language do you use regular in work
Q2. Given a 2 dim array, find an element which is the maximum in its ... read more
asked in HARMAN
Q3. What step do you take to ensure accurate estimates for project
Q4. Solve the problems: Write a formula to display A if A is present, ... read more
Q5. Can you describe “method overloading” versus “method overriding”? ... read more

Developer Interview Questions & Answers

user image Anonymous

posted on 12 Mar 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain sdlc , to write code in python
  • Ans. 

    SDLC is a process used by developers to plan, create, test, and deploy software.

    • SDLC stands for Software Development Life Cycle

    • It includes phases like planning, analysis, design, implementation, testing, and maintenance

    • Python is a popular programming language used in the implementation phase of SDLC

  • Answered by AI

Skills evaluated in this interview

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 Resume tips
Round 2 - Assignment 

Test is very simple, multiple choice answer selection

Round 3 - HR 

(2 Questions)

  • Q1. HR round is simple, only general question about your self and interest
  • Q2. Salary discussion and negotiation will be happen

Interview Preparation Tips

Interview preparation tips for other job seekers - They doing there job very well so no any suggestion

American Broadcasting Company interview questions for designations

 Software Developer

 (27)

 Java Developer

 (6)

 Web Developer

 (3)

 UI Developer

 (2)

 Database Developer

 (1)

 Backend Developer

 (1)

 Salesforce Developer

 (1)

 RPA Developer

 (1)

Developer Interview Questions & Answers

user image prudhvi boddu

posted on 1 Feb 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
-

I applied via Company Website and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is qlik , difference from power bi
  • Ans. 

    Qlik is a data visualization and business intelligence platform, similar to Power BI.

    • Qlik and Power BI are both data visualization and business intelligence tools.

    • Qlik offers a unique associative data model that allows users to explore data relationships more easily.

    • Power BI has a strong integration with Microsoft products and services.

    • Qlik has a more flexible and customizable user interface compared to Power BI.

    • Both t...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(5 Questions)

  • Q1. What is closure
  • Ans. 

    A closure is a function that has access to its own scope, the scope in which it was defined, and the global scope.

    • A closure is created when a function is defined inside another function.

    • The inner function has access to the variables and parameters of the outer function, even after the outer function has finished executing.

    • Closures are useful for creating private variables and functions in JavaScript.

    • They can also be us...

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

    Encapsulation is the process of hiding internal details and providing a public interface for accessing and manipulating data.

    • Encapsulation bundles data and methods together into a single unit.

    • It helps in achieving data abstraction and data hiding.

    • By encapsulating data, we can control access to it and prevent unauthorized modifications.

    • Encapsulation promotes code reusability and maintainability.

    • Example: A class in objec...

  • Answered by AI
  • Q3. What is Inheritance
  • Ans. 

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

    • Inheritance allows for code reuse and promotes the concept of hierarchy.

    • The class that is being inherited from is called the superclass or base class.

    • The class that inherits from the superclass is called the subclass or derived class.

    • The subclass can access the public and protected members of the s...

  • Answered by AI
  • Q4. What is Abstraction
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details.

    • Abstraction involves hiding unnecessary details and exposing only relevant information.

    • It allows developers to create models or representations that capture the essential aspects of a system.

    • Abstraction helps in managing complexity, improving code reusability, and enhancing maintainability.

    • For example, in object-oriented programm...

  • Answered by AI
  • Q5. 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 enables code reusability and flexibility.

    • Polymorphism can be achieved through method overriding and method overloading.

    • Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They can ...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. C#,Mvc core,SQL server,vue js,
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between string and string builder.
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning once created, its value cannot be changed. StringBuilder is mutable, allowing for modifications without creating new objects.

    • String concatenation creates a new string object each time, while StringBuilder modifies the existing object directly.

    • StringBuilder is more efficient for concatenating mul...

  • Answered by AI
  • Q2. What is async and await
  • Ans. 

    Async and await are keywords in JavaScript used to work with asynchronous code.

    • Async is used to define a function as asynchronous, allowing it to run in the background without blocking the main thread.

    • Await is used to pause the execution of an async function until a Promise is settled, and then resumes the function with the resolved value.

    • Async/await is a more readable and cleaner way to write asynchronous code compare...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Sql Query Sequence and basically asks the SqlServer Releted question and Webform Also.

Interview Preparation Tips

Topics to prepare for DISH TV Software Developer interview:
  • SQL
  • MVC
  • ASP.Net
  • Webform
  • API
Interview preparation tips for other job seekers - Most Of the people mistakes lack of confidence.this is the main factor to select or not.

Interview Questionnaire 

1 Question

  • Q1. Delete a Node in Linked list.
  • Ans. 

    To delete a node in a linked list, we need to find the node and update the pointers of its previous and next nodes.

    • Find the node to be deleted by traversing the linked list

    • Update the pointers of the previous and next nodes to skip the node to be deleted

    • Free the memory occupied by the node to be deleted

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The campus process included 2 Technical and an HR round, First round was coding, second was to check theoretical knowledge and third HR round.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

American Broadcasting Company Interview FAQs

How many rounds are there in American Broadcasting Company Developer interview?
American Broadcasting Company interview process usually has 1-2 rounds. The most common rounds in the American Broadcasting Company interview process are Technical, Resume Shortlist and Assignment.
What are the top questions asked in American Broadcasting Company Developer interview?

Some of the top questions asked at the American Broadcasting Company Developer interview -

  1. What is qlik , difference from power...read more
  2. explain sdlc , to write code in pyt...read more
  3. Write code for check...read more

Recently Viewed

SALARIES

Applied Micro Circuits Corporation

INTERVIEWS

Guidewire Software

No Interviews

SALARIES

DXC Technology

INTERVIEWS

Guidewire Software

No Interviews

COMPANY BENEFITS

DDN Storage

No Benefits

SALARIES

DDN Storage

INTERVIEWS

Guidewire Software

No Interviews

INTERVIEWS

American Broadcasting Company

No Interviews

REVIEWS

DXC Technology

No Reviews

REVIEWS

DDN Storage

No Reviews

Tell us how to improve this page.

American Broadcasting Company Developer Interview Process

based on 5 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
PVR Inox Interview Questions
4.0
 • 164 Interviews
Abbott Interview Questions
4.1
 • 147 Interviews
Kantar Interview Questions
3.5
 • 96 Interviews
Tata Play Interview Questions
4.0
 • 70 Interviews
Times Internet Interview Questions
3.6
 • 63 Interviews
Aptara Interview Questions
3.3
 • 62 Interviews
DISH TV Interview Questions
3.5
 • 59 Interviews
View all
American Broadcasting Company Developer Salary
based on 142 salaries
₹12 L/yr - ₹36 L/yr
195% more than the average Developer Salary in India
View more details

American Broadcasting Company Developer Reviews and Ratings

based on 5 reviews

4.5/5

Rating in categories

4.5

Skill development

4.4

Work-life balance

4.5

Salary

4.4

Job security

4.5

Company culture

4.4

Promotions

4.4

Work satisfaction

Explore 5 Reviews and Ratings
Manager
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
928 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

SAP Abap Consultant
625 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Manager
563 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare American Broadcasting Company with

HDFC Bank

3.9
Compare

Manappuram Finance

3.9
Compare

PVR Inox

4.0
Compare

Abbott

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