📚 Practice Mode

SAS Programming Fundamentals

Learn at your own pace with hints and detailed explanations

1 / 17
Multiple Choice

data new; x = '1000'; y= x * .10; run; What is the result?

  1. y = '100'
  2. y = 100 and a NOTE is written in the SAS log saying that character value has been converted to numeric value
  3. y = 100 and no NOTE is written in the SAS log
  4. Program does not execute due to Syntax Errors