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 2 question 103 discussion

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

The following SAS program is submitted:
data work.january;
set work.allmonths (keep = product month num_sold cost);
if month = 'Jan' then output work.january;
sales = cost * num_sold;
keep = product sales;
run;
Which variables does the WORK.JANUARY data set contain?

  • A. PRODUCT and SALES only
  • B. PRODUCT, MONTH, NUM_SOLD and COST only
  • C. PRODUCT, SALES, MONTH, NUM_SOLD and COST only
  • D. An incomplete output data set is created due to syntax errors.
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
mhminkov
2 years, 10 months ago
given answer D is correct, as there is a syntax error in the keep statement (must be without = sign).
upvoted 1 times
...
Kleinstone
3 years, 3 months ago
the answer is A?
upvoted 1 times
...
Kleinstone
3 years, 3 months ago
this is a bit confusing.
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 ...