Upload Button Icon Add office photos

Target

Compare button icon Compare button icon Compare

Filter interviews by

Target Data Scientist Interview Questions and Answers

Updated 26 Oct 2024

Target Data Scientist Interview Experiences

2 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Array-based question

Round 2 - Technical 

(2 Questions)

  • Q1. Explain Xgboots
  • Q2. Explain random forest
Round 3 - Technical 

(2 Questions)

  • Q1. Explain about your project
  • Q2. Explain the sequence to sequence models and transformers
  • Ans. 

    Sequence to sequence models are used in natural language processing to convert input sequences into output sequences.

    • Sequence to sequence models are commonly used in machine translation tasks, where the input is a sentence in one language and the output is the translated sentence in another language.

    • Transformers are a type of sequence to sequence model that use self-attention mechanisms to weigh the importance of diffe...

  • Answered by AI

Skills evaluated in this interview

Data Scientist Interview Questions & Answers

user image Aishwarya Shukla

posted on 8 Jun 2024

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

(1 Question)

  • Q1. Past experience

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
asked in Walmart
Q4. Describe the data you would analyze to solve cost and revenue opt ... read more
Q5. Clone a Linked List with Random Pointers Given a linked list wher ... read more

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Nov 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Round one was a combination of a technical round and a discussion on previous work experience. Questions - Previous work experience, Basic SQL questions, Basic Python questions, Basic Tableau question...
Round 2 - One-on-one 

(1 Question)

  • Q1. This was a culture fit round. This was a one on one discussion with the manager. Offer letter was rolled out after this round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover your basics in SQL, Python, Tableau and ML.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 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 

(1 Question)

  • Q1. Heavy SQL solutions
Round 3 - Case Study 

Retail case study, with soft skills is required for this round

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you're good in SQL. It will heavily revolve around SQL solving.

What people are saying about Target

View All
an operations manager
2w
Indian woman's $1300 Target run ends in shoplifting bust
An Indian woman allegedly spent over seven hours in a Target store, grabbing items worth $1,300 (Rs 1.1 lakh) and then tried to walk out without paying. The incident on May 1st went viral after a Target employee confronted her. Following this, the US Embassy in India warned that assault, theft, or burglary in the US could lead to visa revocation. The advisory was issued after the Illinois Target incident.
Got a question about Target?
Ask anonymously on communities.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Python and sql based questions

What are the roles & responsibilities of a Data Scientist at Target?

Model Development

  • Develop and deploy scalable data science models
  • Implement optimization-based solutions and mathematical models

Read full roles & responsibilities

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

(2 Questions)

  • Q1. Intermediate level SQL questions using joins and case when
  • Ans. 

    Intermediate SQL question focusing on joins and case when statements for data manipulation.

    • Joins combine rows from two or more tables based on a related column. Example: SELECT * FROM table1 JOIN table2 ON table1.id = table2.id.

    • CASE WHEN statements allow conditional logic in SQL queries. Example: SELECT name, CASE WHEN age < 18 THEN 'Minor' ELSE 'Adult' END AS age_group FROM users.

    • INNER JOIN returns only matching ro...

  • Answered by AI
  • Q2. String manipulation advanced level question in python

Target HR Interview Questions

44 questions and answers

Q. What do you know about this role?
Q. Can you provide a self-introduction?
Q. Why do you want to hire you?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Bias and variance with respect to model
  • Ans. 

    Bias and variance are two types of errors that can occur in a model.

    • Bias refers to the error introduced by approximating a real-world problem, leading to underfitting.

    • Variance refers to the error introduced by modeling the noise in the training data, leading to overfitting.

    • Balancing bias and variance is crucial for creating a model that generalizes well to unseen data.

  • Answered by AI
  • Q2. Hypotheses test

Skills evaluated in this interview

Are these interview questions helpful?

I appeared for an interview in Apr 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

I was asked two questions in this round . More emphasis was given on the theoretical aspect of the subject in this round .

  • Q1. How can you tune the hyperparameters of the XGBoost algorithm?
  • Ans. 

    Hyperparameters of XGBoost can be tuned using techniques like grid search, random search, and Bayesian optimization.

    • Use grid search to exhaustively search through a specified parameter grid

    • Utilize random search to randomly sample hyperparameters from a specified distribution

    • Apply Bayesian optimization to sequentially choose hyperparameters based on the outcomes of previous iterations

  • Answered by AI
  • Q2. Can you explain the hyperparameters in the XGBoost algorithm?
  • Ans. 

    Hyperparameters in XGBoost algorithm control the behavior of the model during training.

    • Hyperparameters include parameters like learning rate, max depth, number of trees, etc.

    • They are set before the training process and can greatly impact the model's performance.

    • Example: 'learning_rate': 0.1, 'max_depth': 5, 'n_estimators': 100

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Medium

This round basically tested some fundamental concepts related to Machine Learning and proper ways to implement a model.

  • Q1. What is the difference between Ridge and LASSO regression?
  • Ans. 

    Ridge and LASSO regression are both regularization techniques used in linear regression to prevent overfitting by adding penalty terms to the cost function.

    • Ridge regression adds a penalty term equivalent to the square of the magnitude of coefficients (L2 regularization).

    • LASSO regression adds a penalty term equivalent to the absolute value of the magnitude of coefficients (L1 regularization).

    • Ridge regression tends to sh...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Medium

This round was based on some basic concepts revolving around Deep Learning .

  • Q1. What are outlier values and how do you treat them?
  • Ans. 

    Outlier values are data points that significantly differ from the rest of the data, potentially affecting the analysis.

    • Outliers can be identified using statistical methods like Z-score or IQR.

    • Treatment options include removing outliers, transforming the data, or using robust statistical methods.

    • Example: In a dataset of salaries, a value much higher or lower than the rest may be considered an outlier.

  • Answered by AI
Round 4 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This is a cultural fitment testing round .HR was very frank and asked standard questions. Then we discussed about my role.

  • Q1. What do you know about the company?
  • Ans. 

    The company is a leading innovator in technology solutions, focusing on data analytics and machine learning to drive business success.

    • Founded in 2010, the company has rapidly grown to become a key player in the tech industry.

    • They specialize in providing data-driven insights to help businesses optimize their operations.

    • The company has a diverse portfolio, including products for predictive analytics and customer segmenta...

  • Answered by AI
  • Q2. Why should we hire you?

Interview Preparation Tips

Eligibility criteriaAbove 3 years of experienceWalmart interview preparation:Topics to prepare for the interview - Statistics , SQL , Machine Learning Algorithms , Data Wrangling , Neural NetworksTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Jan 2024. There were 4 interview rounds.

Round 1 - Case Study 

Case Study was related to customer propensity to buy.

Round 2 - Technical 

(2 Questions)

  • Q1. Linear Regression Assumptions
  • Ans. 

    Linear regression assumptions include linearity, independence, homoscedasticity, and normality.

    • Assumption of linearity: The relationship between the independent and dependent variables is linear.

    • Assumption of independence: The residuals are independent of each other.

    • Assumption of homoscedasticity: The variance of the residuals is constant across all levels of the independent variables.

    • Assumption of normality: The resid...

  • Answered by AI
  • Q2. ML Algorithms and Evaluation Metrics.
Round 3 - One-on-one 

(1 Question)

  • Q1. What is VIF(variance inflation factor)
  • Ans. 

    VIF is a measure of multicollinearity in regression analysis, indicating how much the variance of an estimated regression coefficient is increased due to collinearity.

    • VIF values greater than 10 indicate high multicollinearity

    • VIF is calculated for each predictor variable in a regression model

    • VIF is calculated as 1 / (1 - R^2) where R^2 is the coefficient of determination from regressing a predictor on all other predicto...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Why do you want to join?

Interview Preparation Tips

Interview preparation tips for other job seekers - Intermediate knowledge of ML algos and evaluation metrics is must. Python and SQL hand-on is required.

I appeared for an interview in Apr 2021.

Interview Questionnaire 

9 Questions

  • Q1. How can you tune the hyper parameters of XGboost,Random Forest,SVM algorithm?
  • Ans. 

    Hyperparameters of XGBoost, Random Forest, and SVM can be tuned using techniques like grid search, random search, and Bayesian optimization.

    • For XGBoost, important hyperparameters to tune include learning rate, maximum depth, and number of estimators.

    • For Random Forest, important hyperparameters to tune include number of trees, maximum depth, and minimum samples split.

    • For SVM, important hyperparameters to tune include ke...

  • Answered by AI
  • Q2. What do these hyper parameters in the above mentioned algorithms actually mean?
  • Ans. 

    Hyperparameters are settings that control the behavior of machine learning algorithms.

    • Hyperparameters are set before training the model.

    • They control the learning process and affect the model's performance.

    • Examples include learning rate, regularization strength, and number of hidden layers.

    • Optimizing hyperparameters is important for achieving better model accuracy.

  • Answered by AI
  • Q3. Difference between Ridge and LASSO and their geometric interpretation.
  • Ans. 

    Ridge and LASSO are regularization techniques used in linear regression to prevent overfitting.

    • Ridge adds a penalty term to the sum of squared errors, which shrinks the coefficients towards zero but doesn't set them exactly to zero.

    • LASSO adds a penalty term to the absolute value of the coefficients, which can set some of them exactly to zero.

    • The geometric interpretation of Ridge is that it adds a constraint to the size...

  • Answered by AI
  • Q4. How to fit a time series model? State all the steps you would follow.
  • Ans. 

    Steps to fit a time series model

    • Identify the time series pattern

    • Choose a suitable model

    • Split data into training and testing sets

    • Fit the model to the training data

    • Evaluate model performance on testing data

    • Refine the model if necessary

    • Forecast future values using the model

  • Answered by AI
  • Q5. RNN,CNN and difference between these two.
  • Ans. 

    RNN and CNN are neural network architectures used for different types of data.

    • RNN is used for sequential data like time series, text, speech, etc.

    • CNN is used for grid-like data like images, videos, etc.

    • RNN has feedback connections while CNN has convolutional layers.

    • RNN can handle variable length input while CNN requires fixed size input.

    • Both can be used for classification, regression, and generation tasks.

  • Answered by AI
  • Q6. Two Case studies related to optimisation. One was cost optimization and other one was Revenue optimization. What data would you look at to solve all these. How would you form the objective function.
  • Q7. Live coding on Time Series Modelling
  • Ans. 

    Time series modeling involves analyzing data points collected or recorded at specific time intervals to forecast future values.

    • Identify the type of time series data: univariate (single variable) or multivariate (multiple variables).

    • Visualize the data using plots to identify trends, seasonality, and anomalies.

    • Decompose the time series into trend, seasonality, and residual components for better understanding.

    • Use models l...

  • Answered by AI
  • Q8. There were some HR questions as well like how would you make someone understand the difference between a classification problem and a prediction problem.
  • Q9. Where do you see yourself in 3 years?
  • Ans. 

    In three years, I envision myself as a lead data scientist, driving impactful projects and mentoring junior team members.

    • Leading a team of data scientists on innovative projects, such as developing predictive models for healthcare outcomes.

    • Contributing to open-source data science projects to enhance my skills and give back to the community.

    • Continuing my education through certifications in machine learning and AI to sta...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I was asked questions from almost every field in Data Science. One has to be very technically sound and has to have clear understanding of all the ML algorithms.

If you don't know something,better to mention it clearly.

All the very best!

Skills evaluated in this interview

Target Interview FAQs

How many rounds are there in Target Data Scientist interview?
Target interview process usually has 2 rounds. The most common rounds in the Target interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Target Data Scientist 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 Target. The most common topics and skills that interviewers at Target expect are Python, SQL, Machine Learning, Data Analysis and Data Structures and Algorithms.
What are the top questions asked in Target Data Scientist interview?

Some of the top questions asked at the Target Data Scientist interview -

  1. explain the sequence to sequence models and transform...read more
  2. explain random for...read more
  3. explain Xgbo...read more

Tell us how to improve this page.

Overall Interview Experience Rating

1.5/5

based on 2 interview experiences

Interview Questions from Similar Companies

DMart Data Scientist Interview Questions
3.9
 • 465 Interviews
Tesco Data Scientist Interview Questions
3.8
 • 138 Interviews
View all
Target Data Scientist Salary
based on 35 salaries
₹20.8 L/yr - ₹35.8 L/yr
79% more than the average Data Scientist Salary in India
View more details

Target Data Scientist Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

2.8

Skill development

5.0

Work-life balance

3.0

Salary

4.0

Job security

4.2

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
320 salaries
unlock blur

₹24.2 L/yr - ₹45 L/yr

Senior Engineer
303 salaries
unlock blur

₹27.2 L/yr - ₹50 L/yr

Software Engineer
223 salaries
unlock blur

₹12.8 L/yr - ₹22.4 L/yr

Data Analyst
167 salaries
unlock blur

₹10 L/yr - ₹17.5 L/yr

Lead Engineer
166 salaries
unlock blur

₹47.1 L/yr - ₹87.2 L/yr

Explore more salaries
Compare Target with

Reliance Retail

3.9
Compare

DMart

3.9
Compare

Vishal Mega Mart

3.7
Compare

Shoppers Stop

4.0
Compare
write
Share an Interview