WGU C170 - PRE-ASSESSMENT LATEST 2021 GRADED A+ A salesperson is authorized to sell many products and a product can be sold by many salespersons. Which kind of binary relationship does this scenario describe? One-to-one One-to-many Many-to-many One-to-one binary correct answer- Many-to-many Which two examples are attributes? Choose 2 answers A person attending a meeting An employee number A sales meeting A meeting code correct answer- An employee number A meeting code Which delete rule sets column values in a child table to a missing value when the matching data is deleted from the parent table? Restrict Cascade Matching Set-to-Null correct answer- Set-to-Null Refer to the given SQL statement. CREATE TABLE member ( member_id INT UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY (member_id), last_name VARCHAR(20) NOT NULL, first_name VARCHAR(20) NOT NULL,