⟩ How would you write a LEFT JOIN statement to return a result set of movie.title’s and director.name’s?
SELECT
movie.title,
director.name
FROM movie LEFT JOIN director ON movie.id = director.movie_id
SELECT
movie.title,
director.name
FROM movie LEFT JOIN director ON movie.id = director.movie_id
Do you know what is logistic regression?
Explain me why data cleaning plays a vital role in analysis?
Tell us why do we use convolutions for images rather than just FC layers?
Tell us how has your prior experience prepared you for a role in data science?
What is star schema?
Explain me what is logistic regression? Or State an example when you have used logistic regression recently?
Tell me is rotation necessary in PCA? If yes, Why? What will happen if you don’t rotate the components?
Explain me why do you want to work at this company as a data scientist?
Tell us how would you go about doing an Exploratory Data Analysis (EDA)?
Tell me why do segmentation CNNs typically have an encoder-decoder style / structure?