BookmarkSubscribeRSS Feed
ericliuzh1
Obsidian | Level 7

Hi,

 

My answer is E to the question below but SAS answer key is C.

 

With the system option VALIDVARNAME=ANY, which of the following variable names is valid?

a. 4BirthDate

b. $Cost

c. _Items_

d. Tax-Rate

e. All of the above

 

According to the definition, I believe that a, b, and d are all valid names. Can someone let me know why E is not a correct answer?

 

Thanks.

Eric

4 REPLIES 4
ericliuzh1
Obsidian | Level 7

Thanks, Kurt. It makes sense now!

Rick_SAS
SAS Super FREQ

I can see why you are confused. I suggest you re-read the section of your study guide that deals with VALIDVARNAME and n-literals to see if it makes a distinction between those two concepts. You are correct that all of the variables are valid if you use them as n-literals such as

data _null_;

'4BirthDate'n = 1;
'$Cost'n = 2;
_Items_ = 3;
'Tax-Rate'n = 4;

run;

 

However, C is the only variable name that you can use without embedding the name into an n-literal, as shown.

 

ericliuzh1
Obsidian | Level 7

Thanks for the examples! I got it now!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 4 replies
  • 1355 views
  • 0 likes
  • 3 in conversation