Linear Regression : 33 Must Do Interview Questions
Author(s): Ananya Originally published on Towards AI. Linear Regression : 33 Must Do Interview Questions I write articles on Data Science, Finance and philosophy. In this one, I am focusing on one of the popular machine learning algorithms Linear Regression, if you …
SVM : 40 must visit Interview Questions (Part 2)
Author(s): Ananya Originally published on Towards AI. I write articles on Data Science, Finance and philosophy. In this one, I am focusing on one of the popular machine learning algorithms SVM, if you are someone who like reading about these topics feel …
20 Must Visit SQL Questions For Interviews
Author(s): Ananya Originally published on Towards AI. Q1. Find the total number of orders placed by a customer (101) in a day. Table: Order_Details cust_id | order_id | order_date Code: select date_trunc(‘day’, order_date) as day, cust_id as customers count(distinct order_id) as orders …