Which of the following is the correct if clause to determine whether choice is anything other than 10? OA) if not (choice < 10 and choice > 10): OB) if choice != 10: OC) if choice >> 10: OD) if choice != 10 Question 11 (1 point) Which of the following is the correct if clause to determine whether y is in the range 10 through 50, inclusive? A) if 10 > y and y < 50: B) if y >= 10 and y <= 50: OC) if y >= 10 or y <= 50: OD) if 10 < y or y > 50: