Upload Button Icon Add office photos

Filter interviews by

American Broadcasting Company Data Scientist Interview Questions and Answers

Updated 18 Nov 2024

American Broadcasting Company Data Scientist Interview Experiences

2 interviews found

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

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

Round 1 - Aptitude Test 

(2 Questions)

  • Q1. Python Question on Lists, Dictionary
  • Q2. SQLquestion on querying the data from different tables using joins, group by.
Round 2 - Coding Test 

1. Question of list, occurence of particular item
2. Select query with group by in sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice python questions on lists, dictionary, tuples.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Introduce Yourself
  • Ans. 

    I am a data scientist with a background in statistics and machine learning, passionate about solving complex problems using data-driven approaches.

    • Background in statistics and machine learning

    • Experience in solving complex problems using data-driven approaches

    • Passionate about leveraging data for insights and decision-making

  • Answered by AI

Data Scientist Interview Questions Asked at Other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you fi ... read more
Q2. Special Sum of Array Problem Statement Given an array 'arr' conta ... read more
asked in Affine
Q3. you have a pandas dataframe with three columns, filled with state ... read more
Q4. Clone a Linked List with Random Pointers Given a linked list wher ... read more
asked in Coforge
Q5. coding question of finding index of 2 nos. having total equal to ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Machine learning algorithms.
  • Ans. 

    Machine learning algorithms are tools used to analyze data, identify patterns, and make predictions without being explicitly programmed.

    • Machine learning algorithms can be categorized into supervised, unsupervised, and reinforcement learning.

    • Examples of machine learning algorithms include linear regression, decision trees, support vector machines, and neural networks.

    • These algorithms require training data to learn patte...

  • Answered by AI
  • Q2. Credit risk life cycle
  • Q3. Pandas related questions
Round 2 - One-on-one 

(3 Questions)

  • Q1. Steps of developing a credit risk model
  • Ans. 

    Developing a credit risk model involves several steps to assess the likelihood of a borrower defaulting on a loan.

    • 1. Define the problem and objectives of the credit risk model.

    • 2. Gather relevant data such as credit history, income, debt-to-income ratio, etc.

    • 3. Preprocess the data by handling missing values, encoding categorical variables, and scaling features.

    • 4. Select a suitable machine learning algorithm such as logi...

  • Answered by AI
  • Q2. Pandas related questions
  • Q3. Bagging and Boosting
Round 3 - One-on-one 

(3 Questions)

  • Q1. Explain AIC and BIC
  • Ans. 

    AIC and BIC are statistical measures used for model selection in the context of regression analysis.

    • AIC (Akaike Information Criterion) is used to compare the goodness of fit of different models. It penalizes the model for the number of parameters used.

    • BIC (Bayesian Information Criterion) is similar to AIC but penalizes more heavily for the number of parameters, making it more suitable for model selection when the focus...

  • Answered by AI
  • Q2. Difference between xgboost and lightgbm
  • Ans. 

    XGBoost is a popular gradient boosting library while LightGBM is a faster and more memory-efficient alternative.

    • XGBoost is known for its accuracy and performance on structured/tabular data.

    • LightGBM is faster and more memory-efficient, making it suitable for large datasets.

    • LightGBM uses a histogram-based algorithm for splitting whereas XGBoost uses a level-wise tree growth strategy.

  • Answered by AI
  • Q3. Bagging and boosting

Skills evaluated in this interview

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

DSA and ML, AI, Coding question

Round 2 - One-on-one 

(1 Question)

  • Q1. Case study which was easy
Round 3 - One-on-one 

(1 Question)

  • Q1. In depth questions on ML
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2022. There were 3 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 

(4 Questions)

  • Q1. 1. First question was, from my project asked me that explain one project.
  • Ans. I have done three project, out of this three project one project was movie recommendation syatem. That i was explained. Then some counter question from project like how did you convert text to numerical, which technique you used here. I able to give all questions answer from project.
  • Answered Anonymously
  • Q2. 2. After they asked me, what is your subject preference?
  • Ans. My subject preference was NLP, Deep Learning, ML. Afrer that asked some question from NLP like what is term document matrix, tf-idf, word embedding, Gradient descent, why we have to change learning rate after every epoch, how lr change, precision recall.
  • Answered Anonymously
  • Q3. 3. My one projcet was sentimental analysis that was by LSTM model. So, next question was explain how LSTM model work and architecture .
  • Ans. Then I was explained workin flow of LST model and architecture. Then asked me did you know bidireectional LSTM. I said yes, then explained.
  • Answered Anonymously
  • Q4. 4. One question was from sql. what is the condition for primary key? last question one case business case study. this is all about my interview. My interview was 50 min and selected for HR round.
Round 3 - HR 

(1 Question)

  • Q1. Phone call round, just asked me are you interested to come here.

I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Write a SQL query to find all duplicate emails in a table named person
  • Ans. 

    SQL query to find duplicate emails in a table named person

    • Use GROUP BY and HAVING clause to group emails and count their occurrences

    • Select only those emails which have count greater than 1

    • Example: SELECT email, COUNT(*) FROM person GROUP BY email HAVING COUNT(*) > 1;

  • Answered by AI
  • Q2. Given a weather table, write a sql query to find all date's ids with higher temperature compared to it's previous dates
  • Ans. 

    SQL query to find date ids with higher temperature compared to previous dates in weather table

    • Use self join to compare temperature of current date with previous dates

    • Order the table by date to ensure correct comparison

    • Select date ids where temperature is higher than previous dates

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions will be asked about machine learning models and SQL query.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

The first technical round will cover how computer vision works, including the advantages and disadvantages of regression and random forest. It will also include discussions on when to use precision and recall, methods to reduce false positives, and criteria for selecting different models. Additionally, disadvantages of PCA will be addressed, along with project-related questions. The second round will focus on standard aptitude tests, while the third round will involve a casual conversation with the Executive Vice President.

Round 2 - Aptitude Test 

Normal aptitude questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on machine learning concepts, develop strong knowledge in Python programming, and learn about PCA, clustering, cross-validation, and hyperparameter tuning.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Tiruchirappalli and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

2hrs - sections include aptitude, machine learning, deep learning and two easy python coding questions

Round 3 - One-on-one 

(4 Questions)

  • Q1. Resume scrutiny with projects and internships
  • Q2. How to measure 45 mins duration using two identical wires
  • Q3. Partition a round cake into eight equal parts within three cuts
  • Q4. 10 coins puzzle (5 heads up and 5 tails up)

Interview Preparation Tips

Interview preparation tips for other job seekers - Thorough revision on deep learning and be clear on your internships such as workflow, why did you opted a specific component (such as tool, algorithm...etc).They test you on the basis of your resume explanation, so be honest don't try to fake some
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Calcutta University and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode hard level coding with 4-5 questions

Round 2 - Technical 

(1 Question)

  • Q1. Machine Learning algorithms, Statistics, NLP

Interview Preparation Tips

Interview preparation tips for other job seekers - Study Machine Learning, NLP, Deep Learning. Learn about Generative AI, LLM, Prompt Engineering.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Test was conducted on datacamp assessments. Overall, there were three tests.
1. Stats test
2. ML test
3. Python/coding test

Round 2 - One-on-one 

(1 Question)

  • Q1. Questions on ML techniques and practices, how to handle large data in python, lots of logical questions and handling overfitting, underfitting, etc in model building.

Interview Preparation Tips

Topics to prepare for HDFC Bank Data Scientist interview:
  • machine learning
  • python
Interview preparation tips for other job seekers - Learn about ML topics and commonly faced problems.

American Broadcasting Company Interview FAQs

How many rounds are there in American Broadcasting Company Data Scientist interview?
American Broadcasting Company interview process usually has 1-2 rounds. The most common rounds in the American Broadcasting Company interview process are HR, Aptitude Test and Coding Test.
What are the top questions asked in American Broadcasting Company Data Scientist interview?

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

  1. SQLquestion on querying the data from different tables using joins, group ...read more
  2. Python Question on Lists, Diction...read more

Tell us how to improve this page.

American Broadcasting Company Data Scientist Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
American Broadcasting Company Data Scientist Salary
based on 88 salaries
₹8 L/yr - ₹34.7 L/yr
36% more than the average Data Scientist Salary in India
View more details

American Broadcasting Company Data Scientist Reviews and Ratings

based on 2 reviews

3.3/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

2.5

Salary

3.3

Job security

4.0

Company culture

2.5

Promotions

4.0

Work satisfaction

Explore 2 Reviews and Ratings
Manager
1.5k salaries
unlock blur

₹13 L/yr - ₹49.6 L/yr

Software Engineer
1k salaries
unlock blur

₹9.9 L/yr - ₹40 L/yr

Software Developer
848 salaries
unlock blur

₹16.1 L/yr - ₹49.5 L/yr

SAP Abap Consultant
623 salaries
unlock blur

₹18.3 L/yr - ₹54.3 L/yr

Team Manager
565 salaries
unlock blur

₹11.5 L/yr - ₹42.5 L/yr

Explore more salaries
Compare American Broadcasting Company with

Manappuram Finance

3.9
Compare

Hetero

3.9
Compare

PVR Inox

4.0
Compare

Abbott

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