A community-theater box office wants last season’s no-shows sorted into “likely late” versus “likely cancel” after a person picks columns such as weekday and weather. Which AI approach does this describe?
Select an answer to reveal the explanation.
Short Explanation
Picture sorting mail into labeled bins after someone chooses which stamps matter. Classical ML starts with prepared data, hand-picked features, and a training pass. That is different from a rule table, a text generator, or a network that invents its own features.
Full Explanation
Classical machine learning is data-driven: you prepare historical examples, select features such as weekday or weather, and train a model to categorize or predict. The box-office scenario matches that pattern because a person chooses the columns before training. Symbolic AI would encode explicit rules; generative AI would create new content; deep learning would learn features from large messy inputs without hand-listing them. Keeping classical ML distinct helps testers place vendor pitches on the syllabus spectrum.