SAS Institute SAS Certified Associate: Programming Fundamentals Using SAS 9.4 A00-215 Question # 13 Topic 2 Discussion

SAS Institute SAS Certified Associate: Programming Fundamentals Using SAS 9.4 A00-215 Question # 13 Topic 2 Discussion

A00-215 Exam Topic 2 Question 13 Discussion:
Question #: 13
Topic #: 2

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

A00-215 Question 13


A.

data bball;

set sashelp.baseball;

where Division and nHits in ('East' and 75+);

run;


B.

data bball;

set sashelp.baseball;

where Division = 'East';

where nHits >= 75;

run;


C.

data bball;

set sashelp.baseball;

where Division - 'East' or nHits >= 75;

run;


D.

data bball;

set sashelp.baseball;

where Division = 'East' and nHits >= 75;

run;


Get Premium A00-215 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.