A cereal table lists name, calories, sugars, fiber, and rating per cereal. To predict rating, what does one row hold?
You want to predict whether a person buys popcorn at the cinema. Your raw logs list each ticket sale with the buyer's age, the snack bought, and the show time. What should one row of your training table represent?
A breakfast dataset has one line per cereal with columns: name, calories, sugars, fiber, rating. The goal is to predict rating from the other values. What does one row of this data hold?
A shop grid has one row per customer with columns age, visits, spend. What sits in row 4, column 2?
A dataset has a column weight_kg and also a column weight_g holding the same weights in grams. Keeping both columns gives the model new information it could not get from weight_kg alone.
Circle one: True False
Logs list each ticket sale with age, snack, and show time. To predict popcorn buys, what should one row represent?
A table of houses has columns: rooms, area, price, and neighborhood, where neighborhood is text like "Riverside" or "Hilltop". The model can only multiply and add numbers. What must be done to the neighborhood column before the table becomes a feature matrix?
A distance model sees income from 0 to 200000 and schooling from 0 to 10, used raw. Which feature dominates the distance, and why?
A patient table holds ID, measurements, N_Days, Status, and Drug, and the goal is to predict Status. Which columns enter the feature matrix?
Jo trains a distance model on raw income and schooling years and trusts the distances. What is wrong?