Which program correctly subnets the SASHELP. BASEBALL data set to include only the players in the East Division with 75 or more hits?

To subset data in SAS using the data step, the where statement is used to specify the conditions that observations must meet to be included in the new data set. The correct syntax for subsetting the SASHELP.BASEBALL data set to include only players in the 'East' Division with 75 or more hits is as follows:
data bball;
set sashelp.baseball;
where Division = 'East' and nHits >= 75;
run;
This code, as shown in option D, uses the where statement with the correct logical operator and to ensure that both conditions must be true for a record to be included in the new dataset. Options A, B, and C either use incorrect syntax or logical operations that do not match the required conditions for the subset. Option A has an incorrect combination of conditions, B uses two where statements which is not valid syntax, and C incorrectly uses the or operator which would include players not in the 'East' Division or with fewer than 75 hits.
Wilda
6 months agoRodney
6 months agoScarlet
6 months agoSarah
6 months agoJanae
6 months agoJolanda
7 months agoTrina
7 months agoMyra
7 months agoNoble
7 months agoAnjelica
7 months agoWalton
8 months agoKaran
8 months agoLyndia
8 months agoYuonne
8 months agoAvery
11 months agoLourdes
9 months agoLuisa
10 months agoWilliam
10 months agoKarrie
11 months agoDaniela
9 months agoHarrison
10 months agoDulce
11 months agoFrankie
11 months agoTegan
11 months agoPearly
11 months agoAndra
10 months agoLavonna
10 months agoElenor
11 months agoDulce
11 months agoCarin
11 months agoMuriel
10 months agoSlyvia
10 months agoKassandra
11 months ago