Which assignment statement for variable Group is functionally equivalent to the original statement used in the above data step?

Given the following IF/THEN statement:
If Age NE 16 and Age NE 15 then Group-1;
Which assignment statement for variable Group is functionally equivalent to the original statement used in the above data step?
A. if (Age NE 16) or (Age NE 15) then Group=1;
B. where Age not between (15 and 16) then Group=1;
C. where Age not between 15 and 16 then Group=1;
D. if Age not in(15,16) then Group=1;

Download Printable PDF. VALID exam to help you PASS.

One thought on “Which assignment statement for variable Group is functionally equivalent to the original statement used in the above data step?

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.