28

Curated list of 70 data science interview questions

 5 years ago
source link: https://www.tuicool.com/articles/hit/EbIz2eq
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Interviewing for a role as a data scientist or analyst? You've come to the right place! Below we've curated a list of data science interview questions from multiple sources to help make your preparation easier.

For a data science/analyst interview, the interviewer will ask a wide range of topics covering statistics, programming, data modeling, and business prowess. This guide contains questions broken out by high-level topics that a data scientist or analyst interviewee should expect when interviewing.

These questions will provide a great starting point. However, you’ll probably be asked deeper level questions on a few specific areas. To get deeper questions as well as the in-depth solutions, sign up for ouremail newsletter, where we send a few interview questions per week.

Statistics

Statistics is a Data Scientist’s and analyst bread and butter. Statistics are the guiding principles to collection, organizing, and interpreting data, sounds pretty core to data science huh?

  1. What is the importance of the Central Limit Theorem?
  2. What is sampling? Can you provide an example of a sampling method? Can you provide an example of a time in the past where you needed to use sampling?
  3. What is Type I error and how is it different from Type II error?
  4. How would you explain a linear regression to a non-technical person?
  5. What are the assumptions of linear regression?
  6. What is selection bias?
  7. How would you explain a logistic regression to a non-technical person?
  8. Be prepared to answer conditional probability questions and Bayesian probability questions.
  9. What are the assumptions of a logistic regression?
  10. Explain collinearity to me.
  11. What are key factors to running a successfuly A/B test?
  12. What is a confidence interval and how do you interpret it?
  13. How would you estimate the disease probability in a city given the probability is very low nationwide?
  14. If you have a monthly collection of time series data, how can you tell if there is a "significant" difference between this month and previous month data?
  15. In any 15-minute interval, there is a 20% probability that you will see at least one shooting star. What is the probability that you see at least one shooting star in the period of an hour?
  16. You have an 50-50 mixture of two normal distributions with the same standard deviation. How far apart do the means need to be in order for this distribution to be bimodal?
  17. A couple tells you that they have two children, at least one of which is a girl. What is the probability that they have two girls?
  18. What is the probability of rolling a 4 or 7 for two 6 sided dice?
  19. On a dating site, users can select 1 out of 10 adjectives to describe themselves. A match is declared between two users if they match on at least 4 adjectives. Given a pool of 10 independent users, what is the probabilty that at least two will be a match?
  20. You have two coins, one of which is fair and comes up heads with a probability 1/2, and the other which is biased and comes up heads with probability 3/4. You randomly pick coin and flip it twice, and get heads both times. What is the probability that you picked the fair coin?

Modeling

Understanding the fundamentals of modeling data will be important for your data science interview. A lot of data science is interpreting large data sets, and making sense of what is happening. Modeling can play a pivotal role in efficiently making sense of large, multidimensional data sets.

  1. Can you explain the process of developing a ML algorithm.
  2. How would you effectively represent data with 5 dimensions?
  3. How is kNN different from k-means clustering?
  4. How would you create a logistic regression model?
  5. What is precision and recall? How do they relate to the ROC curve?
  6. Explain the difference between L1 and L2 regularization methods.
  7. What is one way that you would handle an imbalanced dataset that’s being used for prediction?
  8. Do you think 50 small decision trees are better than a large one? Why?
  9. Is it better to spend 5 days developing a 90% accurate solution, or 10 days for 100% accuracy?
  10. What is random forest?
  11. If you have two algorithms, how do you know one performs better than the other?
  12. Given location data of golf balls in games, how would construct a model that can advise golfers where to aim?
  13. You have data on all purchases of customers at a grocery store. Describe to me how you would program an algorithm that would cluster the customers into groups. How would you determine the appropriate number of clusters to include?
  14. What error metric would you use to evaluate how good a binary classifier is? What if the classes are imbalanced? What if there are more than 2 groups?
  15. What are various ways to predict a binary response variable? Can you compare two of them and tell me when one would be more appropriate? What’s the difference between these? (SVM, Logistic Regression, Naive Bayes, Decision Tree, etc.)
  16. Given a database of all previous alumni donations to your university, how would you predict which recent alumni are most likely to donate?

Programming

Another large portion of data science is aggregating and processing the data. Most data sets are super messy, and require a lot of pre-processing, and this is why employers want data scientist to understand the fundamentals of programming. For these problems, explaining your logic outloud to the interviewer is the most important thing to do. Once you come up with a solution, you’ll probably be asked to explain the run-time of your algorithm and come up with a way to make your algorithm run faster.

  1. What is your favorite programming language and why?
  2. Tell me about an algorithm you’ve recently created.
  3. How would you clean a data set in Python (or any other language)?
  4. {Whiteboard} Given a list A of objects, and another list B which is identical to A except that one element is removed, how would you find which element is missing?
  5. {Whiteboard} Write a Python function that displays the first n Fibonacci numbers.
  6. {Whiteboard} Write a function that prints the least integer that is not present in a given list and cannot be represented by the summation of the sub-elements of the list.
  7. Given a binary tree and a node, print all cousins of given node. Note that siblings should not be printed.
  8. Given a list of tweets, determine the top 10 most used hashtags.
  9. You have a stream of data coming in of size n, but you don’t know what n is ahead of time. Can you write an algorithm that will take a random sample of k elements?
  10. Can you write an algorithm that can calculate the square root of a number.

SQL

As a data scientist, being able to pull data from the source is very important to a lot of employers. Knowing basic SQL will help you glide right through the SQL questions of your interview with ease.

  1. What does the GROUP BY function in SQL do?
  2. What is the difference between an inner join and a union?
  3. How do you eliminate duplicate rows from a query result?
  4. Given a impressions table with ad_id, click (a boolean indicator that the ad was clicked), and date, can you write a SQL query that will tell me the monthly click-through-rate all ads?
  5. Can you write a query that returns the name of each department and a count of the number of employees in each? Below are the tables' schema:
    • EMPLOYEES containing: Emp_ID (Primary key) and Emp_Name
    • EMPLOYEE_DEPT containing: Emp_ID (Foreign key) and Dept_ID (Foreign key)
    • DEPTS containing: Dept_ID (Primary key) and Dept_Name

Behavioral + Cultural fit

You can be a great data scientist or data analyst ever, but if you don’t mesh with the culture that could prevent you from suceeding in the role, or being hired in the first place. Because of this, it's important to have a few situations prepared prior to interviewing that highlight your character and capabilities! Keep it cool, and let your personality shine through!

  1. Introduce me to something you’re passionate about.
  2. Tell me about a time you failed, and what you have learned from it.
  3. What have you done in your previous job that you are really proud of?
  4. What’s a project you would want to work on at our company?
  5. Tell me about a time where you resolved a conflict.
  6. Tell me about a time when you took initiative.
  7. Suppose you encounter a tedious, boring task. How would you deal with it and motivate yourself to complete it?
  8. What are your top 5 predictions for the next 20 years?
  9. What personality traits do you butt heads with?
  10. If you had one superpower, what would it be?

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK