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
9 months agoRodney
9 months agoScarlet
9 months agoSarah
9 months agoJanae
9 months agoJolanda
10 months agoTrina
10 months agoMyra
10 months agoNoble
10 months agoAnjelica
10 months agoWalton
11 months agoKaran
11 months agoLyndia
11 months agoYuonne
11 months agoAvery
1 year agoLourdes
12 months agoLuisa
1 year agoWilliam
1 year agoKarrie
1 year agoDaniela
12 months agoHarrison
1 year agoDulce
1 year agoFrankie
1 year agoTegan
1 year agoPearly
1 year agoAndra
1 year agoLavonna
1 year agoElenor
1 year agoDulce
1 year agoCarin
1 year agoMuriel
1 year agoSlyvia
1 year agoKassandra
1 year ago