The real wordsTheory
Section B only: what a decision tree is
Decision treeA supervised classifier that repeatedly splits the data on one attribute at a time, forming a tree whose internal nodes are tests, whose branches are answers, and whose leaves are predicted classes.
Its great virtue is that the fitted model reads as plain rules: "if income is low then yes; if income is high and age is young then no". Nothing else in this course produces an explanation a manager can repeat.
Section A's own list of classifiers does name decision trees and random forest, so the vocabulary is fair game even though the arithmetic was Section B's.