Data Science Interview Questions
Data Science Interview Questions
Questions
© Copyright by Interviewbit
Data Science Interview Questions
Over the years, data science has gained widespread importance due to the
importance of data. Data is considered as the new oil of the future which when
analyzed and harnessed properly can prove to be very beneficial to the stakeholders.
Not just this, a data scientist gets the exposure to work in diverse domains, solving
real-life practical problems all by making use of trendy technologies. The most
common real-time application is fast delivery of food in apps such as Uber Eats by
aiding the delivery person shows the fastest possible route to reach the destination
from the restaurant. Data Science is also used in item recommendation systems in e-
commerce sites like Amazon, Flipkart, etc which recommends the user what item
they can buy based on their search history. Not just recommendation systems, Data
Science is becoming increasingly popular in fraud detection applications to detect
any fraud involved in credit-based financial applications. A successful data scientist
can interpret data, perform innovation and bring out creativity while solving
problems that help drive business and strategic goals. This makes it the most
lucrative job of the 21st century. Learn More.
In this article, we will explore what are the most commonly asked interview questions
which will help both aspiring and experienced data scientists.
Data science involves the task of transforming data by using various technical
analysis methods to extract meaningful insights using which a data analyst can
apply to their business scenarios.
Data analytics deals with checking the existing hypothesis and information and
answers questions for a better and effective business-related decision-making
process.
Data Science drives innovation by answering questions that build connections
and answers for futuristic problems. Data analytics focuses on getting present
meaning from existing historical context whereas data science focuses on
predictive modeling.
Data Science can be considered as a broad subject that makes use of various
mathematical and scientific tools and algorithms for solving complex problems
whereas data analytics can be considered as a specific field dealing with specific
concentrated problems using fewer tools of statistics and visualization.
The following Venn diagram depicts the difference between data science and
analytics clearly:
Data analysis can not be done on a whole volume of data at a time especially when it
involves larger datasets. It becomes crucial to take some data samples that can be
used for representing the whole population and then perform analysis on it. While
doing this, it is very much necessary to carefully take sample data out of the huge
data that truly represents the entire dataset.
There are majorly two categories of sampling techniques based on the usage of
statistics, they are:
Probability Sampling techniques: Clustered sampling, Simple random
sampling, Stratified sampling.
Non-Probability Sampling techniques: Quota sampling, Convenience
sampling, snowball sampling, etc.
Underfitting: Here, the model is so simple that it is not able to identify the correct
relationship in the data, and hence it does not perform well even on the test data.
This can happen due to high bias and low variance. Linear regression is more prone
to Underfitting.
The following image depicts the representation of wide format and long format data:
A matrix can be decomposed into Eigenvectors and Eigenvalues and this process is
called Eigen decomposition. These are then eventually used in machine learning
methods like PCA (Principal Component Analysis) for gathering valuable insights
from the given matrix.
7. What does it mean when the p-values are high and low?
A p-value is the measure of the probability of having results equal to or more than the
results achieved under a specific hypothesis assuming that the null hypothesis is
correct. This represents the probability that the observed difference occurred
randomly by chance.
Low p-value which means values ≤ 0.05 means that the null hypothesis can be
rejected and the data is unlikely with true null.
High p-value, i.e values ≥ 0.05 indicates the strength in favor of the null
hypothesis. It means that the data is like with true null.
p-value = 0.05 means that the hypothesis can go either way.
10. Are there any differences between the expected value and
mean value?
There are not many differences between these two, but it is to be noted that these
are used in different contexts. The mean value generally refers to the probability
distribution whereas the expected value is referred to in the contexts involving
random variables.
14. How are the time series problems different from other
regression problems?
Time series data can be thought of as an extension to linear regression which
uses terms like autocorrelation, movement of averages for summarizing
historical data of y-axis variables for predicting a better future.
Forecasting and prediction is the main goal of time series problems where
accurate predictions can be made but sometimes the underlying reasons might
not be known.
Having Time in the problem does not necessarily mean it becomes a time series
problem. There should be a relationship between target and time for a problem
to become a time series problem.
The observations close to one another in time are expected to be similar to the
ones far away which provide accountability for seasonality. For instance, today’s
weather would be similar to tomorrow’s weather but not similar to weather
from 4 months from today. Hence, weather prediction based on past data
becomes a time series problem.
Based on the above formula, we can deduce that the correlation is dimensionless
whereas covariance is represented in units that are obtained from the multiplication
of units of two variables.
The following image graphically shows the difference between correlation and
covariance:
20. Why is data cleaning crucial? How do you clean the data?
While running an algorithm on any data, to gather proper insights, it is very much
necessary to have correct and clean data that contains only relevant information.
Dirty data most o en results in poor or incorrect insights and predictions which can
have damaging effects.
For example, while launching any big campaign to market a product, if our data
analysis tells us to target a product that in reality has no demand and if the campaign
is launched, it is bound to fail. This results in a loss of the company’s revenue. This is
where the importance of having proper and clean data comes into the picture.
Data Cleaning of the data coming from different sources helps in data
transformation and results in the data where the data scientists can work on.
Properly cleaned data increases the accuracy of the model and provides very
good predictions.
If the dataset is very large, then it becomes cumbersome to run data on it. The
data cleanup step takes a lot of time (around 80% of the time) if the data is
huge. It cannot be incorporated with running the model. Hence, cleaning data
before running the model, results in increased speed and efficiency of the
model.
Data cleaning helps to identify and fix any structural issues in the data. It also
helps in removing any duplicates and helps to maintain the consistency of the
data.
The following diagram represents the advantages of data cleaning:
Wrapper Methods:
These methods need some sort of method to search greedily on all possible
feature subsets, access their quality by learning and evaluating a classifier
with the feature.
The selection technique is built upon the machine learning algorithm on
which the given dataset needs to fit.
There are three types of wrapper methods, they are:
Forward Selection: Here, one feature is tested at a time and new
features are added until a good fit is obtained.
Backward Selection: Here, all the features are tested and the non-
fitting ones are eliminated one by one to see while checking which
works better.
Recursive Feature Elimination: The features are recursively checked
and evaluated how well they perform.
These methods are generally computationally intensive and require high-
end resources for analysis. But these methods usually lead to better
predictive models having higher accuracy than filter methods.
Embedded Methods:
Embedded methods constitute the advantages of both filter and wrapper
methods by including feature interactions while maintaining reasonable
computational costs.
These methods are iterative as they take each model iteration and carefully
extract features contributing to most of the training in that iteration.
Examples of embedded methods: LASSO Regularization (L1), Random
Forest Importance.
23. How will you treat missing values during data analysis?
The impact of missing values can be known a er identifying what kind of variables
have the missing values.
If the data analyst finds any pattern in these missing values, then there are
chances of finding meaningful insights.
In case of patterns are not found, then these missing values can either be
ignored or can be replaced with default values such as mean, minimum,
maximum, or median values.
If the missing values belong to categorical variables, then they are assigned with
default values. If the data has a normal distribution, then mean values are
assigned to missing values.
If 80% values are missing, then it depends on the analyst to either replace them
with default values or drop the variables.
24. What does the ROC Curve represent and how to create it?
ROC (Receiver Operating Characteristic) curve is a graphical representation of the
contrast between false-positive rates and true positive rates at different thresholds.
The curve is used as a proxy for a trade-off between sensitivity and specificity.
The ROC curve is created by plotting values of true positive rates (TPR or sensitivity)
against false-positive rates (FPR or (1-specificity)) TPR represents the proportion of
observations correctly predicted as positive out of overall positive observations. The
FPR represents the proportion of observations incorrectly predicted out of overall
negative observations. Consider the example of medical testing, the TPR represents
the rate at which people are correctly tested positive for a particular disease.
26. What is the difference between the Test set and validation
set?
The test set is used to test or evaluate the performance of the trained model. It
evaluates the predictive power of the model.
The validation set is part of the training set that is used to select parameters for
avoiding model overfitting.
Kernel functions are generalized dot product functions used for the computing dot
product of vectors xx and yy in high dimensional feature space. Kernal trick method
is used for solving a non-linear problem by using a linear classifier by transforming
linearly inseparable data into separable ones in higher dimensions.
Random forest is better than multiple decision trees as random forests are much
more robust, accurate, and lesser prone to overfitting as it is an ensemble method
that ensures multiple weak decision trees learn strongly.
We know that,
Probability of finding atleast 1 shooting star in 15 min = P(sighting in 15min) = 30% =
Hence, Probability of not sighting any
shooting star in 15 min = 1-P(sighting in 15min)
= 1-0.3
= 0.7
32. Toss the selected coin 10 times from a jar of 1000 coins. Out
of 1000 coins, 999 coins are fair and 1 coin is double-headed,
assume that you see 10 heads. Estimate the probability of
getting a head in the next coin toss.
We know that there are two types of coins - fair and double-headed. Hence, there are
two possible ways of choosing a coin. The first is to choose a fair coin and the second
is to choose a coin having 2 heads.
P(selecting fair coin) = 999/1000 = 0.999
P(selecting double headed coin) = 1/1000 = 0.001
Using Bayes rule,
33. What are some examples when false positive has proven
important than false negative?
Before citing instances, let us understand what are false positives and false negatives.
False Positives are those cases that were wrongly identified as an event even if
they were not. They are called Type I errors.
False Negatives are those cases that were wrongly identified as non-events
despite being an event. They are called Type II errors.
Some examples where false positives were important than false negatives are:
In the medical field: Consider that a lab report has predicted cancer to a patient
even if he did not have cancer. This is an example of a false positive error. It is
dangerous to start chemotherapy for that patient as he doesn’t have cancer as
starting chemotherapy would lead to damage of healthy cells and might even
actually lead to cancer.
In the e-commerce field: Suppose a company decides to start a campaign where
they give $100 gi vouchers for purchasing $10000 worth of items without any
minimum purchase conditions. They assume it would result in at least 20%
profit for items sold above $10000. What if the vouchers are given to the
customers who haven’t purchased anything but have been mistakenly marked
as those who purchased $10000 worth of products. This is the case of false-
positive error.
34. Give one example where both false positives and false
negatives are important equally?
In Banking fields: Lending loans are the main sources of income to the banks. But if
the repayment rate isn’t good, then there is a risk of huge losses instead of any
profits. So giving out loans to customers is a gamble as banks can’t risk losing good
customers but at the same time, they can’t afford to acquire bad customers. This
case is a classic example of equal importance in false positive and false negative
scenarios.
The sample data used for modeling represents the entire population.
There exists a linear relationship between the X-axis variable and the mean of
the Y variable.
The residual variance is the same for any X values. This is called
homoscedasticity
The observations are independent of one another.
Y is distributed normally for any value of X.
Extreme violations of the above assumptions lead to redundant results. Smaller
violations of these result in greater variance or bias of the estimates.
40. How is the grid search parameter different from the random
search tuning strategy?
Tuning strategies are used to find the right set of hyperparameters. Hyperparameters
are those properties that are fixed and model-specific before the model is tested or
trained on the dataset. Both the grid search and random search tuning strategies are
optimization techniques to find efficient hyperparameters.
Grid Search:
Here, every combination of a preset list of hyperparameters is tried out and
evaluated.
The search pattern is similar to searching in a grid where the values are in a
matrix and a search is performed. Each parameter set is tried out and their
accuracy is tracked. a er every combination is tried out, the model with the
highest accuracy is chosen as the best one.
The main drawback here is that, if the number of hyperparameters is
increased, the technique suffers. The number of evaluations can increase
exponentially with each increase in the hyperparameter. This is called the
problem of dimensionality in a grid search.
Random Search:
In this technique, random combinations of hyperparameters set are tried
and evaluated for finding the best solution. For optimizing the search, the
function is tested at random configurations in parameter space as shown in
the image below.
In this method, there are increased chances of finding optimal parameters
because the pattern followed is random. There are chances that the model
is trained on optimized parameters without the need for aliasing.
This search works the best when there is a lower number of dimensions as it
takes less time to find the right set.
Conclusion:
Data Science is a very vast field and comprises many topics like Data Mining, Data
Analysis, Data Visualization, Machine Learning, Deep Learning, and most importantly
it is laid on the foundation of mathematical concepts like Linear Algebra and
Statistical analysis. Since there are a lot of pre-requisites for becoming a good
professional Data Scientist, the perks and benefits are very big. Data Scientist has
become the most sought out job role these days. In this article, we have seen the
most commonly asked interview questions on Data Science for both freshers and
experienced.
Useful Resources: