Upload Button Icon Add office photos

Filter interviews by

American Broadcasting Company Software Engineer Interview Questions, Process, and Tips

Updated 10 Aug 2024

Top American Broadcasting Company Software Engineer Interview Questions and Answers

View all 10 questions

American Broadcasting Company Software Engineer Interview Experiences

17 interviews found

Software Engineer Interview Questions & Answers

user image Nitin Kothari

posted on 18 Jun 2024

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

(2 Questions)

  • Q1. Whats new in latest version of python
  • Ans. 

    Python 3.9 introduces new features like dictionary merge operator, type hinting improvements, and more.

    • Introduction of dictionary merge operator (|) for merging dictionaries easily

    • Improvements in type hinting with the introduction of TypedDict and Literal types

    • Performance improvements with faster parsing of f-strings

    • New syntax features like the removal of the 'u' prefix for Unicode literals

  • Answered by AI
  • Q2. What is oops concept
  • Ans. 

    Object-oriented programming paradigm that focuses on objects and classes for code organization and reusability.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object)

    • Inheritance: Ability of a class to inherit properties and behavior from another class

    • Polymorphism: Ability to present the same interface for different data types

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Normal project discussion
  • Q2. Culture about the company

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Awesome

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Experience about project
  • Ans. 

    Developed a web application for tracking inventory and sales data

    • Led a team of 5 developers to design and implement the application

    • Utilized Java, Spring Boot, and Angular for development

    • Integrated with third-party APIs for real-time data updates

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test was of average difficultly

Round 2 - Coding Test 

Coding test was bit tricky

American Broadcasting Company interview questions for designations

 Senior Software Engineer

 (5)

 Junior Software Engineer

 (2)

 Associate Software Engineer

 (1)

 Software Development Engineer II

 (1)

 Software Developer

 (27)

 Software Tester

 (4)

 Software Architect

 (1)

 Software Trainee

 (1)

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

(1 Question)

  • Q1. Java,sql,spring, hibernate, jdbc

Get interview-ready with Top American Broadcasting Company Interview Questions

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

(1 Question)

  • Q1. Java,sql,jdbc. ,spring, hibernate
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

It was easy to crack for fresher

Round 2 - HR 

(1 Question)

  • Q1. Intro Background Technical test
Round 3 - One-on-one 

(4 Questions)

  • Q1. Salesforce HTML CSS
  • Q2. What is Salesforce CRM
  • Ans. 

    Salesforce CRM is a cloud-based customer relationship management platform that helps businesses manage their sales, marketing, and customer support activities.

    • Salesforce CRM is a cloud-based software solution

    • It helps businesses manage their sales, marketing, and customer support activities

    • It provides a centralized platform for storing and managing customer data

    • Salesforce CRM offers various features like lead management...

  • Answered by AI
  • Q3. What is HTML language
  • Ans. 

    HTML is a markup language used for creating and structuring web pages.

    • HTML stands for HyperText Markup Language

    • It uses tags to define the structure and content of a web page

    • Common tags include <html>, <head>, <title>, <body>, <p>, <div>, <a>, <img>

    • Attributes can be added to tags to provide additional information or functionality

    • HTML documents are typically saved with a .h

  • Answered by AI
  • Q4. What is CSS language
  • Ans. 

    CSS is a language used for styling web pages. It defines the layout, colors, fonts, and other visual aspects of a website.

    • CSS stands for Cascading Style Sheets

    • It is used to separate the content and presentation of a web page

    • CSS rules consist of selectors and declarations

    • Selectors target HTML elements and declarations define how those elements should be styled

    • CSS can be applied inline, embedded, or in an external file

  • Answered by AI

Skills evaluated in this interview

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

It was easy but not very tough

Round 2 - HR 

(2 Questions)

  • Q1. What are opps concept
  • Ans. 

    OOPs concept stands for Object-Oriented Programming concepts which include principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the compl...

  • Answered by AI
  • Q2. How do you connect to on prem to cloud
  • Ans. 

    Connecting on-premises resources to cloud services involves setting up secure network connections.

    • Use VPN (Virtual Private Network) to establish a secure connection between on-premises network and cloud services

    • Set up Direct Connect for a dedicated private connection between on-premises data center and cloud provider

    • Utilize hybrid cloud solutions to seamlessly integrate on-premises resources with cloud services

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Diff between unnion and union all
  • Ans. 

    UNION combines the result sets of two or more SELECT statements, while UNION ALL does the same but includes duplicates.

    • UNION removes duplicate rows from the result set, while UNION ALL includes all rows.

    • UNION is slower than UNION ALL because it performs a distinct operation, while UNION ALL does not.

    • UNION requires that all columns in the SELECT statements have the same data types, while UNION ALL does not have this req

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Explain stack memory
  • Ans. 

    Stack memory is a memory space used for storing local variables and function call information in a program.

    • Stack memory is a region of memory that operates in a Last In First Out (LIFO) manner.

    • It is used for storing local variables, function parameters, return addresses, and function call information.

    • Stack memory is limited in size and is typically smaller than heap memory.

    • Example: When a function is called, its local ...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Introduce yourself

American Broadcasting Company Interview FAQs

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

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

  1. whats new in latest version of pyt...read more
  2. How do you connect to on prem to cl...read more
  3. What is Salesforce ...read more

Tell us how to improve this page.

American Broadcasting Company Software Engineer Interview Process

based on 9 interviews in last 1 year

2 Interview rounds

  • Technical Round
  • HR Round
View more

People are getting interviews through

based on 7 American Broadcasting Company interviews
Job Portal
Company Website
86%
14%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
American Broadcasting Company Software Engineer Salary
based on 1.6k salaries
₹15.5 L/yr - ₹45 L/yr
212% more than the average Software Engineer Salary in India
View more details

American Broadcasting Company Software Engineer Reviews and Ratings

based on 60 reviews

3.8/5

Rating in categories

3.6

Skill development

3.8

Work-Life balance

3.8

Salary & Benefits

3.5

Job Security

3.8

Company culture

3.7

Promotions/Appraisal

3.7

Work Satisfaction

Explore 60 Reviews and Ratings
Software Engineer
1.6k salaries
unlock blur

₹15.6 L/yr - ₹45 L/yr

Manager
1.5k salaries
unlock blur

₹10.4 L/yr - ₹46 L/yr

Software Developer
944 salaries
unlock blur

₹11.2 L/yr - ₹37.5 L/yr

SAP Abap Consultant
611 salaries
unlock blur

₹10 L/yr - ₹42 L/yr

Team Lead
564 salaries
unlock blur

₹10.7 L/yr - ₹40 L/yr

Explore more salaries
Compare American Broadcasting Company with

Manappuram Finance

3.9
Compare

Hetero Drugs

3.9
Compare

PVR Inox

4.0
Compare

Abbott

4.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview