BookmarkSubscribeRSS Feed
Sudtej
Calcite | Level 5

Hi

The SAS data set TEMP has the following distribution of values for variable A:

 

A Frequency

1 500,000

2 500,000

6 7,000,000

8 3,000

Which one of the following SAS programs requires the least CPU time to be processed?

A. data new; set temp; if a = 8 then b = 'Small '; else if a in(1, 2) then b = 'Medium'; else if a = 6 then b = 'Large'; run;

B. data new; set temp; if a in (1, 2) then b = 'Medium'; else if a = 8 then b = 'Small'; else if a = 6 then b = 'Large'; run;

C. data new; set temp; if a = 6 then b = 'Large '; else if a in (1, 2) then b = 'Medium'; else if a = 8 then b = 'Small';run;

D. data new; set temp; if a = 6 then b = 'Large '; if a in (1, 2) then b = 'Small'; run;

Note: The above question is from Advance sas practice exam which i found online. i would like to know the correct answer and why?

Thank you.

2 REPLIES 2
LinusH
Tourmaline | Level 20

If SAS hits a TRUE, the rest of the if-then-else logic is not executed.

Therefore, one should organize the code, so that the most likely expression to be TRUE, is to be evaluated first.

Data never sleeps
Reeza
Super User

C.

You should order your conditions in the order they occur in the data set, most frequent to less frequent. Also, if conditions are mutually exclusive use the if then is faster than multiple if as in D.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2187 views
  • 0 likes
  • 3 in conversation