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?
- y = '100'
- y = 100 and a NOTE is written in the SAS log saying that character value has been converted to numeric value
- y = 100 and no NOTE is written in the SAS log
- Program does not execute due to Syntax Errors