Perform a SQL join, AB test, case study, resume deep dive
Data Science Engineer Interview Questions
40,382 data science engineer interview questions shared by candidates
Can you find the first date of log on for a platform given a list of users.
We are looking for a program that manages disjointed intervals of integers. E.g.: [[1, 3], [4, 6]] is a valid object gives two intervals. [[1, 3], [3, 6]] is not a valid object because it is not disjoint. [[1, 6]] is the intended result. Empty array [] means no interval, it is the default/start state. We want you to implement two functions: add(from, to) remove(from, to) Here is an example sequence: Start: [] Call: add(1, 5) => [[1, 5]] Call: remove(2, 3) => [[1, 2], [3, 5]] Call: add(6, 8) => [[1, 2], [3, 5], [6, 8]] Call: remove(4, 7) => [[1, 2], [3, 4], [7, 8]] Call: add(2, 7) => [[1, 8]] etc. =================
SQL 1: How many posts were reported yesterday for each report reason ? given a data
SQL question One basic data engineering related question
Why do you want to join FDM
What is joins? Different type of Joins? Inner Join
Questions were more about ML Algorithms.
Deep dive of a past data science/ML project
Describe the process of a AB test
Viewing 2111 - 2120 interview questions