SAS_Institute
A00-211 · Question #25
The following SAS program is submitted: data work.retail; cost = `20000'; total= .10* cost run; What is the result?
The correct answer is C. The value of the variable TOTAL in the output data set is missing. An error message is written to. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
data work.retail; cost = `20000'; total= .10* cost run; What is the result?
Options
- AThe value of the variable TOTAL in the output data set is 2000. No messages are written to the
- BThe value of the variable TOTAL in the output data set is 2000. A note that conversion has taken
- CThe value of the variable TOTAL in the output data set is missing. An error message is written to
- DThe variable TOTAL in the output data set has no value. The program fails to execute due to a
How the community answered
(38 responses)- A13% (5)
- B3% (1)
- C76% (29)
- D8% (3)
Community Discussion
No community discussion yet for this question.