Question : 1

 A realtor has two customers. One customer wants to view a list of homes selling for less than $60,000. The other customer wants

 to view a list of homes selling for greater than $100,000.

 Assuming the PRICE variable is numeric, which one of the following PRINT procedure steps will select all desired observations?

  1. proc print data = sasuser.houses;

 where price lt 60000;

 where price gt 100000;

 run;

  1. Get all Questions and Answer from here
  2. You need to have paid subscription to access all questions
  3. Thanks for considering SAS Certification Material

 Ans : 2

 Exp : 'OR' gives either of one condition whereas we need both condition results , so answer is B. 'OR' means either one of d conditions shd b true. In this case both the

 conditions are true, so it will give desired observations. Here if we use 'AND' it will search for the observations in which both the conditions are true at d same time. ie. the

You can access to full explanation to question and answer from this page.