专栏名称: 大数据应用
数据应用学院被评为2016北美Top Data Camp, 是最专业一站式数据科学咨询服务机构,你的数据科学求职咨询专家!
目录
相关文章推荐
网信内蒙古  ·  关于发布2025年第一批数据领域国家标准需求的通知 ·  2 小时前  
网信内蒙古  ·  关于发布2025年第一批数据领域国家标准需求的通知 ·  2 小时前  
大数据文摘  ·  为什么中国只有一个 DeepSeek? ·  4 天前  
艺恩数据  ·  春节档观众满意度亮眼 ... ·  1 周前  
艺恩数据  ·  明星·剧集·综艺市场概览与洞察 ·  5 天前  
51好读  ›  专栏  ›  大数据应用

每日一练 | Data Scientist & Business Analyst & Leetcode 面试题 340

大数据应用  · 公众号  · 大数据  · 2018-04-24 09:28

正文

自2017年6月15日起,数据应用学院与你一起温习数据科学(DS)和商业分析(BA)领域常见的面试问题。从2017年10月4号起,每天再为大家分享一道Leetcode算法题。


希望积极寻求相关领域工作的你每天关注我们的问题并且与我们一起思考,我们将会在第二天给出答案。


Day 240


DS Interview Questions

Give some classification situations where you will use an SVM over a RandomForest Machine Learning algorithm and vice-versa.


BA Interview Questions

Case interview: basic business problem (if product X costs Capital One $4.00 per unit, with an $800 sunk cost, and we charge X amount of dollars along with a $10 annual fee, how many do we need to sell to break even, etc). Followed by a longer discussion of more complex problems that the situation might entail


LeetCode Questions

Sqrt(x)


Description: Implement int sqrt(int x).

Input: 2147483647

Output: 46340


欲知答案如何?请见下期分解!



Day 239 答案揭晓


DS Interview Questions

What is seasonality in time series modeling?

Answer:

Seasonality in time series occurs when time series shows a repeated pattern over time. E.g., stationary sales decreases during the holiday season, air conditioner sales increases during the summers etc. are few examples of seasonality in a time series.


Seasonality makes your time series non-stationary because the average value of the variables at different time periods. Differentiating a time series is generally known as the best method of removing seasonality from a time series. Seasonal differencing can be defined as a numerical difference between a particular value and a value with a periodic lag.


BA Interview Questions

Explain what is KPI, the design of experiments and 80/20 rule?

Answer:

KPI : It stands for Key Performance Indicator, it is a metric that consists of any combination of spreadsheets, reports or charts about business process.

Design of experiments : It is the initial process used to split your data, sample and set up of a data for statistical analysis.

80/20 rules : It means that 80 percent of your income comes from 20 percent of your clients.


LeetCode Questions

Description:

Given two binary strings, return their sum (also a binary string).

Input: a = “11” b = “1”

Output: “100”







请到「今天看啥」查看全文