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-212 topic 1 question 182 discussion

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

Given the following SAS program:

What will be the output from the PRINT Procedure?

  • A. Option A
  • B. Option B
  • C. Option C
  • D. Option D
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
mhminkov
2 years, 8 months ago
answer is A, incl. warning message in the log: WARNING: Partial value initialization of the array multi. data work.lookup1; array multi [1:2,2] (1,2); do i = 1 to 2; do j = 1 to 2; OutValue = multi[i,j]; output work.lookup1; end; end; run; proc print data=work.lookup1 noobs; var i j OutValue; run;
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 ...