SAS Programming Fundamentals

Casual Mode - Take your time!

1 / 17
Correct
0
Incorrect
0
Score
0%
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
Change Mode