Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam A00-211 topic 1 question 28 discussion

Actual exam question from SAS Institute's A00-211
Question #: 28
Topic #: 1
[All A00-211 Questions]

The contents of the raw data file PRODUCT are listed below:
--------10-------20-------30
24613 $25.31
The following SAS program is submitted:
data inventory;
infile 'product';
input idnum 5. @10 price;
run;
Which one of the following is the value of the PRICE variable?

  • A. 25.31
  • B. $25.31
  • C. . (missing numeric value)
  • D. No value is stored as the program fails to execute due to errors.
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
CHENTEPE
8 months, 3 weeks ago
ANSWER SHOULD BE 0.31
upvoted 1 times
...
mhminkov
2 years, 10 months ago
well, not exactly missing numeric, but answer C is close to 0,31, the result I get with the following code: data inventory; infile datalines; input idnum 5. @10 price; datalines; 24613 $25.31 ;
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...