Typical HR questions (i.e., challenges you encountered and how you addressed them), why you are interested in the company or the job, what experience you have that will facilitate your success in the position
Data Scientist Trainee Interview Questions
54,476 data scientist trainee interview questions shared by candidates
Create a function that computes the n fib sequence
Asked alot of nonsense questions
A coding challenge including 2 questions
in a given list search of consecutive n numbers whose sum is equal to a given x.
Perform a SQL join, AB test, case study, resume deep dive
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
Here is a defective product I recently worked on. What would be your first steps to diagnose the problem?
Viewing 3061 - 3070 interview questions