exam questions

Exam DP-100 All Questions

View all questions & answers for the DP-100 exam

Exam DP-100 topic 1 question 31 discussion

Actual exam question from Microsoft's DP-100
Question #: 31
Topic #: 1
[All DP-100 Questions]

You make use of Azure Machine Learning Studio to develop a linear regression model. You perform an experiment to assess various algorithms.
Which of the following is an algorithm that reduces the variances between actual and predicted values?

  • A. Fast Forest Quantile Regression
  • B. Poisson Regression
  • C. Boosted Decision Tree Regression
  • D. Linear Regression
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
RyanTsai
Highly Voted 3 years, 9 months ago
should be linear regression
upvoted 22 times
David_Tadeu
3 years, 2 months ago
Linear regression minimizes the sum of squares, i.e. it minimizes S=Sum[(y_i-f_i)^2,{i,1,n}], where y_i is the actual value and f_i the predicted value (we can see it as the average). Since the variance of {y_i} is S/n, minimizing S is equivalent to minimizing the variance.
upvoted 3 times
...
...
jed_elhak
Highly Voted 3 years, 9 months ago
Correct answer is C : It builds each regression tree in a step-wise fashion, using a predefined loss function to measure the error in each step and correct for it in the next. Thus the prediction model is actually an ensemble of weaker prediction models. reference:https://docs.microsoft.com/en-us/azure/machine-learning/algorithm-module-reference/boosted-decision-tree-regression
upvoted 16 times
dija123
3 years, 6 months ago
Agree with you
upvoted 1 times
...
...
PatAms538
Most Recent 1 week ago
Selected Answer: D
The Linear Regression is built upon the F-test. The logic of the F-test: the amount of systematic variance divided by the amount of unsystematic variance
upvoted 1 times
...
brzhanyu
8 months, 2 weeks ago
The correct answer is Boosted Decision Tree Regression. Boosted Decision Tree Regression is an algorithm that reduces the variance between actual and predicted values by iteratively combining multiple weak learners (decision trees) to create a stronger, more accurate model. This helps minimize the differences between the predicted values and the actual values by focusing on the errors made by previous models. Linear regression, while useful for linear relationships, does not specifically focus on reducing variance in the way ensemble methods like boosting do.
upvoted 1 times
...
6c3c83d
1 year, 1 month ago
Selected Answer: D
D is linear and reduces the mean squared error which is the variance between actual and predicted. Regression trees do that too but are not linear
upvoted 1 times
...
GHill1982
1 year, 5 months ago
Selected Answer: D
Linear regression computes the linear relationship between a dependent variable and one or more independent features. It uses the ordinary least squares method to minimize the sum of the squared errors between the actual and predicted values.
upvoted 2 times
...
jdada
1 year, 7 months ago
D. Linear Regression
upvoted 2 times
...
james2033
1 year, 8 months ago
Selected Answer: D
Question keyword 'develop a linear regression model'. Answer keyword 'Linear regression' make (D) is correct answer. https://learn.microsoft.com/en-us/azure/machine-learning/component-reference/linear-regression?view=azureml-api-2 Quote: 'create a linear regression model' , 'Linear regression is a common statistical method, ...'
upvoted 5 times
...
Nadine_nm
1 year, 10 months ago
I think the question is poorly asked, since the algorithme used depends mainy on the data. The answer is linear regression, since Poisson regression is actually a form of generalized linear modeling and is often considered a non-linear regression model due to its underlying mathematical structure. Also Boosted decision tree, in a non linear regression as well.
upvoted 2 times
...
phydev
1 year, 11 months ago
Selected Answer: D
Boosted decision tree regression a non-linear regression model.
upvoted 1 times
...
endeesa
2 years ago
Selected Answer: C
Boosting will definitely reduce the variances
upvoted 1 times
daviduzo
2 years ago
But the the question says we're trying to develop a linear regression model. Shouldn't the influence the option and it's supposed to be D
upvoted 1 times
...
...
NickRafe
2 years, 1 month ago
Answer should be C. Reference: https://www.kdd.org/kdd2016/papers/files/adf0653-poyarkovA.pdf
upvoted 1 times
...
EXAMTOPICS2134
2 years, 2 months ago
Decision trees are non linear. Unlike Linear regression there is no equation to express relationship between independent and dependent variables
upvoted 1 times
...
bibabrian
2 years, 2 months ago
guys I know some of these questions are crap but read carefully it says "assess various algorithms.", which means a boosting algorithm like Boosted Decision Tree Regression makes sense.
upvoted 2 times
...
bvkr
2 years, 2 months ago
ChatGPT answer: Option D: Linear Regression, is an algorithm that can help to reduce the variances between actual and predicted values in a linear regression model.
upvoted 1 times
...
sahithi2004
2 years, 3 months ago
Selected Answer: C
Boosted Decision Tree Regression is an algorithm that reduces the variances between actual and predicted values. Linear regression aims to find the best linear relationship between the independent and dependent variables, while Fast Forest Quantile Regression is a regression algorithm that can provide estimates of conditional quantiles of the response variable. Poisson Regression is used when the dependent variable is a count or frequency, and the relationship between the dependent and independent variables is modelled using a Poisson distribution.
upvoted 1 times
...
Jin_22
2 years, 3 months ago
D. Linear Regression is an algorithm that reduces the variances between actual and predicted values. Linear regression is a type of regression analysis that finds the linear relationship between a dependent variable and one or more independent variables. The goal of linear regression is to minimize the sum of the squared residuals (the differences between the predicted and actual values), which is a measure of the variance between the predicted and actual values. Therefore, linear regression aims to reduce the variances between actual and predicted values.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...