Home > Machine Learning 101 > Quizzes > Machine Learning 101 Practice Test: Decision Trees
Machine Learning 101 Practice Test: Decision Trees
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 18% Most missed: “Which of the following is expressed by the given equation Y = β0 + β1X + Ɛ which…”
Quiz on important decision trees concepts including decision tree pruning, inductive bias, classification trees, regression trees, and the powerful Random Forest algorithm.   Decision trees are a type of machine learning algorithm that split a dataset based on specific parameters until a final decision is made. They are one of the most easily explainable types of machine learning models.  Here are some basics about decision trees: Pruning: A technique that simplifies decision trees by reducing the rules. This helps to avoid complexity and improves accuracy. Splitting: Decision trees... Show more
Machine Learning 101 Practice Test: Decision Trees
Time left 00:00
25 Questions

1. Which of the following statements is not true about the Regression trees?
2. Suppose in a decision tree, we are making some simplifying assumptions that each instance is a vector of d bits (X = {0, 1}d). Which of the following statements is not true about the above situation?
3. Splitting is the process of dividing a node into two or more sub-nodes.
4. Which of the following statements is not true about ID3?
5. According to Occam’s Razor, which of the following statements is not favorable to short hypotheses?
6. Which of the following is expressed by the given equation Y = β0 + β1X + Ɛ which shows a real-valued dependent variable Y is modeled as function of a real-valued independent variable X plus noise?
7. Which of the following statements is not true about the Random forests?
8. What does it mean by the VC dimension of a class is 2d?
9. Which of the following is represented by the below figure?

10. Which of the following statements is not true about the Regression trees?
11. In a splitting rule at internal nodes of the tree based on thresholding the value of a single feature, it follows that a tree with k leaves can shatter a set of k instances.
12. Practical decision tree learning algorithms are based on heuristics.
13. Which of the following statements is not true about Minimum number of objects pruning?
14. Post pruning is also known as backward pruning.
15. Which of the following statements is not true about a splitting rule at internal nodes of the tree based on thresholding the value of a single feature?
16. Which of the following statements is true about Candidate elimination?
17. Which of the following statements is not true about Reduced error pruning?
18. Which of the following statements are not true about Inductive bias in ID3?
19. Decision tree uses the inductive learning machine learning approach.
20. Which of the following statements is not true about Classification trees?
21. Which of the following statements is not true about CART?
22. Pre pruning is also known as online pruning.
23. Which of the following statements is not true about the Decision tree?
24. Which of the following statements are not true about the Classification trees?
25. Consider the example, number of corrected mis – classifications at a particular node, n'(t) = 15.5, and number of corrected mis – classifications for sub – tree, n'(Tt) = 12. N(t) is the number of training set examples at node t and it is equal to 35. Here the tree should be pruned.